Report ShaggyZE's Profile

Statistics

All Anime Stats Anime Stats
Days: 210.0
Mean Score: 6.70
  • Total Entries3,111
  • Rewatched153
  • Episodes12,631
Anime History Last Anime Updates
Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikaketekita
Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikaketekita
Apr 23, 6:54 PM
Watching 3/? · Scored -
Haite Kudasai, Takamine-san
Haite Kudasai, Takamine-san
Apr 23, 6:33 PM
Watching 4/12 · Scored -
All Manga Stats Manga Stats
Days: 0.5
Mean Score: 6.50
  • Total Entries25
  • Reread3
  • Chapters37
  • Volumes9
Manga History Last Manga Updates
Henshin
Henshin
Jul 7, 2024 1:01 PM
Plan to Read · Scored -
Adachi to Shimamura
Adachi to Shimamura
Jul 15, 2023 6:45 AM
On-Hold 1/? · Scored -
Girl Friends
Girl Friends
Jan 17, 2023 2:36 AM
Plan to Read · Scored -

All Favorites Favorites

Anime (10)
Character (10)
People (10)

All Comments (374) Comments

Would you like to post a comment? Please login or sign up first!
hacker09 Apr 23, 2:07 PM
I won't delete it, it looks really cool!

Nice job!

It's definitely a nice-looking portfolio. I may use/update the code sometime in the future, haha
hacker09 Apr 10, 6:02 PM
thanks
hacker09 Apr 10, 1:47 PM
Do you have a terminal access on your web server or not?

If you do, I would appreciate if you can also enable WebDav

Use a WebDAV-to-FTP bridge like **davfs2**, **WebDAV CGI**, or better: install a server that supports both protocols. Fastest option:

**Option 1: Use Apache with mod_dav + mod_dav_fs**

1. Install Apache:

```bash
sudo apt install apache2
```

2. Enable WebDAV modules:

```bash
sudo a2enmod dav
sudo a2enmod dav_fs
```

3. Create WebDAV folder:

```bash
sudo mkdir /var/www/webdav
sudo chown www-data:www-data /var/www/webdav
```

4. Add config to `/etc/apache2/sites-available/webdav.conf`:

```apache
<VirtualHost *:80>
ServerAdmin you@example.com
DocumentRoot /var/www/webdav
<Directory /var/www/webdav>
DAV On
AuthType Basic
AuthName "webdav"
AuthUserFile /etc/apache2/webdav.passwd
Require valid-user
</Directory>
</VirtualHost>
```

5. Create user:

```bash
sudo htpasswd -c /etc/apache2/webdav.passwd youruser
```

6. Enable site:

```bash
sudo a2ensite webdav.conf
sudo systemctl reload apache2
```

**Optional**: symlink your FTP folder to `/var/www/webdav`.

```bash
sudo ln -s /your/ftp/folder/* /var/www/webdav/
```

Now your FTP files can be accessed via WebDAV.
hacker09 Mar 22, 10:02 PM
Cool, glad that you figured that out!
hacker09 Mar 21, 6:51 PM
Are you actively using the files under the hacker09 folder on your FTP server or not?

Do you still want me to play more around the cronjobs and make a python script that does like a fetch or something that works?
hacker09 Mar 12, 12:55 PM
yh but even without that it is still good
hacker09 Mar 12, 12:32 PM
ok
hacker09 Mar 12, 12:17 PM
I think that this works

function createlargeImage() {
  largeImage = document.createElement('img');
  largeImage.style.position = 'absolute'; // Change from 'fixed' to 'absolute'
  largeImage.style.pointerEvents = 'none'; // Prevent interference with cursor events
  largeImage.style.maxWidth = '75%';
  largeImage.style.maxHeight = '75%';
  largeImage.style.zIndex = '9999';
  largeImage.style.display = 'none';
  document.body.appendChild(largeImage);

  document.addEventListener('mousemove', function (event) {
    if (largeImage.style.display === 'block') {
      largeImage.style.top = event.clientY + window.scrollY + 10 + 'px';
      largeImage.style.left = event.clientX + window.scrollX + 10 + 'px';
    }
  });
}

hacker09 Mar 12, 12:16 PM
It's working for me

Do you want me to post images of it working on that forum topic?

I'll check that.
hacker09 Mar 11, 4:39 PM
hmm
hacker09 Mar 11, 3:05 PM
why don't you make just 1 huge json file with the whole mal db instead of having an API with many endpoints
hacker09 Mar 10, 7:46 PM
nice
If you messed up adding a site that would be it
hacker09 Mar 10, 6:20 PM
sounds good
hacker09 Mar 10, 6:00 PM
it works for me
hacker09 Mar 10, 4:38 PM
Cool!

Glad that I just had to give you the tip/direction. I may actually be the one to ask you how it works in the future haha.

Do you want to give me low admin access to the crown job tab only so I can google some stuff?

Anything else that you need help with?
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login