User Oddmund - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T09:09:38Zhttp://stackoverflow.com/feeds/user/4417http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/855665#8556650Answer by Oddmund for Markdown vs markup - are they related?Oddmund2009-05-13T01:27:05Z2009-05-13T01:27:05Z<p>Markdown and the markup used in Mediawiki (the wiki software that powers Wikipedia) is not the same.</p>
<p>They're related in the sense that both are less verbose ways of entering html (with some added features), but I doubt that they are related to each other in any other sense.</p>
<p>If you want to implement Markdown on your site just Google Markdown + your favourite platform/language and you'll likely to find a library that does it for you.</p>
<p>If you want to implement Mediawiki's markup you probably need to look round for better ones (like Markdown).</p>
http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848010#8480105Answer by Oddmund for Merging only modified files using GitOddmund2009-05-11T13:02:48Z2009-05-12T03:32:35Z<p>The obvious answer is that you should have <strong>separate source and content repositories</strong>. Or just leave the content be.</p>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/372051#3720510Answer by Oddmund for Do you have a hobby development project?Oddmund2008-12-16T17:35:19Z2008-12-18T10:14:22Z<p>I've got a boatload of ideas in my head and in my notebooks, but surprisingly little to show for it, even though the ideas are pretty mature and the designs are pretty defined. I think I should focus more on doing one thing at a time.</p>
<p>Among the more developed projects I've got</p>
<ul>
<li>A roguelike (of course) with a cool class/job system</li>
<li>An Eclipse plug-in for <a href="http://en.wikipedia.org/wiki/Rom_hacking" rel="nofollow">rom hacking</a></li>
<li>A sophisticated way of organizing and choosing music that fits your current mood (originally meant to be a Winamp plug-in)</li>
<li>An Object Oriented MIDI <a href="http://en.wikipedia.org/wiki/Tracker" rel="nofollow">tracker</a> in Java</li>
<li>A plug-in for <a href="http://musicbrainz.org/doc/PicardTagger" rel="nofollow">Music Brainz Picard Tagger</a> that prefers original albums before compilations.</li>
</ul>
http://stackoverflow.com/questions/140574/buying-a-machine-for-continuous-integration-key-factors7Buying a machine for continuous integration - key factors?Oddmund2008-09-26T16:33:36Z2008-11-16T15:38:23Z
<p>I'm planning to propose to my (very small) company that we buy a computer to run continous integration on. If they say yes, the task of actually buying the machine will probably fall on me, so my question is:</p>
<p>What do I look for in a computer that will be used for continuous integration for a very small (3 people) php team?</p>
<p>What "stuff" (memory, processor, etc.) are important, and what are not?</p>
http://stackoverflow.com/questions/230789/keeping-track-of-opensource-freeweare-plugins-etc/237040#2370400Answer by Oddmund for Keeping track of opensource/freeweare/plugins/etc.Oddmund2008-10-25T21:28:12Z2008-10-25T21:28:12Z<p>Well, there's always the "Add/remove programs" in the control panel. It'll even sort (though not very accurate) your programs by how often you use them.</p>
<p>It's at least a list of some of the programs you've installed. (Although a lot of freeware doesn't register in the program list.)</p>
http://stackoverflow.com/questions/180985/what-is-tempuri-org/181025#1810257Answer by Oddmund for What is tempuri.org?Oddmund2008-10-08T01:05:26Z2008-10-08T01:05:26Z<p>Webservices require unique namespaces so they don't confuse each others schemas and whatever with each other. A URI (domain, subdomain, subsubdomain, etc) is a clever identifier as it's "guaranteed" to be unique, and in most circumstances you've already got one.</p>
http://stackoverflow.com/questions/131049/whats-the-easiest-way-to-add-a-quote-box-to-mediawiki/131757#1317573Answer by Oddmund for What's the easiest way to add a quote box to mediawiki?Oddmund2008-09-25T06:47:16Z2008-09-26T00:31:47Z<p>Actually, this is a better way to do it:</p>
<pre><code><blockquote style="background-color: lightgrey; border: solid thin grey;">
Det er jeg som kjenner hemmeligheten din. Ikke et pip, gutten min.
</blockquote>
</code></pre>
<p>The blockquotes are better than divs because they "explain" that the text is actually a blockqoute, and not "just-some-text". Also a blockquote will most likely be properly indented, and actually look like a blockqoute.</p>
http://stackoverflow.com/questions/130575/whats-a-good-free-bug-tracker-for-a-small-shop/130583#1305833Answer by Oddmund for What's a good free bug tracker for a small shopOddmund2008-09-24T23:27:54Z2008-09-24T23:27:54Z<p><a href="http://assembla.com" rel="nofollow">Assembla.com</a> has free trac with integrated subversion.</p>
http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130405#1304053Answer by Oddmund for Which chemical stimulation do you require while coding?Oddmund2008-09-24T22:46:56Z2008-09-24T22:46:56Z<p>I need coffee, but that's generally a requirement for me to do anything properly.</p>
http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/106346#1063461Answer by Oddmund for what is an ideal variable naming convention for loop variables?Oddmund2008-09-19T23:19:46Z2008-09-19T23:19:46Z<p>I use i, ii, iii, iv, v ... Never got higher than iii, though.</p>
http://stackoverflow.com/questions/102167/do-you-have-unit-testing-in-your-projects/102204#1022047Answer by Oddmund for Do you have unit testing in your projects?Oddmund2008-09-19T14:20:40Z2008-09-19T14:20:40Z<p>I work in a small time pretty unstructured company with only a few developers. I unit-test `my´ classes, which saves me time and gives me confidence that they do what they're supposed to.</p>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/99378#993789Answer by Oddmund for PHP Associative arrays to and from XML Oddmund2008-09-19T03:44:52Z2008-09-19T03:44:52Z<p><a href="http://php.net/simplexml" rel="nofollow">SimpleXML</a> works great for your use.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/99092#990922Answer by Oddmund for What's Your Motto As A Developer/Programmer?Oddmund2008-09-19T02:53:45Z2008-09-19T02:53:45Z<ol>
<li>Fork</li>
<li>Morph</li>
<li><code>(if !what_you_had_in_mind) GOTO 2</code></li>
<li>It rings!</li>
</ol>
<p>When in doubt - morph it more!</p>
<p>Morph it 'till it rings!</p>
http://stackoverflow.com/questions/61704/switching-editors-in-eclipse-with-keyboard-rather-than-switching-design-source/61712#617123Answer by Oddmund for Switching editors in Eclipse with keyboard, rather than switching Design/SourceOddmund2008-09-14T23:07:15Z2008-09-14T23:07:15Z<p>With ctrl-e you can jump directly to any editor by typing the beginning of it's name. Quite handy when you've got a lot of editors open.</p>
http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/109455#109455Comment by Oddmund on Best git repository hosting for commercial project?Oddmund2009-08-27T10:58:38Z2009-08-27T10:58:38Z-1 for being wrong about github.http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848010#848010Comment by Oddmund on Merging only modified files using GitOddmund2009-05-11T14:19:44Z2009-05-11T14:19:44Z@kaychaks: Mixing several repositories in the same folders or sub-folders is generally a very bad idea. Even though it can be done, it's asking for trouble.http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157336#157336Comment by Oddmund on Do you have a hobby development project?Oddmund2008-12-16T17:16:13Z2008-12-16T17:16:13ZYay for roguelike developing. A roguelike is the perfect hobby project.http://stackoverflow.com/questions/39029/is-latex-used-outside-mathematics-and-academia/159057#159057Comment by Oddmund on Is LaTeX used outside mathematics and academia?Oddmund2008-12-14T03:14:02Z2008-12-14T03:14:02ZYeah, I'd love to see some source to this statement.http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237476#237476Comment by Oddmund on What coding mistakes are a telltale giveaway of an inexperienced programmer?Oddmund2008-11-16T15:58:16Z2008-11-16T15:58:16ZStill a teeny typo the Sundayy return.http://stackoverflow.com/questions/140574/buying-a-machine-for-continuous-integration-key-factorsComment by Oddmund on Buying a machine for continuous integration - key factors?Oddmund2008-11-16T11:09:56Z2008-11-16T11:09:56ZNo, I guess here that really means something else.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/170836#170836Comment by Oddmund on What real life bad habits has programming given you?Oddmund2008-11-11T06:36:06Z2008-11-11T06:36:06ZI do that as well. ctrl-X ctrl-s ctrl-x ctrl-c exithttp://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166681#166681Comment by Oddmund on What real life bad habits has programming given you?Oddmund2008-11-11T06:31:30Z2008-11-11T06:31:30ZI never think of K as 1024, not even in the context of computers. Ki(b) on the other hand, is 1024.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164570#164570Comment by Oddmund on What real life bad habits has programming given you?Oddmund2008-11-11T03:57:57Z2008-11-11T03:57:57Z@Mark Slicing a pizza in 10 pieces are far easier.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166075#166075Comment by Oddmund on What real life bad habits has programming given you?Oddmund2008-11-11T03:51:33Z2008-11-11T03:51:33Z(Would the alternative be (like this)?http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/171715#171715Comment by Oddmund on What real life bad habits has programming given you?Oddmund2008-11-11T03:49:53Z2008-11-11T03:49:53ZDon't let your ignorant people make you wrongteach your kids.http://stackoverflow.com/questions/146840/which-language-should-students-start-with/146919#146919Comment by Oddmund on Which language should students start with?Oddmund2008-10-25T21:42:00Z2008-10-25T21:42:00ZI disagree. Teach high level so they learn concepts. Exceptions and namespaces are far easier to get than segfaults and pointers.http://stackoverflow.com/questions/229569/why-do-companies-use-source-safe/229576#229576Comment by Oddmund on Why do companies use Source Safe?Oddmund2008-10-23T13:26:08Z2008-10-23T13:26:08ZEven with the 'quotes' it looks like you're claiming that it's free.http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expectComment by Oddmund on What is the longest human name you can expect?Oddmund2008-10-19T09:02:31Z2008-10-19T09:02:31ZExcellent question.
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182218#182218Comment by Oddmund on What are some funny loading statements to keep users amused?Oddmund2008-10-15T22:50:42Z2008-10-15T22:50:42Z"Waiting for the system admin to hit enter..." is the best one in this thrad.