Page 80 of 246

Re: « What's on your mind? »

Posted: 22 Jul 2014, 03:18
by joedf
@tidbit Thanks! :D Im first at second :D Hurray :)
@TLM DAT sound effect! lawl lol.... lola... ;)

Re: « What's on your mind? »

Posted: 22 Jul 2014, 06:00
by nnnik
tidbit wrote:1 more for each:
Image

I bet joedf will steal them :D
Whoever does, better be a worthy post.
1 more for offtopic and 2 more for German.
Got the 2nd one

Re: « What's on your mind? »

Posted: 22 Jul 2014, 10:50
by joedf
Cool :D

Re: « What's on your mind? »

Posted: 22 Jul 2014, 11:20
by fischgeek
Sunflower seeds will be my demise.

Re: « What's on your mind? »

Posted: 22 Jul 2014, 11:26
by joedf
2^7 = 0b10000000 = 0x80 = fischgeek's post count :D

Re: « What's on your mind? »

Posted: 22 Jul 2014, 11:28
by fischgeek
What? My .com post count doesn't apply? Looks like I have some catching up to do.

Re: « What's on your mind? »

Posted: 22 Jul 2014, 12:06
by tidbit
this stuff annoys me:
Image

Re: « What's on your mind? »

Posted: 22 Jul 2014, 12:11
by joedf
Loooooooooooooooooooooooooo...2 thousand years later...oooooooool

Re: « What's on your mind? »

Posted: 22 Jul 2014, 12:23
by kon
[attachment=0]Untitled - Copy (2).png[/attachment]heh

Re: « What's on your mind? »

Posted: 22 Jul 2014, 12:25
by joedf
A hahahah nice catch kon! :D haha

Re: « What's on your mind? »

Posted: 22 Jul 2014, 13:31
by fischgeek
I don't want to go back to working on what I'm supposed to be working on.

Ever have those days? You just hit a wall and really don't want to work on it anymore.

Re: « What's on your mind? »

Posted: 22 Jul 2014, 14:13
by joedf
Yep

Re: « What's on your mind? »

Posted: 22 Jul 2014, 14:36
by nnnik
fischgeek wrote:I don't want to go back to working on what I'm supposed to be working on.

Ever have those days? You just hit a wall and really don't want to work on it anymore.
I have like 30 unfinished Projects started but left unfinished due to that. :D
BTW: I am bored... Nothing happens.
i seriously have something to do... 30 Friends call, New Messages and new posts here. :C

Re: « What's on your mind? »

Posted: 22 Jul 2014, 14:53
by fischgeek
lol. Trouble is, I'm getting paid to do what I'm supposed to be doing.

Re: « What's on your mind? »

Posted: 22 Jul 2014, 15:08
by joedf
Oh boy... Do it, or Death is imminent! :o

Re: « What's on your mind? »

Posted: 22 Jul 2014, 17:05
by nnnik
Lately I've more been like...
Hmm I should look into that code again maybe its going to help...
Hmm I dont remember properly
Hmm
Image

Re: « What's on your mind? »

Posted: 22 Jul 2014, 18:34
by fischgeek
lol!

Re: « What's on your mind? »

Posted: 22 Jul 2014, 20:32
by joedf
Hahaha
Nice pic :D

Re: « What's on your mind? »

Posted: 23 Jul 2014, 09:01
by fischgeek
Banana code from http://www.autohotkey.com/board/topic/5 ... lliterate/

Code: Select all

rangelist := RGBRange(0x008000, 0xFFFF00, -20, "|")
StringSplit, range_, rangelist , |
delay := 50
Gui -Caption +ToolWindow
Gui, Add, Text, x0 y0 w100 h200 GuiMove,
Gui +LastFound
WinSet, Region , 100-0 40-50 20-100 40-150 100-200 70-125 70-75 100-0
Gui, Show, w100 h200
loop
{
	loop, %range_0%
	{
		color := range_%A_Index%
		Gui, color, %color% 
		sleep, %delay%
	}
	sleep, % delay * 10
	loop, %range_0%
	{
		B_Index := range_0 - A_Index + 1 
		color := range_%B_Index%
		Gui, color, %color% 
		sleep, %delay%
	}
}
uiMove:
PostMessage, 0xA1, 2,,, A
if (color = 0xFFFF00)
{
	ripe ++
	banana := ripe<2 ? "Banana" : "Bananas"
	MsgBox, You got %ripe% ripe %banana%
}
Return
RGBRange(x, y=0, c=0, delim=",")
{
   oif := A_FormatInteger
   SetFormat, Integer, H
   dr:=(y>>16&255)-(r:=x>>16&255)
   dg:=(y>>8&255)-(g:=x>>8&255)
   db:=(y&255)-(b:=x&255)
   d := sqrt(dr**2 + dg**2 + db**2)
   v := Floor(d/c)
   IfLessOrEqual, c, 0, SetEnv, c, % d/( v := c<-3 ? -1-Ceil(c) : 2 )
   s := c/d
   cr:=sqrt(d**2-dg**2-db**2)*s
   cg:=sqrt(d**2-dr**2-db**2)*s
   cb:=sqrt(d**2-dg**2-dr**2)*s
   Loop %v%
   {
      u := SubStr("000000" SubStr( ""
      . ((Round(r+cr*A_Index)&255)<<16)
      | ((Round(g+cg*A_Index)&255)<<8)
      | (Round(b+cb*A_Index)&255), 3)   ,-5)
      StringUpper, u, u
      x .= delim "0x" u
   }
   SetFormat, Integer, %oif%
   return x
}
I still laugh every time I see this.

Re: « What's on your mind? »

Posted: 23 Jul 2014, 21:06
by joedf
lol nice