User Lucas McCoy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:36:22Z http://stackoverflow.com/feeds/user/56555 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/804337/a-hacking-game-for-programmers 16 A hacking game for programmers? Lucas McCoy 2009-04-29T21:21:52Z 2009-11-26T23:21:11Z <p>Are there any games that I can play that allow me to use things I've learned while programming to hack (not for real, just in the game). I found <a href="http://www.slavehack.com/" rel="nofollow">Slavehack</a> but don't really like it; does anyone know of any others? </p> http://stackoverflow.com/questions/1674030/textpad-questions/1674137#1674137 4 Answer by Lucas McCoy for TextPad Questions! Lucas McCoy 2009-11-04T14:36:40Z 2009-11-04T14:36:40Z <p>I used to use TextPad all the time. It's a very good text editor, but it's lacking some of the features that you want. </p> <p>I personally think you'll like <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> a lot better. <strong>It's free</strong> and open source. Also if you download the plugin for XML Support you will get lots of features for <a href="http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin%5FCentral" rel="nofollow">XML editing</a> like:</p> <ul> <li>XML syntax Check</li> <li>XML Schema (XSD) + DTD Validation</li> <li>XML tag autoclose</li> <li>Pretty print</li> <li>Linearize XML</li> <li>Current XML Path</li> <li>Conversion XML &lt;-> Text</li> <li>Comment / Uncomment</li> <li>XPath expression evaluation</li> </ul> http://stackoverflow.com/questions/1671838/is-it-good-to-add-line-height-in-body/1671853#1671853 2 Answer by Lucas McCoy for Is it good to add `line-height` in body? Lucas McCoy 2009-11-04T05:35:24Z 2009-11-04T05:35:24Z <p>It just depends. If you put it in the body then you get to be lazy and not worry about ever doing it again, but your going to lose control because everything on the page will have the <code>line-height</code> set to 1.5. Whereas if you declared it in each tag, you gain lots of control, but will have to do more work. </p> <p>Personally I would go for the tag-by-tag solution, but I'm a control freak, so...</p> http://stackoverflow.com/questions/1025468/where-can-i-find-a-good-robocode-tutorial 4 Where can I find a good Robocode tutorial? Lucas McCoy 2009-06-22T04:37:03Z 2009-11-02T18:27:21Z <p>I have really enjoyed playing <a href="http://robocode.sourceforge.net/" rel="nofollow">Robocode</a> with my first robot. Now I want to make something a little more exciting. What's the best tutorial on making advanced robots?</p> http://stackoverflow.com/questions/1661604/globus-installation-guide/1661673#1661673 1 Answer by Lucas McCoy for Globus installation guide Lucas McCoy 2009-11-02T14:38:59Z 2009-11-02T14:38:59Z <p>How about the one from their website? <a href="http://globus.org/toolkit/docs/3.2/installation/" rel="nofollow">The Globus Toolkit Installation Guide</a>.</p> http://stackoverflow.com/questions/1169345/net-micro-framework-tutorials 5 .NET Micro Framework Tutorials? Lucas McCoy 2009-07-23T02:51:26Z 2009-11-02T02:15:30Z <p>I can't really seem to find any good .NET Micro Framework Tutorials on google. Does anyone know of any?</p> http://stackoverflow.com/questions/1655551/learning-programming-language-from-a-book/1655562#1655562 4 Answer by Lucas McCoy for Learning programming language from a book Lucas McCoy 2009-10-31T20:40:30Z 2009-10-31T20:40:30Z <p>The best way to learn is to write code. Architects learn by studying buildings but there aren't very useful if the never build anything. </p> <p>It seems like the hardest thing for me to do when I was reading my first programming book was to actually write my own code. How did I solve this problem? <strong>I read another book!</strong> Except this one made me think, not memorize. It's called <a href="http://cc2e.com/" rel="nofollow">Code Complete</a>. After I read the first few chapters, I actually started programming for the first time. </p> http://stackoverflow.com/questions/1646570/is-there-a-bug-encyclopedia/1646695#1646695 1 Answer by Lucas McCoy for Is there a Bug Encyclopedia? Lucas McCoy 2009-10-29T21:32:25Z 2009-10-29T21:32:25Z <p>This ones kind of funny (if you have a cynical sense of humor):</p> <blockquote> <p><a href="http://royal.pingdom.com/2009/03/19/10-historical-software-bugs-with-extreme-consequences/" rel="nofollow">10 Historical Software Bugs with Extreme Consequences</a></p> </blockquote> http://stackoverflow.com/questions/742742/should-i-use-properties-in-my-c-programs-or-should-i-use-get-set-accessors 3 Should I use properties in my C# programs or should I use get/set accessors? Lucas McCoy 2009-04-13T00:59:33Z 2009-10-29T21:25:05Z <p>I was reading a book called C# Yellow Book by Rob Miles when I came across this statement:</p> <blockquote> <p>Programmer’s love new shiny toys. They are very keen to use language features to show off. Properties can be a bit like this. When considering properties versus get and set methods I am rather a fan of the old fashioned get and set methods because you know where you are with these. On the other hand I can see where properties might make life easier, if used in the correct way.</p> </blockquote> <p>I'm not really sure what he means by this. What do you guys suggest? What does MS suggest?</p> http://stackoverflow.com/questions/1605006/making-a-windows-exe-with-gui2exe-does-not-work-because-of-missing-msvcp90-dll 2 Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll Lucas McCoy 2009-10-22T04:20:01Z 2009-10-22T04:50:28Z <p>I'm trying to compile my python script into a single .exe using gui2exe (which uses py2exe to create a .exe). My program is using wxWidgets and everytime I try to compile it I get the following error message:</p> <blockquote> <p>error MSVCP90.dll: No such file or directory. </p> </blockquote> <p>I have already downloaded and installed the VC++ redistributable package, so I should have this .dll shouldn't I? </p> http://stackoverflow.com/questions/645050/best-objective-c-tutorial 1 Best Objective-C tutorial? Lucas McCoy 2009-03-14T00:18:17Z 2009-10-21T18:35:18Z <p>What is the best way to learn Objective-C on linux (man I wish I had a mac)? I know C/C++ pretty well and have always wanted to learn Objective-C becuase of the ability to make iPhone apps (if I had a mac). So where do I start?</p> http://stackoverflow.com/questions/1570418/if-i-use-html-5s-doctype-what-will-happen/1570477#1570477 4 Answer by Lucas McCoy for If I use HTML 5's DocType what will happen? Lucas McCoy 2009-10-15T05:39:27Z 2009-10-15T05:39:27Z <p>Basically what will happen is that you'll get your page rendered in a "standards mode". </p> <p>The only reason why you probably shouldn't use the new DOCTYPE is if you want to use XHTML 1.0 markup and conform to XHTML 1.0. </p> <p>The downside to using HTML5 now is that the spec can change. This makes it important for you to keep up with the spec as it actively changes.</p> <p>With that being said, I've already started using the new syntax in my pages. Also it guarantees that your page will <em><a href="http://ejohn.org/blog/html5-doctype/" rel="nofollow">last for a very, very, long time</a></em>. </p> <p>So go ahead, use it (<strong>and learn to love how simple it is</strong>). </p> http://stackoverflow.com/questions/1564515/how-to-eject-the-cd-drive-on-linux-using-c 2 How to eject the CD Drive on Linux using C? Lucas McCoy 2009-10-14T06:10:23Z 2009-10-14T06:30:08Z <p>I was reading through this <a href="http://www.advancedlinuxprogramming.com/" rel="nofollow">Advanced Linux Programming</a> tutorial when I encountered a problem. I was trying to eject the CD-ROM drive using this code:</p> <pre><code>int fd = open(path_to_cdrom, O_RDONLY); // Eject the CD-ROM drive ioctl(fd, CDROMEJECT); close(fd); </code></pre> <p>Then I try to compile this code and get the following output:</p> <pre><code>In file included from /usr/include/linux/cdrom.h:14, from new.c:2: /usr/include/asm/byteorder.h: In function ‘___arch__swab32’: /usr/include/asm/byteorder.h:19: error: expected ‘)’ before ‘:’ token /usr/include/asm/byteorder.h: In function ‘___arch__swab64’: /usr/include/asm/byteorder.h:43: error: expected ‘)’ before ‘:’ token </code></pre> <p>So what am I doing wrong?</p> http://stackoverflow.com/questions/668576/is-objective-c-on-linux-garbage-collected 3 Is Objective-C on Linux garbage collected? Lucas McCoy 2009-03-21T01:53:24Z 2009-10-12T16:34:40Z <p>Objective-C v2.0 (which is what the mac uses) got a new feature, Garbage Collection. I'm a kid on a Linux PC (Ubuntu in case your wondering). So my question is, using the gcc/g++ compiler is Objective-C Garbage Collected?</p> http://stackoverflow.com/questions/1549949/segmentation-fault-only-when-i-redirect-stdout-to-dev-null/1549966#1549966 5 Answer by Lucas McCoy for Segmentation fault only when I redirect stdout to /dev/null ? Lucas McCoy 2009-10-11T05:47:19Z 2009-10-11T05:47:19Z <p>This doesn't exactly answer your question, but it could. Have you tried using <a href="http://www.gnu.org/software/gdb/" rel="nofollow">gdb</a>? It's a command-line debugging tool that can find where segfaults are occurring. It's fairly easy to use. <a href="http://www.delorie.com/gnu/docs/gdb/gdb%5Ftoc.html" rel="nofollow">Here is a pretty in-depth tutorial on how to use it.</a> </p> http://stackoverflow.com/questions/636865/whats-the-best-programming-language-to-use-on-a-sucky-computer 4 What's the best programming language to use on a sucky computer? Lucas McCoy 2009-03-12T00:08:40Z 2009-10-08T18:10:12Z <p>I have a computer with 128 MB's of RAM (I said it was a piece of crap). It runs Windows XP Professional (slugishly). I don't have to use this computer except at night time when I'm supposed to be in bed, around 1:00 - 4:00 AM. So what is the best programming language / compiler to use? Which is the least RAM dependent. </p> http://stackoverflow.com/questions/510319/programming-skill-tester-problem-v2-0 1 Programming Skill Tester (Problem) v2.0 Lucas McCoy 2009-02-04T06:50:39Z 2009-10-08T04:24:52Z <p>If you haven't read the <a href="http://stackoverflow.com/questions/510138/programming-skill-tester-problem">first</a> problem do so know to catch up to speed. Now then, how do I go about clearing these check boxes? I tried using the same approach that @colithium told me to use for checking the state of all the check boxes, but when I ran the program and clicked clear I got the following runtime error:</p> <p>Unable to cast object of type 'System.Windows.Forms.Button' to type 'System.Windows.Forms.CheckBox'.</p> http://stackoverflow.com/questions/1535136/c-framework-like-qt/1535158#1535158 7 Answer by Lucas McCoy for C framework like Qt ? Lucas McCoy 2009-10-08T01:35:22Z 2009-10-08T03:31:58Z <p>It's called <a href="http://www.gtk.org/index.php" rel="nofollow">GTK+ (Gimp ToolKit)</a>. Its actully quite nice to use, and any program that you write using it will also work on KDE! It's syntax is also pretty nice (for C). It's syntax is very close to Qt's (<a href="http://library.gnome.org/devel/gtk-tutorial/2.17/c39.html#SEC-HELLOWORLD" rel="nofollow">see for yourself in this tutorial</a>). </p> http://stackoverflow.com/questions/1247964/how-do-you-know-how-much-space-to-allocate-with-malloc 2 How do you know how much space to allocate with malloc()? Lucas McCoy 2009-08-08T04:22:50Z 2009-10-07T23:38:01Z <p>I'm a total C newbie, I come from C#. I've been learning about memory management and the <code>malloc()</code> function. I've also came across this code:</p> <pre><code>char *a_persons_name = malloc(sizeof(char) + 2); </code></pre> <p>What I don't understand is how much space this is allocating for <code>a_persons_name</code>. Is it allocating 2 characters (eg. AB) or something else? </p> <p>I also know that you can sometimes get "lucky" with <code>malloc</code> and use unallocated space (which can result in data corruption and seg faults). So how do I know how much space I'm allocating and how much I will need?</p> http://stackoverflow.com/questions/1527301/how-can-i-track-down-a-segmentation-fault-in-a-cocoa-application/1527310#1527310 0 Answer by Lucas McCoy for How can I track down a segmentation fault in a Cocoa application? Lucas McCoy 2009-10-06T18:36:16Z 2009-10-06T18:47:56Z <p>The way I do it is by using a command line tool called <code>gdb</code>. <a href="http://www.cprogramming.com/debugging/segfaults.html" rel="nofollow">Here</a> is a tutorial on how to use it. You'll have to learn a few of it's commands, but once you do it's almost a pleasure to use. </p> <p>Note: <code>gbd</code> can be used on C, C++, and Objective-C programs. </p> http://stackoverflow.com/questions/1521646/best-profanity-filter/1521693#1521693 2 Answer by Lucas McCoy for Best Profanity Filter? Lucas McCoy 2009-10-05T18:35:07Z 2009-10-05T18:35:07Z <p>Check out <a href="http://kickjava.com/src/org/nemesis/forum/filter/FilterProfanity.java.htm" rel="nofollow">this Open Source profanity filter</a> from <a href="http://www.kickjava.com" rel="nofollow">KickJava.com</a>. It'll replace a bad word with something similar to $%@!</p> http://stackoverflow.com/questions/1516720/git-gui-client-for-linux/1516777#1516777 1 Answer by Lucas McCoy for Git gui client for Linux Lucas McCoy 2009-10-04T16:19:27Z 2009-10-04T16:45:13Z <p>Actually there is a GUI client for Git (and I bet you'll never guess it's name), <a href="http://www.kernel.org/pub/software/scm/git/docs/git-gui.html" rel="nofollow">Git-GUI</a>. </p> <p>If your using a Debian-based distro of Linux (eg. Ubuntu) you can install it by typing this:</p> <p><code>sudo apt-get install git-gui</code></p> http://stackoverflow.com/questions/1515640/would-it-be-possible-to-have-a-compiler-that-would-predict-every-possible-situat/1515660#1515660 0 Answer by Lucas McCoy for Would it be possible to have a compiler that would predict every possible 'situation specific' runtime error? Lucas McCoy 2009-10-04T05:13:04Z 2009-10-04T05:13:04Z <p>This doesn't exist anywhere that I know of (<em>yet</em>). However I really like the idea of <em>humanized</em> error messages:</p> <p><code>You know, if this becomes a null value you are really going to be screwed.</code></p> <p><strong>As to whether or not this is feasible:</strong> I would say that in time anything could happen, so who really knows (and who am I to predict the future). </p> <p><strong>Is it valuable:</strong> <strong>YEAH!</strong> It would be a <strong>huge</strong> time saver and if it did what you said, by coming up with exception handling, it would be one of the most useful tools ever. <strong>EVER!!!</strong> </p> http://stackoverflow.com/questions/1515562/how-do-i-create-a-restricted-appdomain/1515596#1515596 3 Answer by Lucas McCoy for How do I create a restricted AppDomain? Lucas McCoy 2009-10-04T04:32:40Z 2009-10-04T04:32:40Z <p>I've found <a href="http://www.nullify.net/ViewArticle.aspx?article=315" rel="nofollow">an example</a> of a Restricted App Domain. This may be enough to get you started. </p> http://stackoverflow.com/questions/1515508/segmentation-fault-doubt/1515510#1515510 15 Answer by Lucas McCoy for Segmentation fault doubt Lucas McCoy 2009-10-04T03:21:35Z 2009-10-04T03:30:08Z <p>It's because the output from <code>printf()</code> is buffered. You could add <code>fflush(stdout);</code> immediately after your <code>printf</code> and it would print.</p> <p>Also you could do this:</p> <pre><code>fprintf(stderr, "error string"); </code></pre> <p>since <code>stderr</code> is not buffered. </p> <p><a href="http://stackoverflow.com/questions/975448/c-programming-seg-faults-printf-and-related-quirks">There's also a related question</a>.</p> http://stackoverflow.com/questions/1514284/is-there-any-book-written-on-pyobjc/1514308#1514308 1 Answer by Lucas McCoy for Is there any book written on Pyobjc? Lucas McCoy 2009-10-03T17:14:32Z 2009-10-03T17:14:32Z <p>I would recommend taking a look at <a href="http://stackoverflow.com/questions/14422/why-is-the-pyobjc-documentation-so-bad">this question</a>. The documentation on PyObjc is notoriously bad. This probably isn't what you want to hear, but it's the truth. </p> <p>The good news is that O'Reilly has got a good tutorial: <a href="http://macdevcenter.com/pub/a/mac/2003/01/31/pyobjc%5Fone.html" rel="nofollow">Introduction to PyObjC</a>.</p> http://stackoverflow.com/questions/656669/will-vala-survive 5 Will Vala survive? Lucas McCoy 2009-03-18T01:33:40Z 2009-10-03T10:51:27Z <p>I'm just wondering how the <a href="http://en.wikipedia.org/wiki/Vala%5F%28programming%5Flanguage%29" rel="nofollow">Vala project</a> is coming along. I'm not sure if this will be a great new technology or just one that will fall by the wayside. Does anyone know how many people are working on this project and if I can contribute (writing tutorials, reporting/fixing bugs, etc...)?</p> http://stackoverflow.com/questions/1505206/vba-in-operator/1505248#1505248 2 Answer by Lucas McCoy for vba "IN" operator Lucas McCoy 2009-10-01T17:12:34Z 2009-10-01T17:22:34Z <p>I don't think there is a very elegant solution.</p> <p>However, you could try:</p> <pre><code>If Not IsError(Application.Match(x, Array("Me", "You", "Dog", "Boo"), False)) Then </code></pre> <p>or you could write your own function:</p> <pre><code>Function ISIN(x, StringSetElementsAsArray) ISIN = InStr(1, Join(StringSetElementsAsArray, Chr(0)), _ x, vbTextCompare) &gt; 0 End Function Sub testIt() Dim x As String x = "Dog" MsgBox ISIN(x, Array("Me", "You", "Dog", "Boo")) End Sub </code></pre> http://stackoverflow.com/questions/1503974/decrypting-pkcs7-encrypted-data-in-c/1504918#1504918 1 Answer by Lucas McCoy for Decrypting PKCS#7 encrypted data in C# Lucas McCoy 2009-10-01T16:10:30Z 2009-10-01T16:10:30Z <p>I found <a href="http://www.example-code.com/csharp/crypt%5Fdecrypt%5Fp7m.asp" rel="nofollow">an example</a> of how to decrypt PKCS#7 in C#. It may be enough to get you started. </p> http://stackoverflow.com/questions/1502026/does-anybody-know-of-a-good-tutorial-reference-on-vml/1502044#1502044 3 Answer by Lucas McCoy for Does anybody know of a good tutorial / reference on VML? Lucas McCoy 2009-10-01T05:26:45Z 2009-10-01T05:26:45Z <p><a href="http://www.w3.org/TR/NOTE-VML" rel="nofollow">How about The W3C's official tutorial?</a> It get's really in-depth (no joke, it's <a href="http://bytesizematters.com/" rel="nofollow">90.96 KB</a> (not counting images)) and it can be your complete reference. </p> http://stackoverflow.com/questions/1431961/how-to-pack-and-unpack-a-string-with-each-character-taking-7-bits-only Comment by Lucas McCoy on How to pack and unpack a string with each character taking 7 bits only? Lucas McCoy 2009-11-30T01:49:36Z 2009-11-30T01:49:36Z @fortan: So you never have to ask for help? http://stackoverflow.com/questions/1435245/windows-explorer-like-search-box-on-aero-glass-frame-with-wpf/1699252#1699252 Comment by Lucas McCoy on Windows Explorer-like search box on Aero glass frame with WPF Lucas McCoy 2009-11-09T17:18:00Z 2009-11-09T17:18:00Z If you read the last tutorial that I gave you it tells you exactly how to do that. Just like you did in your answer. http://stackoverflow.com/questions/1435245/windows-explorer-like-search-box-on-aero-glass-frame-with-wpf/1699252#1699252 Comment by Lucas McCoy on Windows Explorer-like search box on Aero glass frame with WPF Lucas McCoy 2009-11-09T16:23:49Z 2009-11-09T16:23:49Z Well what exactly do you want the search box to look like? The only difference between a regular text box and the search box is that it is gray, on mouseover it turns light gray, and when you click it it turns white. You could achieve this by playing with the styles in WPF. http://stackoverflow.com/questions/1699380/wpf-printing-issue Comment by Lucas McCoy on WPF Printing issue Lucas McCoy 2009-11-09T06:32:27Z 2009-11-09T06:32:27Z Very urgent? Like homework urgent? http://stackoverflow.com/questions/1677729/why-does-css-list-work-in-firefox-ie-but-not-safari-chrome Comment by Lucas McCoy on Why does CSS list work in Firefox / IE but not Safari / Chrome? Lucas McCoy 2009-11-05T01:20:11Z 2009-11-05T01:20:11Z I can tell you why it happens in Chrome &amp; Safari: It's because the both use WebKit as there rendering engine. How to fix this...not sure. http://stackoverflow.com/questions/458507/have-you-ever-written-a-computer-virus-or-at-least-tried/458965#458965 Comment by Lucas McCoy on Have you ever written a computer virus (or at least tried)? Lucas McCoy 2009-11-04T15:48:31Z 2009-11-04T15:48:31Z @Bill: SO your a lizard and a wizard? A lizwiz if you will. http://stackoverflow.com/questions/1674030/textpad-questions/1674137#1674137 Comment by Lucas McCoy on TextPad Questions! Lucas McCoy 2009-11-04T14:47:17Z 2009-11-04T14:47:17Z @ChloeRadshaw: TextPad and Notepad++ are to different programs. Certain programs will have features over others, thats what makes people choose one of the other. I chose Notepad++ because I like this feature and the fact that it was <b>free</b>. http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why Comment by Lucas McCoy on SetLineSpacing() does not work in DirectWrite - why? Lucas McCoy 2009-11-03T08:15:27Z 2009-11-03T08:15:27Z This could be a bug: <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=507456" rel="nofollow">connect.microsoft.com/VisualStudio/feedback/&hellip;</a> http://stackoverflow.com/questions/1655500/what-hidden-functionality-do-you-put-in-your-software Comment by Lucas McCoy on What hidden functionality do you put in your software? Lucas McCoy 2009-10-31T20:31:51Z 2009-10-31T20:31:51Z @Alex: This seems like an odd thing to do. Why spend time working on a feature that you won't get paid for, and might get in trouble for? The user might love the idea of the app &quot;phoning home&quot;, but they should at least know about it. http://stackoverflow.com/questions/1605006/making-a-windows-exe-with-gui2exe-does-not-work-because-of-missing-msvcp90-dll/1605012#1605012 Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll Lucas McCoy 2009-10-22T04:35:54Z 2009-10-22T04:35:54Z Ok, You spelled options wrong. I fixed it and it worked! Thanks! http://stackoverflow.com/questions/1605006/making-a-windows-exe-with-gui2exe-does-not-work-because-of-missing-msvcp90-dll/1605012#1605012 Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll Lucas McCoy 2009-10-22T04:33:58Z 2009-10-22T04:33:58Z Just tried it, still get the same error. http://stackoverflow.com/questions/1605006/making-a-windows-exe-with-gui2exe-does-not-work-because-of-missing-msvcp90-dll/1605012#1605012 Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll Lucas McCoy 2009-10-22T04:23:19Z 2009-10-22T04:23:19Z Um? What? Can you be a little more specific. http://stackoverflow.com/questions/645050/best-objective-c-tutorial/1602729#1602729 Comment by Lucas McCoy on Best Objective-C tutorial? Lucas McCoy 2009-10-21T21:16:12Z 2009-10-21T21:16:12Z Cool tut, but I think I'll stick with GEdit as my text editor since it already comes with GNOME and syntax highlighting and plugins and.... http://stackoverflow.com/questions/1570418/if-i-use-html-5s-doctype-what-will-happen/1572657#1572657 Comment by Lucas McCoy on If I use HTML 5's DocType what will happen? Lucas McCoy 2009-10-15T17:23:13Z 2009-10-15T17:23:13Z @Kobi: I fixed it for him. http://stackoverflow.com/questions/1564515/how-to-eject-the-cd-drive-on-linux-using-c/1564532#1564532 Comment by Lucas McCoy on How to eject the CD Drive on Linux using C? Lucas McCoy 2009-10-14T21:02:50Z 2009-10-14T21:02:50Z @Laurence: No I'm using GCC and I also looked at <code>byteorder.h</code> and seen the inline assembly.