• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Recent content by Hohoo

  1. H

    What OS do you use?

    Ubuntu.
  2. H

    Fizzbuzz

    11-line Python version: if __name__ == "__main__": for i in range(1, 101): s = "" if not i % 3: s += "fizz" if not i % 5: s += "buzz" if s is not "": print(s.capitalize()) else: print(i)
  3. H

    Fizzbuzz

    I didn't. I made it this way: Start with an empty string If i is a multiple of 3, add "fizz" If i is a multiple of 5, add "buzz" In other words: if i is a multiple of both numbers, the string will also have both "fizz" and "buzz" in it.
  4. H

    Search your member number on Google Images!

    I like it.
  5. H

    Fizzbuzz

    23 lines in Vala. public static int main (string[] args) { string re; for (int i = 1; i < 101; i++) { re = ""; if (i % 3 == 0) { re += "fizz"; } if (i % 5 == 0) { re += "buzz"; } if...
  6. H

    Software that's like a customized Magic 8-Ball?

    I made one too. This thing works nicely in a browser. Also the first time I have written Javascript that actually works.
  7. H

    What Mobile Phone Do You Use ?

    Take all those iPhoney-praising posts, replace that with Nokia N900 and you'll know what I think about mine.
  8. H

    The (Un)official Pokemon GB/C Hacking Support Thread

    So true, so true. I'm working (or at least trying to work) on a map editor. I'm going to call it Teru-Sama. But because I don't speak Delphi, looking at GoldMap's source is useless for me. So does anyone know a document about the map format?
  9. H

    When you hack, what do you do first?

    I'm working on two projects, Pineapple and an unnamed one. I always start with maps. For Píneapple I design the region as I map. For the other one, I took a map of Johto from vgmaps.com, cut it in pieces, rearranged them until it started to look nice and then sticked with it. Then I paste my...
  10. H

    The (Un)official Pokemon GB/C Hacking Support Thread

    I support this thread! I've recently started to learn hex editing... Just changing some random bytes around. My only true "discovery" so far is that changing 0x466 (in Yellow) from 28 ('G') into something else like 52 ('R') disables random battles in tall grass.
  11. H

    Map Rating/Review Thread

    Game: Gold Hack name: Pineapple Map name: A beach
  12. H

    2nd Gen Memories thread

    Spring 2002: Not knowing how to save and thinking I got stuck in Elm's lab I think there was no space between time and phone cards the first time I played it Trying to get to the lake behind Cherrygrove Talking to the strange tree near Violet I think the second Slowpoke in Slowpoke Well was blue...
  13. H

    First shiny u ever saw?

    Gyarados A Tentacool in Sapphire. I caught it on the route to east from Pacifidlog.
  14. H

    [ARCHIVE] Simple Questions (SEARCH BEFORE ASKING A QUESTION)

    Reposting this. Seriously! Does anybody know about GSC's map format?
  15. H

    Something amazing (possibly) I found in my Fire Red ROM

    Some compilers (such as GCC) write this kind of "useless" stuff into the binary. I can tell lots of things about the original author just at opening it in a hex editor. Well, not really. But now I know that it happens with GBA games too.
Back
Top