I started watching japan animation around 2000, mainly from Blockbuster and mostly Studio Ghibli; due to the animation and stories in JRPG's like Final Fantasy, Chrono Trigger, Tales of Series and Silent Hill. Now I enjoy Interactive film games kinda like Life is Strange, Last of Us and Quantic Dream's games.
When peer to peer and torrenting became available the amount of Movies, TV Series and Anime I would watch increased greatly, as well as the amount of games I would download and systems I would mod, but I did not start watching anime regularly until I watched SAO in the beginning of 2016 which caused me to become obsessed with isekai.
Subsequently I started watching seasonal's later that year.
Most of my plan to watch is for my custom lists like Isekai and I have no intention of ever watching most of them.
I hardly drop anything because I know what I'll love, tolerate, and hate, so I choose not to start an anime I know I'll hate and if I do get bored with it, I put it on hold or in drop candidates until I'm in the right mood to watch it or if it turns out I can't even make it through 1-2 episodes then I usually delete it from my list as it's not even worth mentioning, but lately I've been trying to change that.
"People are stupid; given proper motivation, almost anyone will believe almost anything. Because people are stupid, they will believe a lie because they want to believe it's true, or because they are afraid it might be true. People's heads are full of knowledge, facts, and beliefs, and most of it is false, yet they think it all true. People are stupid; they can only rarely tell the difference between a lie and the truth."
All Comments (374) Comments
Nice job!
It's definitely a nice-looking portfolio. I may use/update the code sometime in the future, haha
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.
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?
Do you want me to post images of it working on that forum topic?
I'll check that.
If you messed up adding a site that would be it
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?