| View previous topic :: View next topic | 
	
	
		| Author | Message | 
	
		| AJHunter Probably Naked
 
 
 
  
 Joined: 04 Dec 2009
 Posts: 131
 Location: Usually bed
 
 | 
			
				|  Posted: Tue Jan 26, 2010 7:42 am    Post subject: Cool Unrelated Code |   |  
				| 
 |  
				| Got cool code? put it here for everyone to use! If ti can be used as a signature here, you get a cookie! 
 This was my signature's code. I find it pretty cool:
 
 
 <br>
 Play More Games
 
 
  	  | Code: |  	  | <embed src="http://andrewgarrison.s3.amazonaws.com/ultimategoat.swf" type="application/x-shockwave-flash" allowFullscreen="true" width="450" height="300"> </embed>
 <br>
 <a href="http://andrewgarrison.com" target="_blank" title="Play Games">Play More Games</a>
 
 | 
 _________________
 *snap*
 *wink*
 *finger-guns*
 
 Last edited by AJHunter on Sat Feb 13, 2010 12:30 am; edited 1 time in total
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| AJHunter Probably Naked
 
 
 
  
 Joined: 04 Dec 2009
 Posts: 131
 Location: Usually bed
 
 | 
			
				|  Posted: Tue Jan 26, 2010 7:57 am    Post subject: |   |  
				| 
 |  
				| And, on the subject of code... What's wrong with this equation? I can't figure it out! _________________
 *snap*
 *wink*
 *finger-guns*
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Moogle1 Scourge of the Seas
 Halloween 2006 Creativity Winner
 
  
 
  
 Joined: 15 Jul 2004
 Posts: 3377
 Location: Seattle, WA
 
 | 
			
				|  Posted: Tue Jan 26, 2010 8:07 am    Post subject: Re: Cool Unrelated Code |   |  
				| 
 |  
				|  	  | AJHunter wrote: |  	  | Got cool code? put it here for everyone to use! If ti can be used as a signature here, you get a cookie! 
 This is my signature's code. I find it pretty cool:
 
  	  | Code: |  	  | <embed src="http://andrewgarrison.s3.amazonaws.com/ultimategoat.swf" type="application/x-shockwave-flash" allowFullscreen="true" width="450" height="300"> </embed>
 <br>
 <a href="http://andrewgarrison.com" target="_blank" title="Play Games">Play More Games</a>
 
 | 
 | 
 
 That is a horrible signature. It is longer than most of your actual posts.
 _________________
 
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| AJHunter Probably Naked
 
 
 
  
 Joined: 04 Dec 2009
 Posts: 131
 Location: Usually bed
 
 | 
			
				|  Posted: Tue Jan 26, 2010 8:09 am    Post subject: Re: Cool Unrelated Code |   |  
				| 
 |  
				|  	  | Moogle1 wrote: |  	  |  	  | AJHunter wrote: |  	  | Got cool code? put it here for everyone to use! If ti can be used as a signature here, you get a cookie! 
 This is my signature's code. I find it pretty cool:
 
  	  | Code: |  	  | <embed src="http://andrewgarrison.s3.amazonaws.com/ultimategoat.swf" type="application/x-shockwave-flash" allowFullscreen="true" width="450" height="300"> </embed>
 <br>
 <a href="http://andrewgarrison.com" target="_blank" title="Play Games">Play More Games</a>
 
 | 
 | 
 
 That is a horrible signature. It is longer than most of your actual posts.
 | 
 So? I happen to like it!
       ALSO: no criticizing if you don't post code!
 _________________
 *snap*
 *wink*
 *finger-guns*
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Bob the Hamster OHRRPGCE Developer
 
 
 
  
 Joined: 22 Feb 2003
 Posts: 2526
 Location: Hamster Republic (Southern California Enclave)
 
 | 
			
				|  Posted: Tue Jan 26, 2010 8:48 am    Post subject: |   |  
				| 
 |  
				| I dislike signatures. They clutter up the thread and make it harder to read the content. I always disable them in my forum profile. 
 
  	  | AJHunter wrote: |  	  | ALSO: no criticizing if you don't post code!
 
 | 
 
 This python script takes the sum of the digits of all the numbers in a given range and prints a chart of their distribution. It is intended to demonstrate to numerologists how digit summing produces a highly non-uniform distribution of numbers that can create the illusion of a high occurrence of strange coincidences in number digit sums.
 
 
  	  | Code: |  	  | low = 1
 high = 999
 seek = 11
 
 sumtable = {}
 for i in xrange(low, high):
 s = "%03d" % i
 n0 = eval(s[0])
 n1 = eval(s[1])
 n2 = eval(s[2])
 digitsum = n0 + n1 + n2
 if not sumtable.has_key(digitsum): sumtable[digitsum] = 0
 sumtable[digitsum] += 1
 if digitsum == seek:
 print "%s ... %d+%d+%d = %d" % (s, n0, n1, n2, digitsum)
 print "Sum of digits of numbers between %d and %d" % (low, high)
 for key in sumtable:
 print key, '*' * sumtable[key]
 
 | 
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Shadowiii It's been real.
 
 
 
  
 Joined: 14 Feb 2003
 Posts: 2460
 
 
 | 
			
				|  Posted: Tue Jan 26, 2010 8:48 am    Post subject: |   |  
				| 
 |  
				| Your signature is huge and annoying. Why not make it be just in this post, rather then tailing every post you make? It seriously clogs up the boards. _________________
 But enough talk, have at you!
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| AJHunter Probably Naked
 
 
 
  
 Joined: 04 Dec 2009
 Posts: 131
 Location: Usually bed
 
 | 
			
				|  Posted: Tue Jan 26, 2010 9:52 am    Post subject: |   |  
				| 
 |  
				|  	  | Shadowiii wrote: |  	  | Your signature is huge and annoying. Why not make it be just in this post, rather then tailing every post you make? It seriously clogs up the boards. | 
 RULE BREAKER!
 Oh, btw, thanks  for the idea for my new sig.
  _________________
 *snap*
 *wink*
 *finger-guns*
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Spoonweaver 
 
 
 
 Joined: 18 Nov 2008
 Posts: 36
 Location: Sunny Florida
 
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Moogle1 Scourge of the Seas
 Halloween 2006 Creativity Winner
 
  
 
  
 Joined: 15 Jul 2004
 Posts: 3377
 Location: Seattle, WA
 
 | 
			
				|  Posted: Tue Jan 26, 2010 2:20 pm    Post subject: |   |  
				| 
 |  
				| Did you change your signature or did someone change it for you? Because if it was someone else, I want to know, so that person can become my hero. _________________
 
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Spoonweaver 
 
 
 
 Joined: 18 Nov 2008
 Posts: 36
 Location: Sunny Florida
 
 | 
			
				|  Posted: Tue Jan 26, 2010 3:48 pm    Post subject: |   |  
				| 
 |  
				|  	  | Moogle1 wrote: |  	  | Did you change your signature or did someone change it for you? Because if it was someone else, I want to know, so that person can become my hero. | 
 
 ANSWER:
 
 
  	  | AJHunter wrote: |  	  |  	  | Shadowiii wrote: |  	  | Your signature is huge and annoying. Why not make it be just in this post, rather then tailing every post you make? It seriously clogs up the boards. | 
 RULE BREAKER!
 Oh, btw, thanks  for the idea for my new sig.
  | 
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Blue Pixel SPY SAPPIN MAH FISH SANDWICH
 
 
 
  
 Joined: 22 Apr 2005
 Posts: 621
 
 
 | 
			
				|  Posted: Tue Jan 26, 2010 4:15 pm    Post subject: |   |  
				| 
 |  
				|  _________________
 
  |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| Baconlabs PURPLE IS MANLY
 
 
 
  
 Joined: 15 Mar 2009
 Posts: 335
 Location: Tennessee
 
 | 
			
				|  Posted: Tue Jan 26, 2010 8:04 pm    Post subject: |   |  
				| 
 |  
				|  	  | Shadowiii wrote: |  	  | Your signature is huge and annoying. | 
 Hah! I disabled signatures 7 or so years ago.
 I first noticed how useless they were when I was a dA junkie.
 
 In retribution, I made a linked signature that trolled anyone dumb e--
 
  	  | the_dude257 wrote: |  	  |  | 
 EAGH, JERRY! WHAT HAS SCIENCE DONE
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		|  |