User Matthew Scouten - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:23:21Zhttp://stackoverflow.com/feeds/user/8508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210120/remove-a-symlink-to-a-directory2Remove a symlink to a directoryMatthew Scouten2008-10-16T20:18:22Z2009-12-02T19:24:32Z
<p>I have a symlink to an important directory. I want top get rid of that symlink, while keeping the directory behind it.</p>
<p>I tried 'rm' and get back "rm: cannot remove 'foo'".</p>
<p>I tried 'rmdir' and got back "rmdir: failed to remove 'foo': Directory not empty"</p>
<p>I then progressed through 'rm -f', 'rm -rf' and 'sudo rm -rf'</p>
<p>Then I went to find my back-ups.</p>
<p>Is there a way to get rid of the symlink with out throwing away the baby with the bathwater? </p>
http://stackoverflow.com/questions/67015/using-boost-python-with-c-in-linux/67222#672222Answer by Matthew Scouten for Using boost-python with C++ in LinuxMatthew Scouten2008-09-15T21:33:38Z2009-11-09T20:33:03Z<p>One important Point: -d means debug of course, and should only be linked to a debug build of your project <strong>and can only be used with a debug build of python (OR NOT, SEE BELOW)</strong>. If you try to link a debug lib to a non-debug build, or you try to import a debug pyd into a non-debug python, bad things will happen.</p>
<p>mt means multi-threaded and is orthogonal to d. You probably want to use a mt non-d for your project.</p>
<p>I am afraid I don't know how to tell gcc what to link against (I have been using Visual Studio). One thing to try:</p>
<pre><code>man gcc
</code></pre>
<p>Somewhere that should tell you how to force specific libs on the linker. </p>
<p>EDIT: Actually you can import a debug version of you project into a non-debug build of python. Wherever you included python.h, include boost/python/detail/wrap_python.hpp instead.</p>
http://stackoverflow.com/questions/658196/poll-does-your-cto-actually-code/1688928#16889281Answer by Matthew Scouten for Poll: Does your CTO actually Code?Matthew Scouten2009-11-06T17:00:56Z2009-11-06T17:00:56Z<p>Our CTO codes, but usually not in the primary engineering department. He does some coding for another department that helps our users write to our external API. It helps him stay in touch with the customer needs and with the programming mindset. I think it is ultimately a good thing for the company. </p>
http://stackoverflow.com/questions/405955/best-error-names-failures-or-exceptions/422399#4223990Answer by Matthew Scouten for Best error names, failures or exceptions.Matthew Scouten2009-01-07T22:16:11Z2009-01-07T22:16:11Z<p>I saw an Application throw a "ProgrammerIsStupidException". Apparently it was in response to some kind of can't happen condition. I was never able to reproduce the error.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/223256#223256604Answer by Matthew Scouten for What real life bad habits has programming given you?Matthew Scouten2008-10-21T19:54:17Z2008-12-10T20:45:00Z<p>I try to compress orders at restaurants by giving all necessary information in one packet. This frequently does not work, because the order taker's task buffer is limited to one piece of data at a time.</p>
<p>Fast Food Girl: Can I take your order?</p>
<p>Me: number 6, BBQ, diet cola, debit.</p>
<p>FFG: What dipping sauce would you like?</p>
<p>Me: BBQ, diet cola, debit.</p>
<p>FFG: What would you like to drink?</p>
<p>Me: Diet Cola, debit.</p>
<p>FFG: Is Pepsi OK? </p>
<p>Me: [ponders Abstract Base Classes and the FFG's lack of Polymorphic Behavior] Sure. I'll pay with my debit card.</p>
<p>FFG: And how will you be paying?</p>
<p>Me: [sighs] debit. </p>
http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/281516#2815162Answer by Matthew Scouten for Best programming novel to take on holidayMatthew Scouten2008-11-11T17:11:55Z2008-11-11T17:11:55Z<p><a href="http://www.kuro5hin.org/prime-intellect/mopiidx.html" rel="nofollow">The Metamorphosis of Prime Intellect</a> is an odd but fun story of a post singularity dystopia.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/222164#2221643Answer by Matthew Scouten for What is the best comment in source code you have ever encountered?Matthew Scouten2008-10-21T14:51:00Z2008-10-21T14:51:00Z<pre><code>struct core_unlocker
{
core_unlocker(lock)
{
m_lock = lock
unlock(lock) //Abandon All Locks, Ye Who Enter Core!
}
~core_unlocker()
{
lock(m_lock)
}
private:
Corelock m_lock;
}
</code></pre>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/197632#1976322Answer by Matthew Scouten for What is the most useful script you've written for everyday life?Matthew Scouten2008-10-13T13:52:41Z2008-10-20T15:22:34Z<p>A Quick and Dirty Python script that looked up the DNS for google.com every 5 seconds and beeped once if it succeeded and twice if it failed. </p>
<p>I wrote this during a time when I had to live with a highly flaky home network. It allowed me to instantly know the state of the network even while I was head first under the desk across the room with both hands full of network cable and a flashlight in my mouth. </p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/183006#183006138Answer by Matthew Scouten for What are some funny loading statements to keep users amused?Matthew Scouten2008-10-08T14:18:02Z2008-10-08T14:18:02Z<pre><code>Loading Infinite Monkeys....
Monkey 1....................Loaded
Monkey 2....................Loaded
Monkey 3....................Loaded
Monkey 4....................Loaded
Monkey 5....................Loaded
Monkey 6....................Loaded
Monkey 7....................Loaded
Monkey 8.........
</code></pre>
http://stackoverflow.com/questions/115316/how-can-i-consume-a-wsdl-soap-web-service-in-python/115700#1157003Answer by Matthew Scouten for How can I consume a WSDL (SOAP) web service in Python?Matthew Scouten2008-09-22T15:55:07Z2008-09-22T15:55:07Z<p>Right now, all the SOAP libraries available for python suck. I recommend avoiding SOAP if possible. The last time we where forced to use a SOAP web service from python, we wrote a wrapper in C# that handled the SOAP on one side and spoke COM out the other. </p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/96949#969490Answer by Matthew Scouten for What's Your Motto As A Developer/Programmer?Matthew Scouten2008-09-18T21:04:05Z2008-09-18T21:04:05Z<p>Google knows everything.
StackOverflow knows less, but it's better organized.</p>
http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86910#869101Answer by Matthew Scouten for What should be included in a programmer's code of ethics?Matthew Scouten2008-09-17T19:48:46Z2008-09-17T19:48:46Z<p>Under no circumstances shall an ethical programmer create of or assist the creation of DRM </p>
<p>Response to comment: That's not DRM that's security software for privacy protection. </p>
http://stackoverflow.com/questions/73879/translate-c-cli-to-c0Translate C++/CLI to C#Matthew Scouten2008-09-16T15:55:16Z2008-09-16T17:39:27Z
<p>I have a small to medium project that is in C++/CLI. I really hate the syntax extensions of C++/CLI and I would prefer to work in C#. Is there a tool that does a decent job of translating one to the other?</p>
<p>EDIT: When I said Managed c++ before I apparently meant c++/CLI</p>
http://stackoverflow.com/questions/67273/how-do-you-iterate-through-every-file-directory-recursively-in-standard-c/67340#673400Answer by Matthew Scouten for How do you iterate through every file/directory recursively in standard C++Matthew Scouten2008-09-15T21:48:21Z2008-09-15T21:48:21Z<p>You don't. The c++ standard has no concept of directories. It is up to the implementation to turn a string into a file handle. The contents of that string and what it maps to is OS dependent. Keep in mind that C++ can be used to write that OS, so it gets used at a level where asking how to iterate through a directory is not yet defined (because you are writing the directory management code).</p>
<p>Look at your OS API documentation for how to do this. If you need to be portable, you will have to have a bunch of ifdefs for various OS. </p>
http://stackoverflow.com/questions/258509/etymology-of-linux-commands/259256#259256Comment by Matthew Scouten on Etymology of linux commandsMatthew Scouten2009-11-13T20:33:51Z2009-11-13T20:33:51ZI'v been pronouncing it as fuskhttp://stackoverflow.com/questions/397125/reading-the-target-of-a-lnk-file-in-python/571573#571573Comment by Matthew Scouten on Reading the target of a .lnk file in Python?Matthew Scouten2009-11-13T18:02:30Z2009-11-13T18:02:30ZThank goodness I found this! I was about to give up and write a vbs script and call it from my python script. This is much better. +1http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/1218003#1218003Comment by Matthew Scouten on Programming texts and reference material for my Kindle DX, creating the ultimate reference device?Matthew Scouten2009-10-28T14:25:07Z2009-10-28T14:25:07Zprint "hello, World!"
There! make that 100 times smaller and 1000 times faster.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/223256#223256Comment by Matthew Scouten on What real life bad habits has programming given you?Matthew Scouten2009-10-27T19:19:08Z2009-10-27T19:19:08Z@Coding With Style: I don't CARE weather it's Coke or Pepsi. If I have a choice I will take Coke, but I never seem to have a choice in a restaurant. I get tired of being asked if I want the other one so I order the category (Cola) and expect to get the correct subclass for this place. It never works.http://stackoverflow.com/questions/316866/ping-a-site-in-python/318142#318142Comment by Matthew Scouten on Ping a site in Python?Matthew Scouten2009-07-30T02:36:17Z2009-07-30T02:36:17ZI'm going to register www.this_one_wont_work.com just for kicks and giggles.http://stackoverflow.com/questions/210120/remove-a-symlink-to-a-directory/210133#210133Comment by Matthew Scouten on Remove a symlink to a directoryMatthew Scouten2009-01-05T21:14:27Z2009-01-05T21:14:27Zah yes. that makes sense. I never typed foo, I typed f<tab> and bash filled in a / for me. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/223256#223256Comment by Matthew Scouten on What real life bad habits has programming given you?Matthew Scouten2008-12-15T05:24:37Z2008-12-15T05:24:37ZUnderstand, I am not saying that the FFG is stupid (at least not chronicly). I have worked as a register monkey, so I know all about the acute stupidity that starts to effect one repeating the same task. That does not stop my frustration when others behave like poorly programmed robots.http://stackoverflow.com/questions/298987/tricks-to-staying-positive/299077#299077Comment by Matthew Scouten on Tricks to staying positiveMatthew Scouten2008-11-18T21:25:40Z2008-11-18T21:25:40ZMath.abs(self) + 1 will work even if you are already zero. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/223256#223256Comment by Matthew Scouten on What real life bad habits has programming given you?Matthew Scouten2008-11-13T15:23:06Z2008-11-13T15:23:06Zpeterchen: how on earth does it benefit the company to make them ask questions to which they already know the answer? http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278536#278536Comment by Matthew Scouten on What was your biggest *nix blooper?Matthew Scouten2008-11-10T19:40:41Z2008-11-10T19:40:41ZNot necessarily, you could do sudo rm -rf
That is potentially much worse.http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203370#203370Comment by Matthew Scouten on What things didn't you know you needed but are now very glad you have?Matthew Scouten2008-10-17T16:19:50Z2008-10-17T16:19:50ZA 6th monitor. For a spread sheet to help me manage my monitors.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64073#64073Comment by Matthew Scouten on Confessions of your worst WTF Moment. (What not to do.)Matthew Scouten2008-10-13T20:22:59Z2008-10-13T20:22:59ZSo what command do you use? I tried rm -rf once but, well... let's just say I'm glad I had a fairly recent backup. Now I avoid making symlinks to directories. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175447#175447Comment by Matthew Scouten on What's the most egregious pop culture perversion of programming?Matthew Scouten2008-10-08T14:40:56Z2008-10-08T14:40:56ZBut this is intentional. It's like starting a phone number with 555. It looks good to casual glances, but it won't result in some real world computer becoming a cracking target. http://stackoverflow.com/questions/109432/what-not-to-test-when-it-comes-to-unit-testing/109523#109523Comment by Matthew Scouten on What not to test when it comes to Unit Testing?Matthew Scouten2008-09-21T00:14:52Z2008-09-21T00:14:52ZI find that the stuff that cannot possibly break is where the hardest to find errors are. I wonder why?http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/83561#83561Comment by Matthew Scouten on What's Your Motto As A Developer/Programmer?Matthew Scouten2008-09-18T20:50:11Z2008-09-18T20:50:11ZBad Documentation reads like code.