User Kwondri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:18:21Zhttp://stackoverflow.com/feeds/user/7691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/114885#1148850Answer by Kwondri for What is your latest useful Perl one-liner (or a pipe involving Perl)?Kwondri2008-09-22T13:31:48Z2008-09-22T13:31:48Z<p>Here is one that I find handy when dealing with a collection compressed log files:</p>
<pre><code> open STATFILE, "zcat $logFile|" or die "Can't open zcat of $logFile" ;
</code></pre>
http://stackoverflow.com/questions/105190/should-i-learn-assembly-programming/105225#1052252Answer by Kwondri for Should I learn Assembly programming?Kwondri2008-09-19T20:21:33Z2008-09-19T20:21:33Z<p>I have to give the standard statistical answer...it depends.</p>
<p>Do you plan a career working with driver level or hardware level development? If yes, then I woulds absolutely you need to learn assembly.</p>
<p>If you are interested in a deeper understanding of how software works with hardware, then again I say yes learn assembly.</p>
<p>If you want an exercise in breaking down a programming problem into very small steps, then again, I say yes learn assembly language.</p>
<p>If you are doing web or database development, probably no so much :-)</p>
<p>My $0.02 worth</p>
http://stackoverflow.com/questions/96898/what-is-the-hardest-technical-question-you-have-had-to-answer-in-an-interview/97040#970400Answer by Kwondri for What is the hardest technical question you have had to answer in an interview?Kwondri2008-09-18T21:13:34Z2008-09-18T21:13:34Z<p>The most difficult technical question I had was during an all day interview. There were 3 interviewers and a white board. I was given a brief description of problem and told to write pseudo-code to handle it. Basically, they wanted me to write a doubly-linked list and the appropriate code to access it.</p>
http://stackoverflow.com/questions/73319/duplicate-a-whole-line-in-vim/73682#736824Answer by Kwondri for Duplicate a whole line in VimKwondri2008-09-16T15:37:24Z2008-09-16T15:37:24Z<p>If you want another way :-)</p>
<p>"ayy this will store the line in buffer a</p>
<p>"ap this will put the contents of buffer a at the cursor.</p>
<p>there are many variations on this.</p>
<p>"a5yy this will store the 5 lines in buffer a</p>
<p>see <a href="http://www.vim.org/htmldoc/help.html" rel="nofollow">http://www.vim.org/htmldoc/help.html</a> for more fun</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/65918#659182Answer by Kwondri for Unit Testing C CodeKwondri2008-09-15T19:22:11Z2008-09-15T19:22:11Z<p>If you are familiar with JUnit then I recommend CppUnit.
<a href="http://cppunit.sourceforge.net/cppunit-wiki" rel="nofollow">http://cppunit.sourceforge.net/cppunit-wiki</a></p>
<p>That is assuming you have c++ compiler to do the unit tests. if not then I have to agree with Adam Rosenfield that check is what you want.</p>
http://stackoverflow.com/questions/65278/how-much-experience-should-you-have-before-trying-to-freelance/65898#658981Answer by Kwondri for How much experience should you have before trying to freelance?Kwondri2008-09-15T19:19:18Z2008-09-15T19:19:18Z<p>Based on personal experience I would say you need the following non-programmer skills:
1. Know that you can find and acquire jobs, contracts, etc.
2. Have enough money put away to cover expenses if you don't have work. (I like to keep 3 months worth around, but that's just me :-)
3. Have the discipline to maintain #2
4. Know how to sell your strengths.
5. Set some criteria for jobs that you will walk away from and stick to them. I had a client that wanted me to speed up their Access database app that they had custom written, but it had over 250,000 records in one table. I refused the job, but they still wanted me to look at some other changes for the app.
6. Always be looking for the next job or a referral.
7. Just do it!</p>
<p>Programmer skills:
1. I think the resounding theme here is: More is better :-)
2. Pick an area or group of related areas and become an expert (basically can you answer the questions most people have without having to google it?)</p>
<p>This my $0.02 for what it's worth. Good luck and happy consulting.</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/65669#656692Answer by Kwondri for What is the strangest programming language you have used?Kwondri2008-09-15T18:55:55Z2008-09-15T18:55:55Z<p>I have to say it APL back in the mid-80's. This was a very symbolic language and was great if you were a mathematician or just a genius. Just in case you want to know more about APL: <a href="http://www.thocp.net/software/languages/apl.htm" rel="nofollow">http://www.thocp.net/software/languages/apl.htm</a></p>