User Lucas McCoy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:36:22Zhttp://stackoverflow.com/feeds/user/56555http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/804337/a-hacking-game-for-programmers16A hacking game for programmers?Lucas McCoy2009-04-29T21:21:52Z2009-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#16741374Answer by Lucas McCoy for TextPad Questions!Lucas McCoy2009-11-04T14:36:40Z2009-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 <-> 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#16718532Answer by Lucas McCoy for Is it good to add `line-height` in body?Lucas McCoy2009-11-04T05:35:24Z2009-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-tutorial4Where can I find a good Robocode tutorial?Lucas McCoy2009-06-22T04:37:03Z2009-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#16616731Answer by Lucas McCoy for Globus installation guideLucas McCoy2009-11-02T14:38:59Z2009-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-tutorials5.NET Micro Framework Tutorials?Lucas McCoy2009-07-23T02:51:26Z2009-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#16555624Answer by Lucas McCoy for Learning programming language from a bookLucas McCoy2009-10-31T20:40:30Z2009-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#16466951Answer by Lucas McCoy for Is there a Bug Encyclopedia?Lucas McCoy2009-10-29T21:32:25Z2009-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-accessors3Should I use properties in my C# programs or should I use get/set accessors?Lucas McCoy2009-04-13T00:59:33Z2009-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-dll2Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dllLucas McCoy2009-10-22T04:20:01Z2009-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-tutorial1Best Objective-C tutorial?Lucas McCoy2009-03-14T00:18:17Z2009-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#15704774Answer by Lucas McCoy for If I use HTML 5's DocType what will happen?Lucas McCoy2009-10-15T05:39:27Z2009-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-c2How to eject the CD Drive on Linux using C?Lucas McCoy2009-10-14T06:10:23Z2009-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-collected3Is Objective-C on Linux garbage collected?Lucas McCoy2009-03-21T01:53:24Z2009-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#15499665Answer by Lucas McCoy for Segmentation fault only when I redirect stdout to /dev/null ?Lucas McCoy2009-10-11T05:47:19Z2009-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-computer4What's the best programming language to use on a sucky computer?Lucas McCoy2009-03-12T00:08:40Z2009-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-01Programming Skill Tester (Problem) v2.0Lucas McCoy2009-02-04T06:50:39Z2009-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#15351587Answer by Lucas McCoy for C framework like Qt ?Lucas McCoy2009-10-08T01:35:22Z2009-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-malloc2How do you know how much space to allocate with malloc()?Lucas McCoy2009-08-08T04:22:50Z2009-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#15273100Answer by Lucas McCoy for How can I track down a segmentation fault in a Cocoa application?Lucas McCoy2009-10-06T18:36:16Z2009-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#15216932Answer by Lucas McCoy for Best Profanity Filter?Lucas McCoy2009-10-05T18:35:07Z2009-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#15167771Answer by Lucas McCoy for Git gui client for LinuxLucas McCoy2009-10-04T16:19:27Z2009-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#15156600Answer by Lucas McCoy for Would it be possible to have a compiler that would predict every possible 'situation specific' runtime error?Lucas McCoy2009-10-04T05:13:04Z2009-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#15155963Answer by Lucas McCoy for How do I create a restricted AppDomain?Lucas McCoy2009-10-04T04:32:40Z2009-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#151551015Answer by Lucas McCoy for Segmentation fault doubtLucas McCoy2009-10-04T03:21:35Z2009-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#15143081Answer by Lucas McCoy for Is there any book written on Pyobjc?Lucas McCoy2009-10-03T17:14:32Z2009-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-survive5Will Vala survive?Lucas McCoy2009-03-18T01:33:40Z2009-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#15052482Answer by Lucas McCoy for vba "IN" operatorLucas McCoy2009-10-01T17:12:34Z2009-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) > 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#15049181Answer by Lucas McCoy for Decrypting PKCS#7 encrypted data in C#Lucas McCoy2009-10-01T16:10:30Z2009-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#15020443Answer by Lucas McCoy for Does anybody know of a good tutorial / reference on VML?Lucas McCoy2009-10-01T05:26:45Z2009-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-onlyComment by Lucas McCoy on How to pack and unpack a string with each character taking 7 bits only?Lucas McCoy2009-11-30T01:49:36Z2009-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#1699252Comment by Lucas McCoy on Windows Explorer-like search box on Aero glass frame with WPFLucas McCoy2009-11-09T17:18:00Z2009-11-09T17:18:00ZIf 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#1699252Comment by Lucas McCoy on Windows Explorer-like search box on Aero glass frame with WPFLucas McCoy2009-11-09T16:23:49Z2009-11-09T16:23:49ZWell 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-issueComment by Lucas McCoy on WPF Printing issueLucas McCoy2009-11-09T06:32:27Z2009-11-09T06:32:27ZVery urgent? Like homework urgent?http://stackoverflow.com/questions/1677729/why-does-css-list-work-in-firefox-ie-but-not-safari-chromeComment by Lucas McCoy on Why does CSS list work in Firefox / IE but not Safari / Chrome?Lucas McCoy2009-11-05T01:20:11Z2009-11-05T01:20:11ZI can tell you why it happens in Chrome & 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#458965Comment by Lucas McCoy on Have you ever written a computer virus (or at least tried)?Lucas McCoy2009-11-04T15:48:31Z2009-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#1674137Comment by Lucas McCoy on TextPad Questions!Lucas McCoy2009-11-04T14:47:17Z2009-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-whyComment by Lucas McCoy on SetLineSpacing() does not work in DirectWrite - why?Lucas McCoy2009-11-03T08:15:27Z2009-11-03T08:15:27ZThis could be a bug: <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=507456" rel="nofollow">connect.microsoft.com/VisualStudio/feedback/…</a>http://stackoverflow.com/questions/1655500/what-hidden-functionality-do-you-put-in-your-softwareComment by Lucas McCoy on What hidden functionality do you put in your software?Lucas McCoy2009-10-31T20:31:51Z2009-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 "phoning home", 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#1605012Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dllLucas McCoy2009-10-22T04:35:54Z2009-10-22T04:35:54ZOk, 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#1605012Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dllLucas McCoy2009-10-22T04:33:58Z2009-10-22T04:33:58ZJust 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#1605012Comment by Lucas McCoy on Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dllLucas McCoy2009-10-22T04:23:19Z2009-10-22T04:23:19ZUm? What? Can you be a little more specific. http://stackoverflow.com/questions/645050/best-objective-c-tutorial/1602729#1602729Comment by Lucas McCoy on Best Objective-C tutorial?Lucas McCoy2009-10-21T21:16:12Z2009-10-21T21:16:12ZCool 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#1572657Comment by Lucas McCoy on If I use HTML 5's DocType what will happen?Lucas McCoy2009-10-15T17:23:13Z2009-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#1564532Comment by Lucas McCoy on How to eject the CD Drive on Linux using C?Lucas McCoy2009-10-14T21:02:50Z2009-10-14T21:02:50Z@Laurence: No I'm using GCC and I also looked at <code>byteorder.h</code> and seen the inline assembly.