Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ralphdspam

Pages: 1 ... 10 11 [12] 13 14 ... 63
166
Humour and Jokes / Re: Weird/funny pictures thread
« on: October 12, 2011, 01:10:11 am »
INFINITE POWER
Reminds me of the people on Youtube trying to build perpetual motion machines.  :P

167
Official Contest / Re: [BULLETIN] Cage Matches
« on: October 12, 2011, 01:07:23 am »
Holy semi-necro-batman!

The cage matches sound fun.  :)
Well, at least for me, the cage matches were all about making little quick programs, so they should fit in well during off-times when a normal competition wouldn't do well due to lack of time.
I don't have enough time to complete large contest entries, but I like the idea of smaller competitions.

168
Yeah it seems like that now. What about 500? It might be best maybe. Plus 1K wouldn't solve the issue anyway since the threads are still cluttering the new posts section :P
I think I can get to 1K in about a month if I try.  :P

169
Miscellaneous / Re: How much English words do you know?
« on: October 12, 2011, 12:54:56 am »
Wow!  It says I know 19,100 words.  I had no idea I knew so many words!
I guess it's not too bad for a native speaker.  :)

EDIT: Lol.  It's actually behind the average for my age.  :P

170
Was marked so people under 1k posts can't see it already.
Wait, so only members with 1K posts can access spam now?

171
News / Re: Members organizes ritual for DJ_O's postcount of 30000
« on: October 12, 2011, 12:43:44 am »
Congratulations, DJ.  :)

Wait... No more spam?  To 1000 I shall go!

172
Miscellaneous / Re: !!! IMPORTANT !!! HELP !!!!!!
« on: October 11, 2011, 09:26:26 pm »
Lol.  I laughed at first because I though it was a bot.  :P

It's good that it's all sorted out now; it would be terrible if his account was really hacked. 

173
Miscellaneous / Re: Smosh vids
« on: October 11, 2011, 09:03:12 pm »
Yeah, their videos are great.  I like how their bits always have unexpected outcomes. 
It's really funny when they break the fourth wall.  :P

174
ASM / Re: Streamlined Asm routines
« on: October 11, 2011, 08:59:02 pm »
So if you want to delay for approximately 'a' seconds you can try this:
Code: [Select]
     ld b,107
     halt
     djnz $-1
     dec a
     jr nz,$-6
     ret
Does this help?
Remember to have interrupts enabled.  ;)

175
Miscellaneous / Re: The Leader Who Created Apple...
« on: October 11, 2011, 08:26:17 pm »
@Ralph I think it's mostly about the fact that once they die, people subconsciously realize that the person was actually human.
That's very true.  I think it's sad that people don't recognize these great people while they are alive.  :(

I saw this, and thought of you, Omnimaga.
Steve Jobs's Death In a Newspaper Article - Imgur
Here's a text link: http://www.dnaindia.com/analysis/column_comment-steve-jobs-wasnt-great-he-wasnt-even-close_1596888
While it's true that Jobs didn't save the world from destruction, he has been an inspiration to many. 

176
ASM / Re: Streamlined Asm routines
« on: October 11, 2011, 08:15:28 pm »
Can I use a for this, rather than hl?
Code: [Select]
;a = milliseconds of delay
milliDelay:
ld b, 174 ;7 <-Increase this for larger delay increments.
innerLoop:
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
djnz innerLoop   ;13*173+8 ;2257

dec a ;4
nop
nop ;Left here to keep similar timing.
jr nz, milliDelay ;13
ret ;15,515

Or you can use A as the high byte of HL
Code: [Select]
;a = high byte of milliseconds of delay
ld l, 0 ;7
ld h, a ;4
milliDelay:
ld b, 174 ;7
innerLoop:
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
ex (sp), hl    ;19*174 ;3306
djnz innerLoop   ;13*173+8 ;2257

dec hl ;6
ld a, h ;4
or l ;4
jr nz, milliDelay ;13
ret ;15,515

177
Wow!  It looks awesome!  Now you can draw a flower in color.  8)

178
News / Re: Webchat now available in the navigation bar
« on: October 10, 2011, 11:42:15 pm »
Yay!  It's great to have an alternative.  Unfortunately, there aren't as many people using it, sot it's much quieter.  :\

EDIT: Hey, this post is in the right topic now.  :P

179
Humour and Jokes / Re: Lobster Origins
« on: October 10, 2011, 11:34:17 pm »
On an unrelated note nice to see you around again. :D
agreed
Holy Necropost Batman?

180
KnightOS / Re: KnightOS - A 3rd Party Operating System
« on: October 10, 2011, 09:04:36 pm »
Welcome back.  I'm looking forward to seeing updates to Knight OS.  :)

Pages: 1 ... 10 11 [12] 13 14 ... 63