Search found 245 matches

by kalle2990
Tue May 24, 2011 3:31 pm
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10937

Re: Filesystem Hack: Set Identity to Whatever You Want

nevon wrote:Use the following instead. That'll open the directory, file or URL in whatever the preferred application is:

Code: Select all

xdg-open
Does it work for both Linux and Mac?
by kalle2990
Tue May 24, 2011 6:15 am
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10937

Re: Filesystem Hack: Set Identity to Whatever You Want

After some experimenting with this under Ubuntu, and realizing I forced the use of C: before , I have rewritten the opening of files to use gnome-open if it sees that the system isn't Windows. If you're computer doesn't support gnome or isn't linux, you can change the open_command value to something...
by kalle2990
Mon May 23, 2011 5:38 pm
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10937

Re: Filesystem Hack: Set Identity to Whatever You Want

Robin wrote:The way you open files is Windows-centric
I thought it would be, guess you can't have it all ;)
by kalle2990
Mon May 23, 2011 4:13 pm
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10937

Re: Filesystem Hack: Set Identity to Whatever You Want

I made a proof-of-concept file explorer using this function, it features browsing your entire drive and opening files. The default scrolling is done with with the mouse-wheel, but I also added arrow key movement (instead of scroll-wheel up/down, for those who doesn't have one). Browsing is easy, cli...
by kalle2990
Wed May 11, 2011 7:32 pm
Forum: General
Topic: Angry Birds is now an HTML5 Web App
Replies: 5
Views: 2482

Re: Angry Birds is now an HTML5 Web App

Jasoco wrote:No. I saw the link later on Lifehacker.
Oh, here's the link to the official stream if anyone's interested http://www.youtube.com/watch?v=ns1sYGE-w1c
by kalle2990
Wed May 11, 2011 6:54 pm
Forum: General
Topic: Angry Birds is now an HTML5 Web App
Replies: 5
Views: 2482

Re: Angry Birds is now an HTML5 Web App

You watched it live too? ;) But thanks for the link, I never caught it during the stream..
by kalle2990
Sun May 01, 2011 6:27 pm
Forum: General
Topic: LÖVE distribution website
Replies: 103
Views: 35210

Re: LÖVE distribution website

Robin wrote: Windows
[ ] 32-bit
[ ] 64-bit
Jasoco wrote:Do you really need 32 and 64-bit versions of Windows and Linux versions?
Is there even a 64-bit Windows version? :?
by kalle2990
Fri Apr 29, 2011 12:32 pm
Forum: General
Topic: Survey: Do You Support Framebuffers and/or Non-Po2 [RERUN]
Replies: 92
Views: 40151

Re: Survey: Do You Support Framebuffers and/or Non-Po2 [RERU

I just saw I made a little mistake when writing the additional code for the fix.. This: if status and type(fb) == 'userdata' then maxSize = maxSize / 2 end Should be: maxSize = maxSize / 2 This will lead to: maxSize is 2 Testing 2 x 2... Success! Change maxSize to 4 ..... Testing 16384 x 16384... Su...
by kalle2990
Thu Apr 28, 2011 8:38 pm
Forum: General
Topic: Survey: Do You Support Framebuffers and/or Non-Po2 [RERUN]
Replies: 92
Views: 40151

Re: Survey: Do You Support Framebuffers and/or Non-Po2 [RERU

Did you modify the test to let it go up to \(2^{15}\) or something? The test currently stops testing Po2 sizes at \(2^{14}\). (And of course \(2^{14} = 16384\).) If I read this code correctly, it will multiply the result once more after each successful test, leaving it at \(2^{15}\). for i = 1, 14 ...
by kalle2990
Thu Apr 28, 2011 6:18 pm
Forum: General
Topic: Any decent documentation anywhere?
Replies: 10
Views: 3632

Re: Any decent documentation anywhere?

This should help you get going :)