thomasrutter

5,621
reputation
602 views

Registered User

name thomasrutter
member for 11 months
seen Dec 9 at 3:37
website
location AU
age 29
Web application developer by day who has also dabbled in audio, video and image tools.
Dec
6
awarded  Mortarboard
Dec
1
awarded  Nice Answer
Nov
26
comment Website Image Formats: Choosing the right format for the right task.
For image animation, there's GIF or there's Flash. The GIF patent's expired pretty much everywhere now, the only problem is that it's limited to 256 colours. SVG would be an option, too, but that's not (yet) all that well supported. You could also come up with a creative way to animate images using Javascript and sprites (all frames of animation in single image).
Nov
22
revised What is the difference between cygwin and mingw?
added 10 characters in body
Nov
22
revised What is the difference between cygwin and mingw?
added 141 characters in body
Nov
21
comment How do you think Google is handling this encoding issue?
I don't know much about Java, but according to Wikipedia, InputStreamReader and OutputStreamWriter classes support native UTF-8. You tell it to interpret as UTF-8 in the constructor, and then presumably if you get an exception, you catch it (and try another encoding).
Nov
20
accepted How do you think Google is handling this encoding issue?
Nov
20
answered How do you think Google is handling this encoding issue?
Nov
19
answered Did you ever switch from one programming language to another?
Nov
18
comment What are some of the “best” cross-platform C++ UI toolkits today?
I found songbird deathly slow to load and put that down to the overhead of loading xulrunner. Not sure if that's what the cause really was though.
Nov
18
comment What programming language was Windows Vista programmed in?
WinCE is a different beast to NT.
Nov
17
comment I need a C++ Compiler
Oops just realised that Dev C++ is based on MinGW. I'll shut up now!
Nov
17
comment What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!
+1 I loved how you described kids these days who have 50,000 songs from bittorrent and Adobe CS4 for nothing, it is of course reality
Nov
17
comment What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!
@DisgruntledGoat you could probably make this into a one liner easily enough by replacing those semicolons with other operators. Like && perhaps. But then it'd still be sort of based on 3 separate expressions.
Nov
17
revised What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!
deleted 16 characters in body
Nov
17
comment I need a C++ Compiler
True also of the GCC (GNU compiler collection) and its Windows port MinGW. But you can also use pretty powerful build systems with it once your project gets large so it scales well.
Nov
17
comment I need a C++ Compiler
"free for non-commercial use" sounds fishy to me - how does that work? Can they enforce license conditions based on whether you sell the resulting software? If so looks like it would not be possible to use either for open source (well GPL at least which doesn't allow such restrictions) or for commercial software either - only for freeware.
Nov
17
comment I need a C++ Compiler
Just wanted to clarify for peeps who may not know, that GCC == GNU Compiler Collection - ie they are one and the same.
Nov
17
revised I need a C++ Compiler
added 26 characters in body
Nov
17
comment GNU C++ compiler
Compilers under cygwin don't compile natively for Windows, they compile for the cygwin environment. That's fine if that's what you want, but if you want to compile for Windows, you'll want mingw instead, as Gabe said. MingW is a Windows port of GCC which can compile to Windows.
Nov
17
revised Why isn’t C++ more popular?
trying to make it less argumentative and more like a question; deleted 3 characters in body; added 11 characters in body
Nov
17
asked Why isn’t C++ more popular?
Nov
17
comment What is your favorite “programmer” t-shirt?
so so classy, how fashionable.
Nov
16
comment Websites - server side coding - why not languages like Java, c++, etc?
I think that Fire Lancer means that parsing a string linearly, where you iterate over a string character-by-character say in a big switch statement (as is typical of C parsers), is really horribly slow in PHP. String handling might be much more convenient/flexible in PHP than C++, but if you are iterating over a string character by character it is probably hundreds of times slower.
Nov
15
accepted WAMP: How to show warning messages in browser?
Nov
13
comment Vim help in vertical split
:vs works for me
Nov
11
comment MySQL ORDER BY optimisation on range
Added table def to question. Yes the query above is the full one - all I need is the identity_ID values in order of modified date, where modified date is larger than a certain value.
Nov
11
revised MySQL ORDER BY optimisation on range
Added table def
Nov
11
answered MySQL ORDER BY optimisation on range
Nov
11
comment MySQL ORDER BY optimisation on range
YES, it has an index on that column. It is using the index for the WHERE clause, but it is not using the index to do the sorting.
Nov
11
comment MySQL ORDER BY optimisation on range
The point is, I want to retrieve all records modified since a certain date, sorted by the date they were last modified. I don't want MySQL to have to do a filesort for this; it could have to sort the majority of the table. A filesort shouldn't be needed since MySQL stores the index rows in order.
Nov
11
asked MySQL ORDER BY optimisation on range
Nov
11
comment Disable browser’s back button
Note that making the page un-cacheable does not achieve what the OP wanted: to disable visiting pages using the back button. Even if a browser obeys no-cache when using the back button (which browsers are not obliged to do AFAIK) they still provide a way to reload that page (usually after showing a warning dialog). So if you really don't want your users going back to that page, this may be worse, since the request for that page will HAVE to make its way all the way to the origin server. You will need something server-side to detect that the page has been revisited. Headers can be ignored.
Oct
14
awarded  Nice Answer
Sep
29
awarded  Necromancer
Sep
24
answered Google Chrome and Streaming HTTP connections?
Sep
24
accepted PHP: what’s an alternative to empty(), where string “0” is not treated as empty?
Sep
16
accepted FFmpeg: A few errors including invalid frame size and incomplete frame
Sep
2
awarded  Nice Answer
Aug
16
comment Allowed characters in submit forms (including UTF-8)
Yes, that regex is suitable for UTF-8 encoded text which is going to be used in XHTML or HTML, as it also filters out those control codes as above.
Aug
12
accepted Allowed characters in submit forms (including UTF-8)
Aug
12
answered If I have two instance of a class and I use $this to reference one of the instance without specifying which, what will $this take?
Aug
12
answered Allowed characters in submit forms (including UTF-8)
Aug
10
accepted Should I be using libraries if I’m trying to learn how to program?
Aug
10
comment Should I be using libraries if I’m trying to learn how to program?
I enjoyed that one of Joel's articles very much, but disagree with the line you quoted at the beginning of your comment. If it is a core business function, then make sure it's done right, and if there is nothing already in existence that does it right, do it yourself. I think Joel's point is that if it is a core business function, it makes less sense to settle for something that almost-but-doesn't-quite satisfy your needs.
Aug
10
comment Should I be using libraries if I’m trying to learn how to program?
It is debatable whether this is subjective. I think that there is one true answer to this question ("yes"). All 3 answers given sofar agree with this (giving further information).
Aug
10
answered Should I be using libraries if I’m trying to learn how to program?
Aug
5
accepted Getting a “Use of undefined constant” error that I cannot figure out
Aug
3
revised Getting a “Use of undefined constant” error that I cannot figure out
added 53 characters in body
Aug
3
answered Getting a “Use of undefined constant” error that I cannot figure out