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.


Topics - Kingdaro

Pages: 1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 32
121
Off Topic / WHAT THE forget HEAT GO AWAY
« on: June 27, 2012, 04:50:43 PM »
>screwing around with luacraft
>suddenly get "red flag warning" on phone which means high fire danger
>stuff pants because this has never happened to me before, plus how my dad is in the direct center of the warned area
>go to weather channel
>they show a heat map
>half of the right half of the united states is pink
>pink = triple digits
>"wtf temperature"

in non-greentext form:

it's loving hot

122
Off Topic / more loving reasons to hate humanity.
« on: June 26, 2012, 12:04:45 AM »



124
Off Topic / this is why i loving love rhythm games.
« on: June 19, 2012, 02:59:11 AM »
http://www.youtube.com/watch?v=pOSJ1-pgMNs

the concept of four people utilizing one set of buttons amuses me.

125
Off Topic / this cool thing i just did with my eyes
« on: June 15, 2012, 03:22:33 AM »
my friend told me about it over steam

in a lit area, cover/close/conceal/whatever one eye for around 10 minutes (can be 1 or 2 minutes less I guess). go in a very dark area, and open the covered eye.

light adjustment works it's magic and bam you have a flashlight built into your eye.

126
Off Topic / Difference between RAR and ZIP?
« on: June 13, 2012, 09:33:52 PM »
I'm just, curious of why one would choose one over the other, because as far as I can see the biggest difference is software compatibility. Perhaps you could post your preference of which you like more?

127
Off Topic / This is topic #196,910.
« on: June 13, 2012, 04:19:34 PM »
If i don't take notice to this later, I will forget.

We are nearing our 200,000th topic.

I wonder who will get it  :cookieMonster:

128
Creativity / pretty wiggling wave thing
« on: June 13, 2012, 03:23:46 PM »


makes a pretty colorful moving wave

it's not interactive or anything, i was just bored

dl: https://dl.dropbox.com/u/8005323/lua/love2d/pretty%20wave%20thing.zip

source (because it's not that big anyway):
Code: [Select]
g = love.graphics

w,h = g.getWidth(), g.getHeight()
time = 0
inc = 4

g.setPoint(50,'rough')

function love.update(dt)
local mx,my = love.mouse.getPosition()
time = time + dt
-- g.setBackgroundColor(HSV((time*30)%255,255,180))
end

function love.draw()

for x=0, w, inc do
local y = h/2 + math.sin(x/40 + time*3)*math.sin(time*2)*100
g.setColor(HSV(((x + time*50)/3)%255,255,200))
g.point(x,y)

local y = h/2 + math.sin(x/40 - time*3)*math.sin(time*3)*100
g.setColor(HSV(((x + time*50 + 1)/3)%255,255,200))
g.point(x,y)

local y = h/2 + math.sin(x/40 + time*3)*math.sin((time+1)*2)*200
g.setColor(HSV(((x + time*50 - 2)/3)%255,255,200))
g.point(x,y)

local y = h/2 + math.sin(x/40 - time*3)*math.sin(time/2)*200
g.setColor(HSV(((x + time*50 + 3)/3)%255,255,200))
g.point(x,y)
end

g.print(love.timer.getFPS(),0,0)
end

function HSV(h, s, v)
    if s <= 0 then return v,v,v end
    h, s, v = h/256*6, s/255, v/255
    local c = v*s
    local x = (1-math.abs((h%2)-1))*c
    local m,r,g,b = (v-c), 0,0,0
    if h < 1     then r,g,b = c,x,0
    elseif h < 2 then r,g,b = x,c,0
    elseif h < 3 then r,g,b = 0,c,x
    elseif h < 4 then r,g,b = 0,x,c
    elseif h < 5 then r,g,b = x,0,c
    else              r,g,b = c,0,x
    end return (r+m)*255,(g+m)*255,(b+m)*255
end

129
Off Topic / pretty sure i just stuff my pants
« on: June 04, 2012, 01:16:08 AM »
so i'm like doing stuff with love2d and i look out the window



it's supposed to be a picture of the moon but stuffty quality

the way the clouds are made it look like the sky was being electrified or something

this is weird.

130
Off Topic / rainmeter help?
« on: June 02, 2012, 12:47:44 AM »


this is all I got so far, just a giant aero blur overlay and a clock that's probably badly positioned but i can't figure out where to put it or how to align the text without everything looking stuffty. nor can i figure what's missing and what would make it look less empty.

any suggestions? and i'm looking for just small snippets, not entire desktop makeovers if possible.

131
Off Topic / Post the size of your downloads folder.
« on: May 25, 2012, 09:01:10 PM »
i downloads a bunch of random stuff all the time. builds up.



how much stuff do YOU download?

132
Off Topic / so i'm just eating this fluffy pink mound of sugar
« on: May 23, 2012, 09:21:44 PM »


cotton candy is good stuff mang

discuss cotton candy for like two pages

133
Off Topic / my friend just found an alternate Ctrl+V on accident
« on: May 21, 2012, 03:29:47 PM »
shift + insert

am i the only one who hasn't known about this?

134
Off Topic / Blind Browser - Block forum usernames and avatars!
« on: May 20, 2012, 08:58:43 PM »
so mulch sent me a request for an interesting browsing experience. he hypothesized that without knowing who you're talking to, you won't treat them as unequally as other forum users.

Download: http://dl.dropbox.com/u/8005323/webs/js/blind%20browser.user.js
Source: http://dl.dropbox.com/u/8005323/webs/js/blind%20browser.js

for firefox, you need the tampermonkey extension.

for chrome, you can just install it natively.

for everything else, good luck with that.

135
Off Topic / the forget i think i'm high on oxygen
« on: May 20, 2012, 11:26:17 AM »
okay so you remember that time perception topic i made a while ago

you probably don't but it's happening to me right now, except in a more forgeted up way

the music i'm listening to is 128 bpm, but it sounds much faster, especially when i've just woken up

when i acknowledge the fact that it's too fast, it slows down

!????

Pages: 1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 32