User Matthew Scouten - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T18:23:21Z http://stackoverflow.com/feeds/user/8508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/210120/remove-a-symlink-to-a-directory 2 Remove a symlink to a directory Matthew Scouten 2008-10-16T20:18:22Z 2009-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#67222 2 Answer by Matthew Scouten for Using boost-python with C++ in Linux Matthew Scouten 2008-09-15T21:33:38Z 2009-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#1688928 1 Answer by Matthew Scouten for Poll: Does your CTO actually Code? Matthew Scouten 2009-11-06T17:00:56Z 2009-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#422399 0 Answer by Matthew Scouten for Best error names, failures or exceptions. Matthew Scouten 2009-01-07T22:16:11Z 2009-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#223256 604 Answer by Matthew Scouten for What real life bad habits has programming given you? Matthew Scouten 2008-10-21T19:54:17Z 2008-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#281516 2 Answer by Matthew Scouten for Best programming novel to take on holiday Matthew Scouten 2008-11-11T17:11:55Z 2008-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#222164 3 Answer by Matthew Scouten for What is the best comment in source code you have ever encountered? Matthew Scouten 2008-10-21T14:51:00Z 2008-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#197632 2 Answer by Matthew Scouten for What is the most useful script you've written for everyday life? Matthew Scouten 2008-10-13T13:52:41Z 2008-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#183006 138 Answer by Matthew Scouten for What are some funny loading statements to keep users amused? Matthew Scouten 2008-10-08T14:18:02Z 2008-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#115700 3 Answer by Matthew Scouten for How can I consume a WSDL (SOAP) web service in Python? Matthew Scouten 2008-09-22T15:55:07Z 2008-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#96949 0 Answer by Matthew Scouten for What's Your Motto As A Developer/Programmer? Matthew Scouten 2008-09-18T21:04:05Z 2008-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#86910 1 Answer by Matthew Scouten for What should be included in a programmer's code of ethics? Matthew Scouten 2008-09-17T19:48:46Z 2008-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-c 0 Translate C++/CLI to C# Matthew Scouten 2008-09-16T15:55:16Z 2008-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#67340 0 Answer by Matthew Scouten for How do you iterate through every file/directory recursively in standard C++ Matthew Scouten 2008-09-15T21:48:21Z 2008-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#259256 Comment by Matthew Scouten on Etymology of linux commands Matthew Scouten 2009-11-13T20:33:51Z 2009-11-13T20:33:51Z I'v been pronouncing it as fusk http://stackoverflow.com/questions/397125/reading-the-target-of-a-lnk-file-in-python/571573#571573 Comment by Matthew Scouten on Reading the target of a .lnk file in Python? Matthew Scouten 2009-11-13T18:02:30Z 2009-11-13T18:02:30Z Thank 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. +1 http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/1218003#1218003 Comment by Matthew Scouten on Programming texts and reference material for my Kindle DX, creating the ultimate reference device? Matthew Scouten 2009-10-28T14:25:07Z 2009-10-28T14:25:07Z print &quot;hello, World!&quot; 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#223256 Comment by Matthew Scouten on What real life bad habits has programming given you? Matthew Scouten 2009-10-27T19:19:08Z 2009-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#318142 Comment by Matthew Scouten on Ping a site in Python? Matthew Scouten 2009-07-30T02:36:17Z 2009-07-30T02:36:17Z I'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#210133 Comment by Matthew Scouten on Remove a symlink to a directory Matthew Scouten 2009-01-05T21:14:27Z 2009-01-05T21:14:27Z ah yes. that makes sense. I never typed foo, I typed f&lt;tab&gt; and bash filled in a / for me. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/223256#223256 Comment by Matthew Scouten on What real life bad habits has programming given you? Matthew Scouten 2008-12-15T05:24:37Z 2008-12-15T05:24:37Z Understand, 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#299077 Comment by Matthew Scouten on Tricks to staying positive Matthew Scouten 2008-11-18T21:25:40Z 2008-11-18T21:25:40Z Math.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#223256 Comment by Matthew Scouten on What real life bad habits has programming given you? Matthew Scouten 2008-11-13T15:23:06Z 2008-11-13T15:23:06Z peterchen: 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#278536 Comment by Matthew Scouten on What was your biggest *nix blooper? Matthew Scouten 2008-11-10T19:40:41Z 2008-11-10T19:40:41Z Not 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#203370 Comment by Matthew Scouten on What things didn't you know you needed but are now very glad you have? Matthew Scouten 2008-10-17T16:19:50Z 2008-10-17T16:19:50Z A 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#64073 Comment by Matthew Scouten on Confessions of your worst WTF Moment. (What not to do.) Matthew Scouten 2008-10-13T20:22:59Z 2008-10-13T20:22:59Z So 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#175447 Comment by Matthew Scouten on What's the most egregious pop culture perversion of programming? Matthew Scouten 2008-10-08T14:40:56Z 2008-10-08T14:40:56Z But 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#109523 Comment by Matthew Scouten on What not to test when it comes to Unit Testing? Matthew Scouten 2008-09-21T00:14:52Z 2008-09-21T00:14:52Z I 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#83561 Comment by Matthew Scouten on What's Your Motto As A Developer/Programmer? Matthew Scouten 2008-09-18T20:50:11Z 2008-09-18T20:50:11Z Bad Documentation reads like code.