User vetler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:22:55Z http://stackoverflow.com/feeds/user/2935 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1276976/command-line-utility-or-library-to-output-html-after-javascript-execution 1 Command line utility or library to output HTML after JavaScript execution vetler 2009-08-14T09:46:39Z 2009-08-17T07:04:20Z <p>Is there a command line utility (preferrably for Linux) that can output the resulting HTML after any JavaScript execution?</p> <p>Since many web sites use Javascript to modify the output substantially, it is sometimes not sufficient to use an HTML parser to read data from a web page. A command line utility or library that enables you to see the resulting HTML, after any initial JavaScript has been executed, could help with this.</p> http://stackoverflow.com/questions/35874/how-do-you-enforce-or-maintain-the-quality-of-the-bug-reports-in-your-bug-tracker 5 How do you enforce or maintain the quality of the bug reports in your bug tracker? vetler 2008-08-30T10:45:56Z 2009-05-07T02:32:08Z <p>High-quality bug reports are essential for effective bug tracking - in an ideal world all bug reports would contain essential information such as which version of the software it affects and a step-by-step description on how to reproduce the bug.</p> <p>In reality, though, bugs reported can vary a lot in quality. They might be on-liners ("feature X doesn't work, fix it!"), feature requests, PEBKACs or unintelligble.</p> <p>How do you enforce or maintain the quality of the bug reports in your bug tracker to stay effective?</p> http://stackoverflow.com/questions/35186/how-do-i-fix-a-nosuchmethoderror/35210#35210 9 Answer by vetler for How do I fix a NoSuchMethodError? vetler 2008-08-29T20:14:56Z 2008-08-29T20:14:56Z <p>Without any more information it is difficult to pinpoint the problem, but the root cause is that you most likely have compiled a class against a different version of the class that is missing a method, than the one you are using when running it.</p> <p>Look at the stack trace ... If the exception appears when calling a method on an object in a library, you are most likely using separate versions of the library when compiling and running. Make sure you have the right version both places.</p> <p>If the exception appears when calling a method on objects instantiated by classes <em>you</em> made, then your build process seems to be faulty. Make sure the class files that you are actually running are updated when you compile.</p> http://stackoverflow.com/questions/32876/whats-the-best-way-to-extricate-yourself-from-a-soul-destroying-internal-it-job/32999#32999 0 Answer by vetler for What's the best way to extricate yourself from a soul-destroying internal IT job? vetler 2008-08-28T18:22:31Z 2008-08-28T18:22:31Z <p>There certainly is a jobmarket for developers without formal degrees, but perhaps you have to prove yourself more than those with degrees.</p> <p>I've hired developers without degrees, and just as developers <em>with</em> degrees, they gave a good impression in the face-to-face interviews, and delivered good solutions to the programming test. Not all companies have programming tests, so without that you might not be able to actually prove you have the skills.</p> <p>Try to apply for jobs in smaller companies, they might not have formal requirements for applicants such as degrees, and it might be easier to get a job somewhere that doesn't have a large bureaucracy.</p> http://stackoverflow.com/questions/32892/what-would-motivate-you-to-change-jobs/32961#32961 0 Answer by vetler for What would motivate you to change jobs? vetler 2008-08-28T18:11:13Z 2008-08-28T18:11:13Z <p>I'd look for something that is probably not possible to see, unless you work there for a while - professional, engaged and highly skilled employees, that are easy to get along with.</p> <p>In no way have my places of employment lacked people like this, but there's always something that isn't right, some process that is lacking, someone that isn't pulling their weight, someone who's difficult to work with, and so on.</p> <p>Given a place that has this type of employees, it is implied by the fact that they work there that the work is engaging and that the salary is above the pain threshold - otherwise they probably wouldn't work there.</p> <p>Or perhaps I'm just rambling. In any case, I'm pretty happy right now. ;)</p> http://stackoverflow.com/questions/27830/which-language-you-use-for-throw-away-programs/27893#27893 5 Answer by vetler for which language you use for "throw away" programs? vetler 2008-08-26T12:27:27Z 2008-08-26T12:27:27Z <p>I used to use Perl, but started forcing myself to use Python - the main reason for that is that I tend to write better code when using Python, simply because there are so many shortcuts available in Perl.</p> <p>In my experience "throw away" programs can often become more permanent, so I'd think twice before starting to hack away at something that supposedly will be thrown away.</p> <p>As you write yourself, "may not be added", but it might stick, and if you don't do it properly you might end up with an unmaintainable mess - force yourself to do it right the first time and you'll be happier.</p> http://stackoverflow.com/questions/4724/learning-lisp-why/27673#27673 2 Answer by vetler for Learning Lisp - Why ? vetler 2008-08-26T10:03:05Z 2008-08-26T10:03:05Z <p>Killer app? <a href="http://www.franz.com/" rel="nofollow">Franz Inc.</a> has a long list of <a href="http://www.franz.com/success/" rel="nofollow">success stories</a>, but this list only includes users of AllegroCL... There are probably others. My favourite is <a href="http://www.franz.com/success/customer_apps/animation_graphics/naughtydog.lhtml" rel="nofollow">the story about Naughty Dog</a>, since I was a big fan of the Crash Bandicoot games.</p> <p>For learning Common Lisp, I'd recommend <a href="http://gigamonkeys.com/book" rel="nofollow">Practical Common Lisp</a>. It has a hands-on approach that at least for me made it easier than other books I've looked at.</p> http://stackoverflow.com/questions/1276976/command-line-utility-or-library-to-output-html-after-javascript-execution/1277846#1277846 Comment by vetler on Command line utility or library to output HTML after JavaScript execution vetler 2009-08-15T10:19:31Z 2009-08-15T10:19:31Z Yes, the goal is to be able to automate it and use the output in a script. http://stackoverflow.com/questions/101268/hidden-features-of-python/101447#101447 Comment by vetler on Hidden features of Python vetler 2008-10-02T13:52:34Z 2008-10-02T13:52:34Z How is this a hidden feature?