User TheMarko - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:33:55Zhttp://stackoverflow.com/feeds/user/31099http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881757/what-is-the-best-portable-and-maintanable-shell-scripting-language-today/881814#8818142Answer by TheMarko for What is the best (portable and maintanable) Shell Scripting language today?TheMarko2009-05-19T09:33:14Z2009-05-19T09:33:14Z<p>I would expect BASH to be the widest spread shell at the moment since it is the default for many Linux distributions (it can even run on Windows with cygwin, but that's probably true for the other shells, too).
An alternative might be to not use the shell itself for scripting but one of the scriping languages out there like perl, python, ruby, ...</p>
http://stackoverflow.com/questions/576714/do-file-with-extension-bat-can-run-in-linux/576811#5768110Answer by TheMarko for do file with extension .bat can run in linuxTheMarko2009-02-23T07:39:00Z2009-02-23T07:39:00Z<p>In some cases programs ship with different start scripts for different operating system. For example there might be a <em>start.bat</em> and a <em>start.sh</em> (or sometimes only <em>start</em>). If this is the case you might need to make the said start script exectuable (if this is not already the case) with the command</p>
<pre><code>chmod 755 start.sh
</code></pre>
<p>after that, you can run the script with </p>
<pre><code>./start.sh
</code></pre>
<p>from the directory it is in.
This is often the case for java programs that come with a start script to set environment variables before etc. before the program is run.
However, if there is only a <em>start.bat</em> you might be out of luck and need a dos emulator like DosBox or Bochs, or, in case it is indeed a windows program, you could try running it in Wine or inside a <em>real</em> Windows installation in a virtual machine like VirtualBox or any of the competitors.</p>
http://stackoverflow.com/questions/393510/would-you-recommend-java-glassfish-metro-for-brand-new-project/393750#3937500Answer by TheMarko for Would you recommend Java/Glassfish/Metro for brand-new project?TheMarko2008-12-26T13:10:52Z2008-12-26T13:10:52Z<p>I would guess that both suggestions fit your needs equally good. So when you are more familiar with the .NET tools and libraries you should stick to that since there is not much value in learning two things that do (about) the same. Specially when those things are as complex.</p>
http://stackoverflow.com/questions/378115/what-are-some-good-haskell-primers-tutorials-for-beginners/378231#3782316Answer by TheMarko for What are some good Haskell Primers/Tutorials for beginners?TheMarko2008-12-18T15:43:39Z2008-12-18T15:43:39Z<p>There's also <a href="http://www.cs.utah.edu/~hal/htut/" rel="nofollow">Yet Another Haskell Tutorial</a> and <a href="http://www.haskell.org/tutorial/" rel="nofollow">A Gentle Introduction to Haskell</a></p>
http://stackoverflow.com/questions/377082/how-long-does-it-take-for-you-to-be-comfortable-with-haskell/377271#3772715Answer by TheMarko for How long does it take for you to be comfortable with Haskell?TheMarko2008-12-18T08:58:48Z2008-12-18T08:58:48Z<p>The point is not to write fast Haskell code, but to write Haskell code fast. When you get there and you need to make your code fast(er), start optimizing (or use the FFI, you don't have to forget your C++ skills). In Haskell you are looking for elegance, reliability and maintainability first. I'd add profiling to my Haskell-fu, so you don't waste time optimizing that which is not used. And remember not to optimize prematurely.</p>
http://stackoverflow.com/questions/377093/how-do-you-do-generic-programming-in-haskell/377200#3772006Answer by TheMarko for How do you do generic programming in Haskell?TheMarko2008-12-18T08:28:06Z2008-12-18T08:28:06Z<p>As Earwicker sais, the example is not as meaningful in Haskell. If you absolutely want to have it anyway, here is something similar (swapping the two parts of a pair), c&p from an interactive session:</p>
<pre><code>GHCi, version 6.8.2: http://www.haskell.org/ghc/ :? for help
Loading package base ... linking ... done.
Prelude> let swap (a,b) = (b,a)
Prelude> swap("hello", "world")
("world","hello")
Prelude> swap(1,2)
(2,1)
Prelude> swap("hello",2)
(2,"hello")
</code></pre>
http://stackoverflow.com/questions/376955/would-you-not-hire-a-programmer-because-of-excessive-game-playing-outside-of-work/377080#3770801Answer by TheMarko for Would you not hire a programmer because of excessive game playing outside of work?TheMarko2008-12-18T06:57:51Z2008-12-18T06:57:51Z<p>In an ideal world maybe one's hobbies shouldn't influence the decision of the interviewer. However, when <strong>i</strong> had to choose i'd prefer someone who excessivly writes code in his spare time to someone who excessivly plays WoW (or anything else). Unless i'd own a game company and needed testers.</p>
http://stackoverflow.com/questions/376968/convert-haskell-int-with-leading-zero-to-string/377069#3770692Answer by TheMarko for Convert haskell Int with leading zero to StringTheMarko2008-12-18T06:49:45Z2008-12-18T06:49:45Z<p>Depending on what you are planning to do you might want to store the "08" as a string and only convert to int when you need the value.</p>
http://stackoverflow.com/questions/274948/time-machine-for-windows/274959#2749591Answer by TheMarko for Time Machine for Windows?TheMarko2008-11-08T17:23:24Z2008-11-08T17:23:24Z<p>Time Machine is a somewhat ordinary backup / restore solution. Use any Windows backup tool with automated daily incremental backups and you have pretty much the same. However, even if it is possible to restore previous (daily) states it may not the fastest solution.</p>
http://stackoverflow.com/questions/273048/how-to-determine-the-last-business-day-in-a-given-month/273189#2731890Answer by TheMarko for How to determine the last business day in a given month?TheMarko2008-11-07T18:55:41Z2008-11-07T18:55:41Z<p>Be sure to not forget public holidays. Those make it a little harder since there are lots of regional differences and are mostly not given by a simple formula. You may need to look them up somewhere or make a table with the dates yourself.</p>
http://stackoverflow.com/questions/264681/in-a-java-thread-running-as-root-how-can-we-apply-unix-rights-specific-to-a-logg/264735#2647350Answer by TheMarko for In a Java thread running as root, how can we apply Unix rights specific to a logged-in user ?TheMarko2008-11-05T10:00:29Z2008-11-05T10:00:29Z<p>If everything else fails, you can run a shellscript from java and parse the result.</p>
<p>Described for example <a href="http://www.devx.com/tips/Tip/14667" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/258901/how-does-the-sun-jvm-map-java-threads-to-windows-threads/258964#2589642Answer by TheMarko for How does the Sun JVM map Java threads to Windows threads?TheMarko2008-11-03T15:19:08Z2008-11-03T15:38:52Z<p>Don't have a document for you, but from the Threads column in the task-manager you can pretty reliably guess that it maps 1:1 to native threads (you need to enable the Threads column in the task manger first).</p>
<p>Oh, almost forgot, you can download the jdk src <a href="https://jdk6.dev.java.net/" rel="nofollow">here</a> and look yourself.</p>
http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/253321#2533213Answer by TheMarko for Create a cross platform Windows, Mac OS X applicationTheMarko2008-10-31T12:29:04Z2008-10-31T12:29:04Z<p>The upcoming QT-Creator might be worth a look: <a href="http://trolltech.com/developer/qt-creator" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/243616/visualization-tools-for-huge-graphs/243751#2437510Answer by TheMarko for Visualization Tools for Huge GraphsTheMarko2008-10-28T15:31:43Z2008-10-28T15:31:43Z<p>There is <a href="http://www.ogdf.net/ogdf.php" rel="nofollow">Open Graph Drawing Framework</a> if you want to code something in C++ yourself and the community edition of the <a href="http://www.oreas.com/gde_en.php" rel="nofollow">GoVisual Editor</a> of the commercial GoVisual libraries.</p>
http://stackoverflow.com/questions/242538/unix-shell-script-find-out-which-directory-the-script-file-resides/242550#24255012Answer by TheMarko for unix shell script find out which directory the script file resides?TheMarko2008-10-28T08:26:03Z2008-10-28T08:27:07Z<p>In bash you should get what you need like this:</p>
<pre><code>#!/bin/bash
BASEDIR=`dirname $0`
echo $BASEDIR
</code></pre>
http://stackoverflow.com/questions/210214/learning-java-swing/237125#2371250Answer by TheMarko for Learning Java Swing?TheMarko2008-10-25T22:33:17Z2008-10-25T22:33:17Z<p>Just another book recommendation:
Java Swing by Matthew Robinson und Pavel Vorobiev</p>
<p>It's the only book i read on Swing so far so i can't compare it to the other ones. On the other hand it's the only book i needed so far, so it can't be bad.</p>
http://stackoverflow.com/questions/235560/how-do-you-detect-low-memory-situations-within-the-java-virtual-machine/235662#2356621Answer by TheMarko for How do you detect low memory situations within the java virtual machine?TheMarko2008-10-25T00:08:47Z2008-10-25T00:08:47Z<p>Have a look at the freeMemory method of Runtime (see <a href="http://java.sun.com/javase/6/docs/api/java/lang/Runtime.html" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/lang/Runtime.html</a> for details)</p>
<p>In short:
do </p>
<p>Runtime.getRuntime().freeMemory()</p>
http://stackoverflow.com/questions/234906/whats-the-purpose-of-the-nop-opcode/235075#2350751Answer by TheMarko for What's the purpose of the nop opcode?TheMarko2008-10-24T20:03:31Z2008-10-24T20:03:31Z<p>I've also seen NOPs in code that modifies itself to obfuscate what it does as a placeholder (veeery old copy protection).</p>
http://stackoverflow.com/questions/233903/how-can-i-convince-my-boss-to-buy-books-for-programmers/233984#2339842Answer by TheMarko for How can I convince my boss to buy books for programmers?TheMarko2008-10-24T15:17:37Z2008-10-24T15:17:37Z<p>Just tell your boss how the book relates to what you are doing in that company. If it's not related, you should buy it yourself anyway (and read in your private time). If the book would actually help you save time and/or improve the project and your boss still refuses to buy it for you anyway, change bosses...</p>
http://stackoverflow.com/questions/233258/is-there-an-acceptable-limit-for-memory-leaks/233413#2334131Answer by TheMarko for Is there an acceptable limit for memory leaks?TheMarko2008-10-24T12:56:25Z2008-10-24T12:56:25Z<p>Firstable memory leaks are only a serious problem when they grow with time, otherwise the app just looks a little bigger from the outside (obviously there's a limit here too, hence the 'serious').
When you have a leak that grows with time you might be in trouble. How much trouble depends on the circumstances though. If you <em>know</em> where the memory is going and can make sure that you'll always have enough memory to run the program and everything else on that machine you are still somewhat fine.
If you don't know where the memory is going however, i wouldn't ship the program and keep digging.</p>
http://stackoverflow.com/questions/233148/c-pointers-and-arrays-question/233260#2332602Answer by TheMarko for C: Pointers and Arrays QuestionTheMarko2008-10-24T12:18:38Z2008-10-24T12:18:38Z<p>Please keep in mind that execution speed is hard to predict even when looking at the machine code with superscalar cpus and the like with</p>
<ul>
<li>out of order exection</li>
<li>pipelining</li>
<li>branch prediction</li>
<li>hyperthreading</li>
<li>...</li>
</ul>
<p>It's not just counting machine instructions and not even only counting clock cylces.
Seems easier just to measure in cases where really necessary. Even if it's not impossible to calculate the correct cycle count for a given program (we had to do it in university) but it's hardly fun and hard to get right.
Sidenote: Measuring correctly is also hard in multithreaded / mulit-processor environments.</p>
http://stackoverflow.com/questions/233148/c-pointers-and-arrays-question/233225#2332254Answer by TheMarko for C: Pointers and Arrays QuestionTheMarko2008-10-24T12:02:20Z2008-10-24T12:02:20Z<p>This might be a bit off topic (sorry) because it doesn't answer your question regarding execution speed, but you should consider that <em>premature optimization is the root of all evil</em> (Knuth). In my opinion, specially when still (re)learning the language, by all means write it the way it is easiest to read first.
Then, if your program runs <strong>correct</strong>, consider optimizing speed.
Most of the time you code will be fast enough anyway.</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/232802#2328020Answer by TheMarko for What's the next thing on your list to learn?TheMarko2008-10-24T08:07:07Z2008-10-24T08:07:07Z<p>I started learning <strong>Haskell</strong> and so far it's real fun. I must admit it takes some time to get used to it (20 years of imperative coding getting in the way) but even the most trivial programs are pretty rewarding when they compile the first time (and run as expected!). I pretty much feel like the young me learning his first programming language again...
The other big topic for me at the moment is <strong>design</strong>, i think there's a lot to learn for many programmers.</p>
http://stackoverflow.com/questions/377093/how-do-you-do-generic-programming-in-haskell/377200#377200Comment by TheMarko on How do you do generic programming in Haskell?TheMarko2008-12-18T09:42:16Z2008-12-18T09:42:16ZIf you want to operate on big tables of state you probably don't want to be using functional programming in the first place. If you absolutely need to, there's IORef and the state monad to perform calculations which maintain a state. http://stackoverflow.com/questions/377093/how-do-you-do-generic-programming-in-haskell/377200#377200Comment by TheMarko on How do you do generic programming in Haskell?TheMarko2008-12-18T08:32:30Z2008-12-18T08:32:30ZPleas keep in mind, that this doesn't actually swap the values but returns a new pair (since the original pair is immutable).http://stackoverflow.com/questions/242538/unix-shell-script-find-out-which-directory-the-script-file-resides/242557#242557Comment by TheMarko on unix shell script find out which directory the script file resides?TheMarko2008-10-28T08:37:46Z2008-10-28T08:37:46ZNo harm done and the $() is still a valid point :)http://stackoverflow.com/questions/242538/unix-shell-script-find-out-which-directory-the-script-file-resides/242557#242557Comment by TheMarko on unix shell script find out which directory the script file resides?TheMarko2008-10-28T08:35:30Z2008-10-28T08:35:30ZI agree with goodwill. +1