Voxar

Login
Jul 03
Permalink
I found this “small” game yesterday. It’s like a low res, old school, vast open 3D world of blocky cooperative creativity. Hopefully it will evolve into something playable someday, but for now; login and dig, explore and create.
I found this “small” game yesterday. It’s like a low res, old school, vast open 3D world of blocky cooperative creativity. Hopefully it will evolve into something playable someday, but for now; login and dig, explore and create.
Comments (View)
Jan 27
Permalink

For the Ruby coder who just can't live without the worst thing about php

class Object;def method_missing name, *a
  name
end;end
How to use:
importantvar = 'password'
savedimportantvariable = improtantvar
puts savedimportantvariable
Comments (View)
Jan 04
Permalink
Just so freakin’ awesome
Comments (View)
Dec 31
Permalink
Comments (View)
Nov 24
Permalink
Comments (View)
Nov 21
Permalink
My first youtube ^^
Comments (View)
Nov 20
Permalink

More gestures plz

Playing with my new MacBook Pro’s touchpad, I really miss being able to move and resize windows with it. Five finger gesture maybe? Or it could replace the four finger actions.

The up/down to show desktop/all app windows is useful but the left/right appswitching feels broken. I mean, swipe 4 fingers to get the appswitching interface on screen, and then what? The only way I can get something to happen is to switch to two fingers to scroll through the apps and then press space or return, or select app with one finger. If I need to press buttons on the keyboard I’d rather just cmd+tab. If i need to select apps with the pointer, I’d rather click the dock.

While I’m at it, a gesture to switch tabs in safari would be nice too. Three fingers does that in Adium. Actually, a key combination that switches tabs even when you are in a textbox would be nice.

update: Four finger click to activate app in the app switch interface. Hasn’t worked for me until just now thou. Strange.

Comments (View)
Sep 16
Permalink

Old weird flash animations

I made this to answer the question “can you animate divs containing flash
Comments (View)
Sep 03
Permalink

Comments by disqus

Just added the service of disqus so ppl can let me know how helpful my blog was to find where to get effects.core.js and how to install ATI catalyst drivers on acer aspire laptops ;)
Comments (View)
Permalink

Stream video from commandline with VLC

$ vlc --sout '#standard{access=http,mux=ts,dst:=8081}' \
--extraintf http /path/to/video.avi

then point you’r video player to http://your.server:8081
Easy!
(might need to change your mux according to video format or something. ts seems fine for most .avi)

Update: Added the extra interface “http” that functions as a remote using a web interface. Just surf to http://your.server:8080 to pause, seek etc. It needs port 8080 so I changed stream port to 8081

Comments (View)