View Poll Results: What are you eagerly awaiting?

Voters
10. You may not vote on this poll
  • Forum thread post (like mafia wars)

    3 30.00%
  • Manga/comic release

    5 50.00%
  • Anime/other video series release

    5 50.00%
  • someone's blog post

    0 0%
  • social network feed

    0 0%
  • other (mentioned in comments)

    2 20.00%
Multiple Choice Poll.
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 17

Thread: What are you waiting for?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default What are you waiting for?

    No, really, what do you find yourself waiting for?

    A new chapter of a manga? A new episode of your favorite anime? which ones?

    how much time do you spend thinking "fucking come ON already" while pounding your already worn down f5 key?




    if there's many people waiting on the same thing i may be able to help
    A programming genius called HEAP
    Had trouble in getting to sleep
    So he made his lambs troup
    through a huge FOR-NEXT loop
    FOR 1 TO 10000: NEXT sheep.

  2. Default

    What?

  3. #3

    Default

    Quote Originally Posted by SCRIBBLE View Post
    What?
    I'm sure What is flattered you think of him so.
    A programming genius called HEAP
    Had trouble in getting to sleep
    So he made his lambs troup
    through a huge FOR-NEXT loop
    FOR 1 TO 10000: NEXT sheep.

  4. #4

  5. Default

    Waiting for you to get the fuck in my mafia game.



  6. Default

    For you to stfu with tard shit! <3

    For Bleach to get right after quite a few years? GoT DAMN tRolls!!!!
    Make all your last demands for I will forsake you and I'll meet your eyes for the very first time, for the very last.

    maynard <ibis>: they are awkward and last 2 damn long. I prefer thinner smaller ones

  7. Default

    Quote Originally Posted by Steamer View Post
    For you to stfu with tard shit! <3

    For Bleach to get right after quite a few years? GoT DAMN tRolls!!!!
    Calm down Steamer, we don't need another Nemesis on here

  8. Default

    Quote Originally Posted by Steamer View Post
    For you to stfu with tard shit! <3

    For Bleach to get right after quite a few years? GoT DAMN tRolls!!!!
    Bleach has turned into a pile of horse shit.

  9. #9

    Default

    Quote Originally Posted by Rambo :D View Post
    Bleach has turned into a pile of horse shit.
    i didn't start reading until there were ~450 chapters already, it was really fun reading one after another

    but lately it's having aging manga symptoms, they try new things to try to keep it alive and it seems to get more and more silly (we have fucking zombies now?)


    anyway to make it work for Bleach:
    in the python replace "nartuobase.net/manga/Naruto/" with "mangapanda.com/bleach/" and "There is no selected chapter!" with "is not released yet" (there should be only 1 of each, just Ctrl+F find it if you need to)



    well it worked (sorta) accidentally left out a set of parenthesis after 'lower' so it didn't text me when the page changed, but it did stop and notify me on the computer it was running on XD
    Last edited by kionay; 10-01-2014 at 11:18 AM.
    A programming genius called HEAP
    Had trouble in getting to sleep
    So he made his lambs troup
    through a huge FOR-NEXT loop
    FOR 1 TO 10000: NEXT sheep.

  10. #10

    Default

    Alright well for those of you looking for an automated solution you can go get Python 3 or later and use my script here

    it's setup for narutobase.net but it would be pretty easy to adapt it to any given site (so long as you don't have to log in, that required https authentication and is more than a simple code change)

    to use this you'll need to have a URL that you can go to before and after the anime/manga/what_have_you is published
    for example, www.narutobase.net/manga/naruto/900 won't 404 because they have their own little 404 page, and the URL doesn't change when the 900'th chapter would be published, only the HTML changes

    this python just reads the HTML, checks if a string of characters is on the page, and stops when it's found (optionally texting you)

    if you want to use this for something else other than the naruto manga, on any other site, you'll need to:

    remove line 42

    line 81: contains the URL of the page that is checked for the key phrase (or snippet of code, like if when your anime is published the change is an embedded video being added to the page) and should be changed to
    Code:
    MyHttp = urlopen("http://www.whatever.com/sweetDamn").read()
    line 84: contains the actual phrase that you're looking for to not be there anymore (for example, when the words 'this episode hasn't aired yet' aren't there, then that means it is there and you should be notified)
    lines 85 and 87... and any print() line that contains the word 'manga' can be changed, it's all just information, you can have it say 'fuck me silly' if nothing is found each time, doesn't matter

    the script will currently error on 404, but since some sites don't have their own little 404 pages then this won't work on those, but if anyone needs something like that (check when the URL doesn't 404) then i can change the code around pretty quick, tho if this goes utterly unused then w/e too

    also it errors on 401 403 and 503 errors for when the site is down, when you need to login, and when you're not allowed to visit that site

    what else... uhh... sometimes if your site times out it will error, i have it set to text you when that occurs, but no more than 5 times, and if you don't have internet then it should wait 1 hour and restart

    if your carrier isn't i the dictionary at the top feel free to add it if you can find your carrier's e-mail, just make sure it's in the same format as the ones in there already

    ...uhhh oh currently it only supports texting with a gmail account, but if you really wanna use another provider then change line 20 to be @whatever.com
    and line 23 to be that provider's smtp server and/or port, but i've only used this with my gmail account :P

    if anyone has any questions, needs it customized for a particular website and that site's little... idk nuances? feel free to ask

    i keep this running 24/7 on my computer at work and i get notified of the chapter's upload before it is posted on the site's front page
    Last edited by kionay; 09-22-2014 at 09:01 AM. Reason: accidentally a word
    A programming genius called HEAP
    Had trouble in getting to sleep
    So he made his lambs troup
    through a huge FOR-NEXT loop
    FOR 1 TO 10000: NEXT sheep.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •