| bio | website | crowdersoftware.com |
|---|---|---|
| location | United Kingdom | |
| age | ||
| visits | member for | 3 years, 9 months |
| seen | 23 mins ago | |
| stats | profile views | 11,070 |
I'm an independent software engineer with a particular interest in web technologies (esp. JavaScript). I also do lots of work in C#, Java, and several other languages.
On occasion, I write up snippets of nifty tricks or techniques in my anemic little blog.
I've been doing this professionally for over 20 years, goofing with computers for 10 years before that, but I hope I'm not this guy.
I'm an independent contractor. If you have a bit of work you need done, and done properly, give me a shout at tj@crowdersoftware.com. Whether it's a couple of hours of sorting out a script, or a couple of months designing and implementing a new application or system for you, I can usually work you into my existing commitments as long as you're willing to share my time with others. (I don't currently have any exclusive availability.) My rates are reasonable, and of course, you have a good idea what you're getting if you browse the more than 4,000 answers I've provided on Stack Overflow.. :-)
I've had issues with the Stack Exchange management's curation of the network (particularly Stack Overflow, where I've been most active), including this idiocy and this, as well as everyday unreasoning obstinance — which have caused me to periodically curtail my contribution. I'm hopeful the change in management earlier this year will improve things.
|
Mar 7 |
comment |
Why a java program should have a main() method? I see what you're saying. For me, if it's hardcoded into an absolutely central tool like java, that's not a convention, it's a requirement. :-) But @sleske has a good point: You could write your own program launcher that used a different name. |
|
Mar 7 |
answered | Why a java program should have a main() method? |
|
Mar 7 |
comment |
Why a java program should have a main() method? No just a convention, though, is it? I mean, when you run the program (via java), that's what it looks for... |
|
Mar 7 |
comment |
Javascript sorted lists @mplungjan: My impression was that the data set was already sorted, and so the OP was looking for a solution to avoid doing a full re-sort on insertion. Insertions sorts aren't a great answer for the initial sort of a data set, but they're a great way to keep it sorted if you have relatively few insertions (or modifications involving the key, where you do a remove and re-insert). In fact, they can be very fast indeed for that part of it. |
|
Mar 7 |
answered | Javascript sorted lists |
|
Mar 4 |
comment |
Genetic Programming help Welcome to StackOverflow! To the right when you were asking your question there was this handy How to Format box. Worth a read, as is the page linked from the [?] just above the question area. |
|
Mar 4 |
revised |
Am I forced to use href=“#” when working with jQuery? added 534 characters in body |
|
Mar 4 |
answered | Am I forced to use href=“#” when working with jQuery? |
|
Mar 4 |
comment |
Am I forced to use href=“#” when working with jQuery? Your odds of getting a good answer will be greatly increased if you quote code. |
|
Mar 4 |
comment |
Lightbox Not Showing In fact, please post the relevant code actually in the question. People shouldn't have to click through to help you out, and StackOverflow is meant to be an enduring, stand-alone reference -- external links can get deleted, moved, etc. |
|
Mar 4 |
revised |
JS/Jquery variable schange event added 665 characters in body; added 84 characters in body |
|
Mar 4 |
answered | JS/Jquery variable schange event |
|
Mar 4 |
answered | How many Java objects are generated by this - new String(“abcd”) |
|
Mar 3 |
comment |
Do MySQL tables need an ID? Anyway, I'll leave it there. You almost certainly know more about DB design than I do, whether or not specifically for some obscure storage engine; and in any case, I've said my piece -- and almost seem to be arguing against PKs, which is not my intent at all. :-) |
|
Mar 3 |
comment |
Do MySQL tables need an ID? Ah, okay, good. :-) |
|
Mar 3 |
comment |
Do MySQL tables need an ID? "If you're indexing other columns and don't have a primary key, then you are likely doing something wrong as MySQL doesn't have eg. Postgres's object ID's to be able to refer to rows in the table." See my comment in reply to that point on another answer. For at least the MyISAM engine, I'm fairly sure it does -- the file position. |
|
Mar 3 |
comment |
Do MySQL tables need an ID? @Matthew: Again, it depends on the table engine. MyISAM and InnoDB are quite different. I can't speak for InnoDB, but I think MyISAM works perfectly happily without a PK -- just index the columns you're actually going to query, and it uses the file position of the rows. I think. (Best practice? Well, unless the engine needs it, there's not much point adding a column you're never going to query.) |
|
Mar 3 |
comment |
Do MySQL tables need an ID? Are you sure you're not talking about MS SQL? That sounds a lot like the MS SQL system. MySQL works differently depending on which table engine you're using... |
|
Mar 3 |
comment |
How to determine if JQuery is running on a page (even if jquery is /after/ the detection script) He said "even if jQuery is /after/ the detection script". And then he goes on about it in the text. It's clearly an important part of what he's asking. |
|
Mar 3 |
comment |
Do MySQL tables need an ID? You've argued for indexes, not necessarily an (artificial) ID column. |