User Magus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:36:07Zhttp://stackoverflow.com/feeds/user/2188http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288294/bash-shell-scripting-what-simple-logic-am-i-missing/288308#2883080Answer by Magus for Bash Shell Scripting: what simple logic am I missingMagus2008-11-13T21:07:36Z2008-11-13T21:07:36Z<p>You can't use cd in a bash script. You could alias the cd and path though.</p>
<pre><code>alias goto='cd /path_to_work/usr/dir'
</code></pre>
<p>UPDATE: you would put that line in your .bashrc file and then do</p>
<pre><code>source ~/.bashrc
</code></pre>
<p>to create the alias.</p>
http://stackoverflow.com/questions/275439/vmware-and-iptables/279254#2792541Answer by Magus for VMware and iptablesMagus2008-11-10T21:33:42Z2008-11-11T15:13:22Z<p>Your second log line is trying to match packets sent to 10.10.1.33, but you changed the destination address to 192.168.0.33 on the line above it. </p>
<p>I'm not sure why you don't see the outgoing packets in tcpdump yet. I assume you're running tcpdump on the linux VM itself. Is the VM sending packets on the same interface it's receiving, or is there a second virtual ethernet adapter? What machines are the various IP addresses assigned to (other than 10.10.1.33).</p>
<p>Regarding update:
I gather you're not using DHCP (people usually don't bother when using static IP addresses). Also, it sounds like the gateway sees one NIC using two IP addresses. Normally that should be ok, but it's always the details that get you. </p>
<p>Is it possible the gateway will only assign one IP address to the NIC and is ignoring traffic from the VM?</p>
http://stackoverflow.com/questions/263191/in-c-should-i-use-string-empty-or-string-empty-or/263204#2632040Answer by Magus for In C#, should I use string.Empty or String.Empty or "" ?Magus2008-11-04T19:52:04Z2008-11-04T19:52:04Z<p>I think the second is "proper," but to be honest I don't think it will matter. The compiler should be smart enough to compile any of those to the exact same bytecode. I use "" myself.</p>
http://stackoverflow.com/questions/263117/is-ubuntu-an-acceptable-distro-for-running-a-production-server/263173#2631739Answer by Magus for Is Ubuntu an acceptable distro for running a production server?Magus2008-11-04T19:43:16Z2008-11-04T19:43:16Z<p>Nothing strictly disqualifies Ubuntu as a server distro. If I recall, Ubuntu even has a server-oriented variant (Ubuntu Server). The thing that makes Ubuntu less production-ready is that there isn't as much rigorous testing of the software packages and the packages themselves aren't "owned" by someone who is directly responsible for their maintenance. Also, Ubuntu basically just grabs the existing versions in Debian Unstable and polishes them a little before releasing them. </p>
<p>In short: higher chance of buggy unstable software.</p>
<p>I strongly recommend Debian Stable or Testing (Lenny should release next year). The management tools are the same, but there is a lot more care put into making sure released software is reliable. Debian gets a lot of criticism for releasing infrequently, but it is extremely reliable.</p>
http://stackoverflow.com/questions/23376/best-fastest-compression-format-for-sqlserver-databases0Best/fastest compression format for (sqlserver) databases?Magus2008-08-22T20:21:39Z2008-10-08T22:39:31Z
<p>Has anyone found a good compression format for MS Sqlserver databases? If so, what do you use and are you pleased with how it performs? </p>
<p>My company frequently will compress a database snapshot from one of our clients and download it so we have a local copy for testing and dev purposes. We tried zip in the past, but once the database files crossed the 4Gb boundary we had to use rar (zip is 32-bit only). The problem is rar takes a lot of time to compress, and we don't know if it gives us the best compression ratio either.</p>
<p>This isn't a question about the compression utility so much as the compression format. We use WinRar, but are considering 7zip, which supports a number of formats.</p>
http://stackoverflow.com/questions/73629/how-can-i-trim-the-leading-comma-in-my-string/73671#736711Answer by Magus for How can I Trim the leading comma in my string.Magus2008-09-16T15:36:11Z2008-09-16T15:36:11Z<p>Try string.Trim(',') and see if that does what you want.</p>
http://stackoverflow.com/questions/23376/best-fastest-compression-format-for-sqlserver-databases/23551#235510Answer by Magus for Best/fastest compression format for (sqlserver) databases?Magus2008-08-22T21:30:43Z2008-08-22T21:30:43Z<p>Thank you for the responses do far. I'll look into your suggestions and see what fits best.</p>
http://stackoverflow.com/questions/6812/mapping-my-custom-keys-in-debian/20687#206871Answer by Magus for Mapping my custom keys in DebianMagus2008-08-21T18:09:37Z2008-08-21T21:03:22Z<p>Running Debian, I had the same issue. What I did is run xev and see what keycode those keys return. Microsoft likes to break standards a little, so some of the multimedia keys just won't work. But the ones that do will return a keycode. Then write a script with xmodmap to map those keys properly. </p>
<p>The <a href="http://gentoo-wiki.com/HOWTO_Use_Multimedia_Keys" rel="nofollow" title="HOWTO Use Multimedia Keys">Gentoo Wiki</a> has excellent documentation on how to do these things.</p>
<p>I put my xmodmap script in ~/.kde/Autostart/ because I use kde, but you could just as easily put it in your home folder and have your .bashrc or .profile source it. </p>
<p>Once you've mapped the keycodes, you can assign those keys to specific actions in your desktop environment.</p>
http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/18856#1885617Answer by Magus for Best ways to teach a beginner to program?Magus2008-08-20T21:09:00Z2008-08-21T20:58:17Z<p>I recommend Logo (aka the turtle) to get the basic concepts down. It provides a good sandbox with immediate graphical feedback, and you can demostrate loops, variables, functions, conditionals, etc. <a href="http://mckoss.com/logo/" rel="nofollow" title="Learning Logo">This page</a> provides an excellent tutorial. </p>
<p>After Logo, move to Python or Ruby. I recommend Python, as it's based on ABC, which was invented for the purpose of teaching programming. </p>
<p>When teaching programming, I must second EHaskins's suggestion of simple projects and then complex projects. The best way to learn is to start with a definite outcome and a measurable milestone. It keeps the lessons focused, allows the student to build skills and then build on those skills, and gives the student something to show off to friends. Don't underestimate the power of having something to show for one's work.</p>
<p>Theoretically, you can stick with Python, as Python can do almost anything. It's a good vehicle to teach object-oriented programming and (most) algorithms. You can run Python in interactive mode like a command line to get a feel for how it works, or run whole scripts at once. You can run your scripts interpreted on the fly, or compile them into binaries. There are thousands of modules to extend the functionality. You can make a graphical calculator like the one bundled with Windows, or you can make an IRC client, or anything else. </p>
<p><a href="http://xkcd.com/353/" rel="nofollow" title="Python">XKCD</a> describes Python's power a little better:
<img src="http://imgs.xkcd.com/comics/python.png" alt=""You're flying! How?" "Python!"" title="Python" /></p>
<p>You can move to C# or Java after that, though they don't offer much that Python doesn't already have. The benefit of these is that they use C-style syntax, which many (dare I say most?) languages use. You don't need to worry about memory management yet, but you can get used to having a bit more freedom and less handholding from the language interpreter. Python enforces whitespace and indenting, which is nice most of the time but not always. C# and Java let you manage your own whitespace while remaining strongly-typed. </p>
<p>From there, the standard is C or C++. The freedom in these languages is almost existential. You are now in charge of your own memory management. There is no garbage collection to help you. This is where you teach the really advanced algorithms (like mergesort and quicksort). This is where you learn why "segmentation fault" is a curse word. This is where you download the source code of the Linux kernel and gaze into the Abyss. Start by writing a circular buffer and a stack for string manipulation. Then work your way up.</p>
http://stackoverflow.com/questions/20922/do-you-comment-your-code/21039#2103920Answer by Magus for Do you comment your code?Magus2008-08-21T20:12:01Z2008-08-21T20:12:01Z<p>I have learned the hard way to code for the lowest common denominator. That encompasses a lot of behaviors.</p>
<ol>
<li><p>comment blocks of code, not necessarily every line. Explain why the following block (or stanza) of code is written the way it is. Include a date and your initials in the comment, so you know when the comment was put in and who wrote the comment. Try to avoid commentary like "this is stupid" or "I am so darn brilliant" as it really doesn't help, and may be proven wrong in the future. If you use any fancy tricks or do anything that isn't obvious from a quick glance, explain what and why.</p></li>
<li><p>use human-readable variable names. that means avoid single-letter variables like the plague. it's much easier to guess what a loop does if the index variable is called rowIndex than i. Almost every civilized language has a compiler or interpreter that will scrub out variable names before putting your work into machine code, so using cryptic variable names does no one any favors.</p></li>
<li><p>remember that compilers are smart. Very smart. Every modern compiler knows how to optimize loops and other basic things. Writing a complete while-loop on one line may look fancy to you, but it compiles the same and will trip up other people looking at your code (and even yourself if you come back to the code in a few weeks). Avoid fancy language tricks if they make the code less readable.</p></li>
<li><p>adopt a style and stick with it. Always do ifs, loops, etc in the same format (and same indentation). You will be able to spot various features of your code more easily because the same features will look the same. If you make a mistake, it will stand out a little more.</p></li>
</ol>
<p>Doing these things make the code more readable for everyone. Adopting good coding habits reduces dependence on comments, too, so it's a double-win.</p>
http://stackoverflow.com/questions/6979/best-linux-distro-for-computer-repair/20715#207153Answer by Magus for Best Linux Distro for Computer RepairMagus2008-08-21T18:26:38Z2008-08-21T18:26:38Z<p>I swear by <a href="http://www.sysresccd.org/Main_Page" rel="nofollow" title="SystemRescueCd">SystemRescueCd</a>. It offers all the tools you could possibly need to save a system. This includes dd/ddrescue (for drive copying/recovery), parted/GParted (disk partitioning), ntfs-3g (to read/write those pesky ntfs partitions), etc. It has an X server, should you need one, supports network booting, and uses ZSH instead of Bash, so it's a tad faster and will offer to correct mistyped commands. </p>
<p>The x86 build is <= 200 MB. </p>
<p>One other note: it has testdisk, which I have used before to find lost partitions after accidentally nuking the Master Boot Record (MBR). </p>
<p>I also recommend <a href="http://www.grc.com/spinrite.htm" rel="nofollow" title="SpinRite">SpinRite</a>, but it's not free. SpinRite can save almost any malfunctioning hard drive. It's a 200KB floppy disk image that can be run from a CD as well. SpinRite could probably make your malfunctioning hard drive work again. </p>
http://stackoverflow.com/questions/11459/increasing-battery-life-under-linux/20669#206692Answer by Magus for Increasing Battery Life Under LinuxMagus2008-08-21T17:58:27Z2008-08-21T17:58:27Z<p><a href="http://www.lesswatts.org/" rel="nofollow" title="Saving Power on Intel Systems with Linux">Lesswatts.org</a> has a number of tips that will help. akdom mentioned PowerTOP, which will tell you a number of things that will help. The <a href="http://www.gentoo.org/doc/en/power-management-guide.xml" rel="nofollow" title="Power Management Guide">Gentoo Linux Wiki</a> also has a wealth of information that may help you (their documentation is excellent). </p>
<p>I tried a number of things that help a lot. Installing laptop-mode-tools gives you a bunch of options that let you use power-saving options in various applications an modules. Install cpufrequtils and lower your CPU frequency. Using the OnDemand cpugovernor is usually helpful, as it lowers the frequency when the CPU is idle but gives you full speed when you need it. </p>
<p>I also wrote a script that runs on boot that sets some of the kernel tunables (swappiness, virtual memory use, etc) but I don't like to share things like that, lest it do harm to someone else's computer. </p>