User Oddmund - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:09:38Z http://stackoverflow.com/feeds/user/4417 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related/855665#855665 0 Answer by Oddmund for Markdown vs markup - are they related? Oddmund 2009-05-13T01:27:05Z 2009-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#848010 5 Answer by Oddmund for Merging only modified files using Git Oddmund 2009-05-11T13:02:48Z 2009-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#372051 0 Answer by Oddmund for Do you have a hobby development project? Oddmund 2008-12-16T17:35:19Z 2008-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-factors 7 Buying a machine for continuous integration - key factors? Oddmund 2008-09-26T16:33:36Z 2008-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#237040 0 Answer by Oddmund for Keeping track of opensource/freeweare/plugins/etc. Oddmund 2008-10-25T21:28:12Z 2008-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#181025 7 Answer by Oddmund for What is tempuri.org? Oddmund 2008-10-08T01:05:26Z 2008-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#131757 3 Answer by Oddmund for What's the easiest way to add a quote box to mediawiki? Oddmund 2008-09-25T06:47:16Z 2008-09-26T00:31:47Z <p>Actually, this is a better way to do it:</p> <pre><code>&lt;blockquote style="background-color: lightgrey; border: solid thin grey;"&gt; Det er jeg som kjenner hemmeligheten din. Ikke et pip, gutten min. &lt;/blockquote&gt; </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#130583 3 Answer by Oddmund for What's a good free bug tracker for a small shop Oddmund 2008-09-24T23:27:54Z 2008-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#130405 3 Answer by Oddmund for Which chemical stimulation do you require while coding? Oddmund 2008-09-24T22:46:56Z 2008-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#106346 1 Answer by Oddmund for what is an ideal variable naming convention for loop variables? Oddmund 2008-09-19T23:19:46Z 2008-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#102204 7 Answer by Oddmund for Do you have unit testing in your projects? Oddmund 2008-09-19T14:20:40Z 2008-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#99378 9 Answer by Oddmund for PHP Associative arrays to and from XML Oddmund 2008-09-19T03:44:52Z 2008-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#99092 2 Answer by Oddmund for What's Your Motto As A Developer/Programmer? Oddmund 2008-09-19T02:53:45Z 2008-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#61712 3 Answer by Oddmund for Switching editors in Eclipse with keyboard, rather than switching Design/Source Oddmund 2008-09-14T23:07:15Z 2008-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#109455 Comment by Oddmund on Best git repository hosting for commercial project? Oddmund 2009-08-27T10:58:38Z 2009-08-27T10:58:38Z -1 for being wrong about github. http://stackoverflow.com/questions/847950/merging-only-modified-files-using-git/848010#848010 Comment by Oddmund on Merging only modified files using Git Oddmund 2009-05-11T14:19:44Z 2009-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#157336 Comment by Oddmund on Do you have a hobby development project? Oddmund 2008-12-16T17:16:13Z 2008-12-16T17:16:13Z Yay for roguelike developing. A roguelike is the perfect hobby project. http://stackoverflow.com/questions/39029/is-latex-used-outside-mathematics-and-academia/159057#159057 Comment by Oddmund on Is LaTeX used outside mathematics and academia? Oddmund 2008-12-14T03:14:02Z 2008-12-14T03:14:02Z Yeah, 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#237476 Comment by Oddmund on What coding mistakes are a telltale giveaway of an inexperienced programmer? Oddmund 2008-11-16T15:58:16Z 2008-11-16T15:58:16Z Still a teeny typo the Sundayy return. http://stackoverflow.com/questions/140574/buying-a-machine-for-continuous-integration-key-factors Comment by Oddmund on Buying a machine for continuous integration - key factors? Oddmund 2008-11-16T11:09:56Z 2008-11-16T11:09:56Z No, I guess here that really means something else. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/170836#170836 Comment by Oddmund on What real life bad habits has programming given you? Oddmund 2008-11-11T06:36:06Z 2008-11-11T06:36:06Z I do that as well. ctrl-X ctrl-s ctrl-x ctrl-c exit http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166681#166681 Comment by Oddmund on What real life bad habits has programming given you? Oddmund 2008-11-11T06:31:30Z 2008-11-11T06:31:30Z I 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#164570 Comment by Oddmund on What real life bad habits has programming given you? Oddmund 2008-11-11T03:57:57Z 2008-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#166075 Comment by Oddmund on What real life bad habits has programming given you? Oddmund 2008-11-11T03:51:33Z 2008-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#171715 Comment by Oddmund on What real life bad habits has programming given you? Oddmund 2008-11-11T03:49:53Z 2008-11-11T03:49:53Z Don't let your ignorant people make you wrongteach your kids. http://stackoverflow.com/questions/146840/which-language-should-students-start-with/146919#146919 Comment by Oddmund on Which language should students start with? Oddmund 2008-10-25T21:42:00Z 2008-10-25T21:42:00Z I 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#229576 Comment by Oddmund on Why do companies use Source Safe? Oddmund 2008-10-23T13:26:08Z 2008-10-23T13:26:08Z Even 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-expect Comment by Oddmund on What is the longest human name you can expect? Oddmund 2008-10-19T09:02:31Z 2008-10-19T09:02:31Z Excellent question. http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182218#182218 Comment by Oddmund on What are some funny loading statements to keep users amused? Oddmund 2008-10-15T22:50:42Z 2008-10-15T22:50:42Z &quot;Waiting for the system admin to hit enter...&quot; is the best one in this thrad.