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?

  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

  4. Default

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



  5. #5

    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.

  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. #7

    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.

  8. #8

    Default

    Quote Originally Posted by kionay View Post
    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
    .wat.png

  9. 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

  10. #10

    Default

    Quote Originally Posted by I'm a zambi View Post
    python script runs

    every 15 seconds asks the website you want if the website says there isn't a new anime/manga/fuckall

    if it says anything other than effectively "yeah there's nothin' here" then what you're lookign for is there

    if you want it can text you when that happens to let you know within 15 seconds (though you can remove the sleep() line and it will check something like twice a second if you're not worried about flooding them with requests) that that thing you're looking for is there


    catch is i have it set up for the naruto manga (because that's why i made it for myself)

    so if you need it for something else you can either change the code yourself (not too difficult because only a line or two has anything to do with naruto specifically) or ask me or anyone that knows Python (or by extension any object oriented programming language because python is hella easy to learn if you already know how to code anyway) to change the code in a more drastic way to fit the needs of the particular website you want to use it for (as opposed to narutobase.net for the naruto manga)


    p.s. I've had my script running for several days, it has checked for a new manga ~1,339,400 times since i started it and not errored once (even though i set it to check as quickly as possible which is miraculous the server doesn't mind this)
    but sure enough when it DOES come out i will find out very quickly
    Last edited by kionay; 09-23-2014 at 07:44 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.

Posting Permissions

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