yar

4,862
Reputation
570 views

Registered User

Name yar
Member for 1 year
Seen 18 hours ago
Website
Location Venice, Italy.
Age 39
stackoverflow.dan.2009 at confusionists.com
My tech blog
My music blog
My tango blog
18h
answered Am I reinventing the wheel? PHP/Mysql User reigstration and payment processing.
Nov
25
comment Finding out total and free disk space in .NET
How ridiculous would it be to map a drive, check space, and unmap it? I realize it's not practical, but if no other solutions arise...
Nov
25
comment Finding out total and free disk space in .NET
+1 I love contemplating how long this would take for a 5TB drive, a byte at a time. Fun.
Nov
25
comment Calculating difference between username and email in javascript
Awesome +1. If you include this in your answer -- phpjs.org/functions/levenshtein:463 -- it'll be more useful.
Nov
25
revised Avoid Race Conditions in PHP on Submit: Please do not click submit more than once!
making some nicer code, couldn't resist.; added 4 characters in body
Nov
25
comment Avoid Race Conditions in PHP on Submit: Please do not click submit more than once!
Thanks for that, you are indeed right. Using more methods naturally results in clearer code and variable names that are NOT resolving overlap problems (theThing14b becomes theThing). Note: you should make this a comment on my question, not an answer (where it might get downvoted for not following SO rules). Thanks again and good luck on SO.
Nov
21
awarded  Popular Question
Nov
20
revised Are the Swing LayoutManagers adequate?
made the link a link
Nov
20
comment Java Swing: Libraries, Tools, Layout Managers
@Ran Biron, that is the best comment I have seen on SO thus far. That is so reminiscent of my GridBagLayout experiences. At one point I even wrote a GridBagLayout wrapper for most of the stuff I do, but it's hard to really grok. +1 for this answer so more people see this comment :)
Nov
18
answered How to tween (with ease out) a movie clip using only Action Script 2.0
Nov
16
awarded  Popular Question
Nov
13
awarded  Popular Question
Nov
10
comment SVN Weirdness Day 2: SVN List and SVN Update Report Different Things
Sorry Stefan, I never saw your comment until now (months later). .The reason that I didn't follow your advice was that I had resolved the problem and could NOT check with svn st -v. So my question was academic. Thanks for the help.
Nov
6
awarded  Popular Question
Nov
6
awarded  Notable Question
Nov
5
comment SVN Weirdness Day 2: SVN List and SVN Update Report Different Things
tuler, check my answer below.. I don't know what client I was running back in May. Thanks!
Nov
4
comment Find Programming Language Used
Seems like a stupid answer, but this is in fact how "hackers" do their work. "Social engineering" it's called... +1
Nov
2
comment How do you organize your work?
I used Evernote for months until I realized that I couldn't find anything at all :)
Nov
2
comment How do you organize your work?
How did this question get so far without being a Community Wiki? You may want to consider making it one, Matthieu.
Nov
2
answered How do you organize your work?
Nov
2
comment How to detect silence in audio files?
I've done waveform analysis of mp3s (and wavs) using Java. While not trivial, it's not that bad. I think Java Sound is the API you want (if memory serves). Also see tritonus.org/plugins.html
Oct
30
comment Rails Migrations: Check Existence and Keep Going?
Sorry, I wasn't clear. My point was this: DURING a migration even reloading wouldn't update the ActiveRecord. I think it depends on the transaction level, etc., but from what I can gather, each migration is one transaction, so the Model wouldn't know that a column has been added until the migration is done. On the other hand, since Status (in your example) is just a simple class, you could simplify your safe_add_column... method to define the class and do the check, eliminating the dependency on the model being present whatsoever. THANKS for the answer and the comments.
Oct
30
comment Rails Migrations: Check Existence and Keep Going?
My guess is that each migration runs in its own transaction, so forcing a reload (if necessary) should do the trick. I'll check it out and let you know, the idea looks sound.
Oct
29
asked Rails Migrations: Check Existence and Keep Going?
Oct
29
comment Randomize CSS Classes using Jquery
Right, multiple classes, well done +1
Oct
28
comment Netbeans Source Format: Can It Recognize Other Stuff? (For RoR Views)
Really? I kind of though this was either easy or that my question would get closed as "not programming related" :) I'll have to dig into it soon, I really hope there's a positive answer. It does recognize CSS and javascript in an HTML file, which you mention (well, with ERB there are four languages happening). Thanks for your answer.
Oct
28
revised Netbeans Source Format: Can It Recognize Other Stuff? (For RoR Views)
edited title
Oct
28
asked Netbeans Source Format: Can It Recognize Other Stuff? (For RoR Views)
Oct
27
comment Parse php then parse asp.net
This would be a sin because you have disc access in between every request. Who knows what kind of strange overhead and problems that might lead to (or am I exaggerating?)
Oct
27
comment Parse php then parse asp.net
Why? What's bad about it?
Oct
27
answered Does static imply no state
Oct
27
comment Does static imply no state
You're both right (I learned that in California): it's still an instance, and there's still state in that instance. But the instance is not of Class Foo but rather of Class Class (depending on the language). Or something like that...
Oct
26
answered Sort or Order Error Messags in error_messages (Rails)
Oct
26
comment RegEx in Ruby: Just one match?
Thanks Glenn, I was never informed of your comment, excellent point.
Oct
26
comment RegEx in Ruby: Just one match?
Samuel, just 9 months later or so, this answer still works :)
Oct
26
comment How can I get validation “ifs” to use parameters (Ruby on Rails)
Thanks for that. I realize now that the answer was in the question :) You basically use some procs to call parameterized methods on the model itself. I think... I'll come back and upvote some answers later today or tomorrow :)
Oct
26
comment How can I get validation “ifs” to use parameters (Ruby on Rails)
Thanks, that's the same, just in place. I'm actually trying to parameterize. Any ideas?
Oct
26
asked How can I get validation “ifs” to use parameters (Ruby on Rails)
Oct
25
comment Sort or Order Error Messags in error_messages (Rails)
Perfect. That's what I needed.
Oct
24
comment make an object behave like an Array for parallel assignment in ruby
perfect, thanks, this is just what I need at this second.
Oct
24
asked Sort or Order Error Messags in error_messages (Rails)
Oct
24
comment Ampersand using Javascript & PHP
What does the outputted <script> block look like in the HTML? Just break the Javascript for a second (e.g., delete a character) if you have problems with the page redirecting too fast.
Oct
23
comment How to make industry standard desktop Java applications?
Very cool and interesting stuff. Should I ever head back to Java (now doing some UI in Mono Winforms), I'll be sure to check out Netbeans. I use Netbeans for all of my paid gigs right now (Ruby on Rails and PHP).
Oct
23
comment How to make industry standard desktop Java applications?
So that will make a normal Swing app, right, not a Netbeans-based app?
Oct
23
answered How to make industry standard desktop Java applications?
Oct
23
answered Why dont people simply use “Object Database”s ?
Oct
22
comment Comparison between Sun Metro and Apache CXF for webservices development?
+1 for thinking of those poor fools who will have to figure this code out in 10 years time. May be one of us!
Oct
22
comment Seriously, should I write bad PHP code?
true that. What do you recommend for profiling PHP?
Oct
21
comment What is the best UI you’ve ever used?
So true. +1 and more!
Oct
21
answered What is the best UI you’ve ever used?