Please log in. To create a new account, enter the name and password you want to use.
If you supplied an email address when you signed up or added a email later, you can have your password reset.
This user name doesn't exist. If you want to create a new account, just verify your password and log in.
This user name exists. If you want to create a new account, please choose a different name.
Enter the current email address you have registered in your profile. You'll get an email containing your new password.
You have no email address in your profile, so you can't have your password reset.
Password reset. Check your email in a few minutes
That account does not exist.
The email address specified is not registered with this account.
Delivery to this email address has failed.
(quotes around the filename too if it contains spaces)
Personally, I recommend spreading larger batches across several days. It gives people more a chance to look through them; if five pages of the index are the same pool, many people are going to gloss over a lot of them.
petopeto
curl http://moe.imouto.org/post/create.xml -H "Expect:" -F "login=name" -F "password_hash=hash" -F "post[tags]=moo" -F "post[file]=@filename"
Don't forget the @ before the filename.
You can also do -F user[name]=name -F user[password]=password, to avoid having to look up your hash.
Set the rating, too; either add -F post[rating]=e, or the "rating:e" metatag.
You don't type this in for every file; make a script to do it, eg.
@echo off
curl http://moe.imouto.org/post/create.xml -H Expect: -F post[file]=@%1 -F post[tags]=%2 -F user[name]=user -F user[password]=pw
... and then just make a script where you can fill in the tags in advance:
@echo off
call upload.bat file01.jpg "tag1 tag2 rating:3"
call upload.bat file02.jpg "tag1 tag3 rating:3"
call upload.bat file03.jpg "tag1 tag4 rating:3"
(quotes around the filename too if it contains spaces)
Personally, I recommend spreading larger batches across several days. It gives people more a chance to look through them; if five pages of the index are the same pool, many people are going to gloss over a lot of them.