Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 418 419 [420] 421 422 ... 13326

Author Topic: [MILK] There were 12 eggs here what did you do with them? (Happy thread?!)  (Read 15882064 times)

Akigagak

  • Bay Watcher
  • Omnipimping
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6285 on: March 03, 2010, 08:19:14 pm »

"This is a Boxbot. It menaces with spikes of terrible."
Logged
But then, life was also easier when I was running around here pretending to be a man, so I guess I should just "man up" and get back to work.
This is mz poetrz, it is mz puyyle.

Acanthus117

  • Bay Watcher
  • Angry Writer
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6286 on: March 03, 2010, 08:20:34 pm »

ahahaha I wanna mod them in just so i can see that. :D
Logged
Is apparently a Lizardman. ಠ_ಠ
YOU DOUBLE PENIS
"The pessimist is either always right or pleasantly surprised; he cherishes that which is good because he knows it cannot last."

cowofdoom78963

  • Bay Watcher
  • check
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6287 on: March 03, 2010, 08:20:55 pm »

Shnat in the world is boxbot?
Logged

JoshuaFH

  • Bay Watcher
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6288 on: March 03, 2010, 09:26:45 pm »

I've finished writing up pretty much all of the basic ideas of my newest game idea, took me quite a few hours of my free time. About it though, I still need to add to the fine details for the idea to come full circle. Take a look:

http://www.bay12games.com/forum/index.php?topic=50467.msg1064693#new
Logged

Gunner-Chan

  • Bay Watcher
  • << IT'S TIME >>
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6289 on: March 03, 2010, 11:03:36 pm »

Turns out there IS internet here.
Logged
Diamonds are combustable, because they are made of Carbon.

Jackrabbit

  • Bay Watcher
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6290 on: March 03, 2010, 11:08:59 pm »

Heeeeello!
Logged

Tack

  • Bay Watcher
  • Giving nothing to a community who gave me so much.
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6291 on: March 03, 2010, 11:14:19 pm »

Yo 'wassup?
Logged
Sentience, Endurance, and Thumbs: The Trifector of a Superpredator.
Yeah, he's a banned spammer. Normally we'd delete this thread too, but people were having too much fun with it by the time we got here.

Itnetlolor

  • Bay Watcher
    • View Profile
    • Steam ID
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6292 on: March 03, 2010, 11:16:33 pm »

'Nother update to Bloodfist.

Looks like I might finish Deck III by the end of next season (end of year). Yay!

Add to it, all tantrums are gone finally, and according to Dwarf Therapist, I'm in the yellow--green again mood-wise.
« Last Edit: March 03, 2010, 11:18:25 pm by Itnetlolor »
Logged

Cheddarius

  • Bay Watcher
  • Hrm.
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6293 on: March 03, 2010, 11:17:47 pm »

It's "Hellooooooooooo!" while flailing your useless and equally terrible arms around.
Logged

Solifuge

  • Bay Watcher
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6294 on: March 03, 2010, 11:18:05 pm »

I've been without internet at home, having just moved to a new apartment. Today, my brother stopped by, and in a matter of minutes managed to hack 3 of my neighbors WPA-Secured wireless networks, and gave me their passwords. It feels good to be online again!

Also, I need to make a mental note to never Ever get on his bad side.
Logged

Eduren

  • Bay Watcher
  • A new theme!
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6295 on: March 03, 2010, 11:20:05 pm »

My ceramics class ends in a week. I'm so glad that I got enough of my projects into the kiln to get a good grade.
Logged
I don't know.  Duke wants me to stop playing mafia.
That's the sign of an abusive boyfriend, Toony... you don't have to listen to him.

qwertyuiopas

  • Bay Watcher
  • Photoshop is for elves who cannot use MSPaint.
    • View Profile
    • uristqwerty.ca, my current (barren) site.
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6296 on: March 04, 2010, 12:21:04 am »

Happy: Successfully created a few preprocessor macros that turn registry edits into a more friendly loking script-like thing.
Code: [Select]
    REG_DEL_OPEN(CR,"test",t);
      REG_DEL_OPEN(t,"test",t2);
        REG_DEL_KEY(t2,"test");
      REG_DEL_CLOSE(t,"test",t2);
    REG_DEL_CLOSE(CR,"test",t);
What you don't see is the error handling, the variables, and the unnessecary parameters to the windows functions.

And, unlike some nice delete all including subkeys system, it is intended for when it should only delete it's own keys, and only if there are no user-created sub-keys present.

Compare to
Code: [Select]
    HKEY hkey;
    if(RegCreateKeyEx(HKEY_CLASSES_ROOT,"something",0,NULL,REG_OPTION_NON_VOLATILE,KEY_ALL_ACCESS,NULL,&hkey,NULL))
      outputError("Failure to open something to delete subkeys.");
    else
    {
        RegDeleteKey(hkey,"something else");
        RegCloseKey(hkey);
    }
    RegDeleteKey(HKEY_CLASSES_ROOT,"something");
(With more code as it isn't always deleting off a main key, so has to work with two HKEYs, plus the fact that the registry is a generally recursive structure meaning each layer must use a diffrent var name... And the "simple" way(the macros) is recursing an extra layer and yet is easier to read and work with, depending on whitespace...)
Logged
Eh?
Eh!

Acanthus117

  • Bay Watcher
  • Angry Writer
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6297 on: March 04, 2010, 12:28:11 am »

I ate a hueg bacon-mushroom-Monterrey Jack cheese-mozzarella cheese-omelet. I'm stuffed
Logged
Is apparently a Lizardman. ಠ_ಠ
YOU DOUBLE PENIS
"The pessimist is either always right or pleasantly surprised; he cherishes that which is good because he knows it cannot last."

Solifuge

  • Bay Watcher
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6298 on: March 04, 2010, 01:07:13 am »

Heh... just got an email; Jaz from PC Gamer UK wants to put Stonesense in the Coverdisk for next month. I am entirely too stoked.

Woot!
Logged

Jackrabbit

  • Bay Watcher
    • View Profile
Re: Things that made you HAPPY today thread. Mew! :3
« Reply #6299 on: March 04, 2010, 01:10:27 am »

Holy shit that's awesome.

Also, Tom Francis, is it PC Gamer he writes for? He's pretty cool.

EDIT: I... my god. I just beat Jedi Knight II. 8 years after I bought it.

This is an emotional moment for me.
« Last Edit: March 04, 2010, 04:27:30 am by Jackrabbit »
Logged
Pages: 1 ... 418 419 [420] 421 422 ... 13326