User krujos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:13:34Z http://stackoverflow.com/feeds/user/511 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11368/what-is-the-best-interview-question/180761#180761 5 Answer by krujos for What is the best interview question? krujos 2008-10-07T22:57:51Z 2008-10-07T22:57:51Z <p>"What bugs you about our product?". It avoids the weeding out of people who haven't bothered to research what we make. </p> http://stackoverflow.com/questions/180601/using-super-in-c/180747#180747 2 Answer by krujos for Using "super" in C++ krujos 2008-10-07T22:51:55Z 2008-10-07T22:51:55Z <p>FWIW Microsoft has added an extension for <a href="http://msdn.microsoft.com/en-us/library/94dw1w7x(VS.80).aspx" rel="nofollow">__super</a> in their compiler. </p> http://stackoverflow.com/questions/41839/what-is-a-good-markup-language-to-use-for-tests 1 What is a good markup language to use for tests? krujos 2008-09-03T14:48:48Z 2008-09-17T11:49:58Z <p>I'm writing a tool to run a series of integration tests on my product. It will install it and then run a bunch of commands against it to make sure its doing what it is supposed to. I'm exploring different options for how to markup the commands for each test case and wondering if folks had insight to share on this. I'm thinking of using YAML and doing something like this (kinda adapted from rails fixtures): </p> <pre> case: name: caseN description: this tests foo to make sure bar happens expected_results: bar should happen commands: | command to run next command to run verification: command to see if it worked </pre> <p>Does anyone have another, or better idea? Or is there a domain specific language I'm unaware of? Thanks!</p> http://stackoverflow.com/questions/26799/how-do-you-back-up-your-development-machine/27144#27144 0 Answer by krujos for How do you back up your development machine? krujos 2008-08-26T00:10:23Z 2008-08-26T00:10:23Z <p>At work NetBackup or PureDisk depending on the box, at home rsync. </p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/27142#27142 4 Answer by krujos for Factorial Algorithms in different languages krujos 2008-08-26T00:06:44Z 2008-08-26T00:06:44Z <p><strong>Ruby: functional</strong></p> <pre><code>def factorial(n) return 1 if n == 1 n * factorial(n -1) end </code></pre> http://stackoverflow.com/questions/12537/what-tools-are-used-to-write-documentation/12985#12985 1 Answer by krujos for What tools are used to write documentation? krujos 2008-08-16T04:10:07Z 2008-08-16T04:10:07Z <p>We are way into a wiki (media wiki) for everything from design to end user docs as well as documents detailing our lab setups and who is using what machines. The end user stuff gets imported into acrobat and gets generated into nice PDF's for users (and I think real paper docs still). We use Borland Together for UML modeling (and code generation, but that's another post). We point our testers at the wiki when they go to test a new feature and then they also get to write bugs against the docs as well as the product. I was skeptical at first when we started doing it this way (we used to have writers that we would work with), but have become a big fan. Our users seem to like it as well. </p> http://stackoverflow.com/questions/12830/most-elegant-amusing-or-strange-code-one-liners/12981#12981 1 Answer by krujos for Most elegant, amusing or strange code one liners krujos 2008-08-16T03:44:01Z 2008-08-16T03:44:01Z <p>I don't know why but it has always tickled me when I run across this. </p> <pre><code>my @lines = map ( /:\s+(\S*)\s*$/, grep ( /Name/, &lt;&gt; ));"); </code></pre> http://stackoverflow.com/questions/5428/do-people-use-the-hungarian-naming-conventions-in-the-real-world/10108#10108 0 Answer by krujos for Do people use the Hungarian Naming Conventions in the real world? krujos 2008-08-13T17:27:26Z 2008-08-13T17:27:26Z <p>@Orion Edwards here here!</p> http://stackoverflow.com/questions/3746/whats-in-your-bashrc/8445#8445 2 Answer by krujos for what's in your .bashrc ? krujos 2008-08-12T04:02:02Z 2008-08-12T04:02:02Z <p>I add pwd to my prompt, aliases for deep directories I use a lot as well as wordy commands. </p> <p>I also keep things like CVSROOT, MANPATH etc in my .profile. The other thing I've got in my .profile is a bail out for systems that don't have bash (a pretty regular thing in my life). The switch example above for setting base paths might be better off in a .profile instead of .bashrc for this reason. </p> <p>Here is the function I use to color the prompt (cribbed from somewhere else online), I use a white background. </p> <pre> function prompt { local WHITE="\[\033[1;37m\]" local GREEN="\[\033[0;32m\]" local CYAN="\[\033[0;36m\]" local GRAY="\[\033[0;37m\]" local BLUE="\[\033[0;34m\]" local BLACK="\[\033[0;1m\]" local RESET='\[\033[00m\]' export PS1="${GREEN}\u${CYAN}@${BLUE}\h:${CYAN}\w${GREEN} >$ ${RESET}" } </pre>