User W. Craig Trader - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T06:08:10Z http://stackoverflow.com/feeds/user/12895 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1853946/getting-the-last-argument-passed-to-a-shell-script/1853959#1853959 1 Answer by W. Craig Trader for Getting the last argument passed to a shell script W. Craig Trader 2009-12-06T00:02:50Z 2009-12-06T00:02:50Z <pre><code>#! /bin/sh next=$1 while [ -n "${next}" ] ; do last=$next shift next=$1 done echo $last </code></pre> http://stackoverflow.com/questions/1836217/perl-or-something-else-m-problem/1836383#1836383 2 Answer by W. Craig Trader for Perl (or something else) - ^M problem W. Craig Trader 2009-12-02T22:41:15Z 2009-12-02T22:41:15Z <p>Your data file must have originated on Windows, which uses CRLF as a line delimiter instead of just LF. This means your text file looks like this:</p> <pre><code>bla[CR][LF]bla bla[CR][LF]blah[CR][LF] </code></pre> <p>You can verify this by using <code>od -c something.txt</code>. </p> <pre><code>$ od -c something.txt 0000000 b l a \r \n b l a b l a \r \n b l 0000020 a h \r \n 0000024 </code></pre> <p>Under Unix or Linux, it will appear like this:</p> <pre><code>bla\r bla bla\r blah\r </code></pre> <p>When perl makes it's substitution, it results in this:</p> <pre><code>"bla\r", "bla bla\r", "blah\r", </code></pre> <p>And when you cat the result, you get what you see:</p> <pre><code>"bla ", "bla bla ", "blah ", </code></pre> <p>The easy thing to do is to use <a href="http://linuxcommand.org/man%5Fpages/dos2unix1.html" rel="nofollow">dos2unix</a> to convert the line endings to Unix format, then your scripts will behave as expected.</p> http://stackoverflow.com/questions/1833540/in-mssql-change-column-of-type-int-to-type-text/1833619#1833619 1 Answer by W. Craig Trader for In MSSQL change column of type int to type text W. Craig Trader 2009-12-02T15:27:26Z 2009-12-02T15:53:29Z <p>Since MS SQL Server (like most databases) doesn't support directly changing the type of an existing column, you'll have to do it in steps. The way I have solved problems like this in the past is (assuming your table is named 'foo' and your column is named 'bar'):</p> <ol> <li>ALTER TABLE foo ADD COLUMN tempbar text;</li> <li>UPDATE foo SET tempbar = cast(cast(bar as varchar) as text);</li> <li>ALTER TABLE foo DROP COLUMN bar;</li> <li>ALTER TABLE foo ADD COLUMN bar text;</li> <li>UPDATE foo SET bar = tempbar;</li> <li>ALTER TABLE foo DROP COLUMN tempbar;</li> </ol> <p>(Some of the SQL syntax may be off, it's been a year since I last did this, at a different job, so I don't have access to MS SQL Server or the source. You'll also have to do more stuff if your column has an index on it.)</p> <p>Props to <a href="http://stackoverflow.com/users/215568/donnie">Donnie</a> for the conversion syntax.</p> <p><strong>[Edit]</strong></p> <p><a href="http://stackoverflow.com/users/16036/tom-h">Tom H.</a> suggested using the <a href="http://msdn.microsoft.com/en-us/library/aa238878%28SQL.80%29.aspx" rel="nofollow">sp_rename</a> stored procedure to rename <code>tempbar</code> as <code>bar</code> (instead of steps 4-6). That is a MS SQL Server-specific solution that may work for many circumstances. The solution I described will work (with syntax revisions) on <strong>any</strong> SQL database, regardless of version. In my case, I was dealing with primary and foreign keys, and not just a single field, so I had to carefully order all of the operations AND be portable across multiple versions of MS SQL Server -- being explicit worked in my favor.</p> http://stackoverflow.com/questions/1829135/strategies-for-testing-against-a-live-system/1829314#1829314 1 Answer by W. Craig Trader for Strategies for testing against a live system. W. Craig Trader 2009-12-01T22:13:09Z 2009-12-01T22:13:09Z <p>Let's start by challenging your assumption "It is not possible to mimic the logic in either of these systems". </p> <p>Of course you can mimic the behavior, if you use the right tools. Your system interacts with the database by way of a database object; your system should interact with the web service through a web service object. Either or both of these objects can be <a href="http://en.wikipedia.org/wiki/Mock%5Fobject" rel="nofollow">mocked</a> through the use of an appropriate mocking framework. For any unit test call to the database object, you create a mock for that object, set its expectations and result for the call, and then hand the mock to your Code Under Test (CUT) instead of the 'real' database object. Your code calls the mock, which then compares its arguments against the pre-set expectations, and hands back the expected result (instead of actually communicating with the database). Your code then operates on the result. If the method arguments don't match the expectations, the mock object will throw an exception.</p> <p>You can read articles about mock objects and unit testing for .Net here:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/magazine/cc163904.aspx" rel="nofollow">Mock Objects to the Rescue! Test Your .NET Code with NMock</a></li> <li><a href="http://www.typemock.com/Docs/writing%5Funit%5Ftests%5Fwith%5Fisolator.php" rel="nofollow">How Typemock Isolator Simplifies Unit Testing</a></li> </ul> <p>Mind you, tools like <a href="http://www.nmock.org/" rel="nofollow">NMock</a> and <a href="http://www.typemock.com/" rel="nofollow">Typemock</a> make the job easier, but it's still hard -- you need to design your code to be tested, not just write the code first and pray that you can test it later. </p> <p>You might want to talk to your webservice provider -- every third-party webservice that I've ever interacted with beyond simple queries has had a test mode (you use test credentials and a test server, instead of the live server). Any transactions to the test server get cleaned up at the end of the day. If they <strong>don't</strong> offer a test service <strong>AND</strong> their service involves more than simple queries, then I'd strongly recommend finding another service provider.</p> <p>There's one other strategy that you can take for working with a database, under certain circumstances: use transactions. When you open your database connection during a unit test, open a transaction. At the end of each unit test, rollback the transaction. It's a simple idea, but the devil is in the details, and there will be chaos if you screw up and accidentally commit the transaction. I don't recommend it, but I worked like this for 2 years on one project.</p> http://stackoverflow.com/questions/1818079/how-to-grep-a-variable-in-the-shell-program/1818121#1818121 1 Answer by W. Craig Trader for how to grep a variable in the shell program? W. Craig Trader 2009-11-30T06:20:34Z 2009-11-30T06:20:34Z <p>Ok, the second [sic] problem is with your quoting on line 5. The reference to $var will never be expanded because it's contained within single quotes. You can fix that by replacing the single quotes (<code>'</code>) with escaped double quotes (<code>\"</code>).</p> <p>The first [sic] problem is that you're trying to do too much in a single line, which causes your nesting problem with quotes. Break the line up into multiple commands, storing intermediary results as necessary. Yeah, it might run a tad slower, but you'll save a LOT of time debugging and maintaining it.</p> <blockquote> <p>Trader's Second Law: If you have to choose between optimizing for performance, and optimizing for maintainability, ALWAYS choose to make your code more maintainable. Computers get faster all the time; Programmers don't.</p> </blockquote> http://stackoverflow.com/questions/1800241/using-wordpress-as-more-than-just-a-blog/1811781#1811781 0 Answer by W. Craig Trader for Using Wordpress as more than just a blog? W. Craig Trader 2009-11-28T06:33:18Z 2009-11-28T06:33:18Z <p>Here are some sites that I've done with Wordpress that are more than just blogs:</p> <ul> <li><a href="http://driia.com/" rel="nofollow">Driia's Dreams</a>, which is blog and online store for my wife's jewelry business. (<em>I take <strong>no</strong> responsibility for her theme.</em>)</li> <li><a href="http://barkingmad.org/" rel="nofollow">Barking Mad Productions</a>, which is primarily a CMS for an even production company, with a blog.</li> <li><a href="http://ludus.unicornsrest.org/" rel="nofollow">Ludus</a>, which tracks the games that we play each week (blog), along with information about the games themselves (CMS).</li> <li><a href="http://chaos.trader.name/" rel="nofollow">Craig's Chaos Machine</a>, which documents everything I'm learning about Chaos Toy and Chaos Machines. (<em>Still a work in progress.</em>)</li> </ul> http://stackoverflow.com/questions/1778546/slow-response-from-getaddrinfo/1778593#1778593 1 Answer by W. Craig Trader for Slow response from getaddrinfo W. Craig Trader 2009-11-22T12:36:20Z 2009-11-25T16:41:07Z <p>Windows has a local daemon that does DNS caching. Your call to getaddrinfo() is getting routed to that daemon, which presumably is checking its cache before submitting the query to your DNS server. </p> <p>See <a href="http://support.microsoft.com/kb/318803" rel="nofollow">Windows Knowledge Base article 318803</a> for more information on disabling the cache.</p> <p><strong>[Edited]</strong></p> <p>It sounds to me as though your Windows Server 2003 instance is not configured correctly for IPv6. Once the IPv6 lookups timeout, it will fall back to IPv4. Knowledge Base articles that might help include:</p> <ul> <li><a href="http://technet.microsoft.com/en-us/library/cc738372%28WS.10%29.aspx" rel="nofollow">Windows Server 2003 Deployment Guide >>> Configuring DNS for IPv6/IPv4 Coexistence</a></li> <li><a href="http://technet.microsoft.com/en-us/library/bb742622.aspx" rel="nofollow">TechNet Library >>> Internet Protocol Version 6</a></li> <li><a href="http://technet.microsoft.com/en-us/library/bb726952.aspx" rel="nofollow">TechNet Library >>> Using Windows Tools to Obtain IPv6 Configuration Information</a></li> </ul> <p>Unfortunately, I don't have access to any Windows Servers, so I can't test/replicate this myself.</p> http://stackoverflow.com/questions/1777182/how-can-i-get-my-content-from-a-joomla-blog-into-blogger-or-wordpress/1793113#1793113 0 Answer by W. Craig Trader for How can I get my content from a Joomla blog into Blogger or Wordpress? W. Craig Trader 2009-11-24T21:42:56Z 2009-11-24T21:42:56Z <p>You might also want to read this article on <a href="http://rangit.com/software/6-steps-how-to-migrate-from-joomla-to-wordpress/" rel="nofollow">6 Steps: How To Migrate from Joomla to Wordpress</a>. It has scripts that automate the process.</p> http://stackoverflow.com/questions/1788281/wordpress-how-to-put-an-enter-page/1788397#1788397 0 Answer by W. Craig Trader for wordpress : how to put an enter page? W. Craig Trader 2009-11-24T07:17:11Z 2009-11-24T07:17:11Z <p>Things that you could do ...</p> <ol> <li>Put the splash page on /index.html and put wordpress in /site/ (or something else innocuous); put a redirect on /index.html -> /site/ after the splash is done.</li> <li>Put the splash page as a page named 'Splash' in Wordpress, with its own template. In the Reading settings page, set the 'Front Page' as 'Splash'. Redirect to the index page after the splash is done.</li> <li>Put the splash page as a page named 'Splash' in Wordpress, with its own template. Modify index.php in your theme to check for a cookie -- if the cookie isn't present, load the Splash page instead of processing the Wordpress Loop. Once the splash page is done, set the cookie and redirect to the index page.</li> </ol> http://stackoverflow.com/questions/1779742/can-i-use-a-usb-to-serial-adapter-to-talk-to-my-development-board-from-vmware-fus/1779801#1779801 0 Answer by W. Craig Trader for Can I use a USB-to-serial adapter to talk to my development board from VMWare Fusion? W. Craig Trader 2009-11-22T20:02:17Z 2009-11-22T20:02:17Z <p>Depends upon the VM software, but VMWare Fusion does support USB devices. The question becomes, does your IDE support talking to a USB device instead of an old-fashioned serial port? With Linux, probably yes.</p> http://stackoverflow.com/questions/1778540/execute-php-script-every-40-miliseconds/1778572#1778572 10 Answer by W. Craig Trader for Execute php script every 40 miliseconds? W. Craig Trader 2009-11-22T12:26:41Z 2009-11-22T12:26:41Z <p>If you try to invoke a PHP script every 40 milliseconds, that will involve:</p> <ul> <li>Create a process</li> <li>Load PHP</li> <li>Load and compile the script</li> <li>Run the compiled script</li> <li>Remove the process and all of the memory</li> </ul> <p>You're much better off putting your work into the body of a loop, and then using <a href="http://www.php.net/manual/en/function.time-sleep-until.php" rel="nofollow"><code>time_sleep_until</code></a> at the end of the loop to finish out the rest of your 40 milliseconds. Then your run your PHP program once.</p> <p>Keep in mind, this needs to be a standalone PHP program; running it out of a web page will cause the web server to timeout on that page, and then end your script prematurely.</p> http://stackoverflow.com/questions/1778478/c-unsigned-int-array-and-bit-shifts/1778536#1778536 1 Answer by W. Craig Trader for C unsigned int array and bit shifts W. Craig Trader 2009-11-22T12:12:22Z 2009-11-22T12:12:22Z <p>The way to think about this is that in C (and for most programming languages) the implementation for <code>array[k] &lt;&lt; 8</code> involves loading array[k] into a register, shifting the register, and then storing the register back into array[k]. Thus array[k+1] will remain untouched.</p> <p>As an example, <code>foo.c</code>:</p> <pre><code>unsigned short array[5]; void main() { array[3] &lt;&lt;= 8; } </code></pre> <p>Will generate the following instructions:</p> <pre><code>movzwl array+6(%rip), %eax sall $8, %eax movw %ax, array+6(%rip) </code></pre> <p>This loads array[3] into %eax, modifies it, and stores it back.</p> http://stackoverflow.com/questions/1778390/check-if-email-are-valid-and-exists/1778433#1778433 5 Answer by W. Craig Trader for check if email are valid and exists W. Craig Trader 2009-11-22T11:05:01Z 2009-11-22T11:05:01Z <p>Doing a regex check on an email address can be frustrating for some users, depending upon the regex. In my case, I have several domains where all of the addresses are delivered to a single mailbox, so I can use the address to specify the sender (for filtering). Here are some valid (per RFC 2822) address patterns that I have had rejected by various websites:</p> <pre><code>foo@example.name foo@example.info foo+sitename@example.org foo-sitename@example.com </code></pre> <p>I recommend that you skip your regex test and just send the verification email with a confirmation link -- anything else will leave your application brittle and subject to breakage as soon as someone comes up with a new DNS or SMTP extension.</p> <p>PS: ICANN is expected to approve UNICODE domain names Real Soon Now. That will play merry hell with Regex patterns for email addresses.</p> http://stackoverflow.com/questions/1717048/database-source-control-with-oracle/1767359#1767359 0 Answer by W. Craig Trader for Database source control with Oracle W. Craig Trader 2009-11-19T23:35:00Z 2009-11-19T23:49:28Z <p>Expensive though it may be, a tool like <a href="http://www.toadsoft.com/toad%5Foracle.htm" rel="nofollow">TOAD for Oracle</a> can be ideal for solving this sort of problem. </p> <p>That said, my preferred solution is to start with all of the DDL (including Stored Procedure definitions) as text, managed under version control, and write scripts that will create a functioning database from source. If someone wants to modify the schema, they must, must, must commit those changes to the repository, not just modify the database directly. No exceptions! That way, if you need to build scripts that reflect updates between versions, it's a matter of taking all of the committed changes, and then adding whatever DML you need to massage any existing data to meet the changes (adding default values for new columns for existing rows, etc.) With all of the DDL (and prepopulated data) as text, collecting differences is as simple as diffing two source trees.</p> <p>At my last job, I had NAnt scripts that would restore test databases, run all of the upgrade scripts that were needed, based upon the version of the database, and then dump the end result to DDL and DML. I would do the same for an empty database (to create one from scratch) and then compare the results. If the two were significantly different (the dump program wasn't perfect) I could tell immediately what changes needed to be made to the update / creation DDL and DML. While I did use database comparison tools like TOAD, they weren't as useful as hand-written SQL when I needed to produce general scripts for massaging data. (Machine-generated code can be remarkably brittle.)</p> http://stackoverflow.com/questions/1752815/why-isnt-dry-considered-a-good-thing-for-type-declarations/1753061#1753061 0 Answer by W. Craig Trader for Why isn't DRY considered a good thing for type declarations? W. Craig Trader 2009-11-18T01:34:15Z 2009-11-18T05:01:08Z <p><strong>Albert Einstein said, "Everything should be made as simple as possible, but not one bit simpler."</strong></p> <p>Your complaint makes no sense in the case of a dynamically typed language, so you must intend this to refer to statically typed languages. In that case, your replacement example implicitly uses Generics (aka Template Classes), which means that any time that <code>fun</code> or <code>gun</code> is used, a new definition based upon the type of the argument. That could result in dozens of extra methods, regardless of the intent of the programmer. In particular, you're throwing away the benefit of compiler-checked type-safety for a runtime error.</p> <p>If your goal was to simply pass through the argument without checking its type, then the correct type would be <code>Object</code> not <code>T</code>.</p> <p>Type declarations are intended to make the programmer's life simpler, by catching errors at compile-time, instead of failing at runtime. If you have an overly complex type definition, then you probably don't understand your data. In your example, I would have suggested adding <code>fun</code> and <code>gun</code> to <code>MyClass</code>, instead of defining them separately. If <code>fun</code> and <code>gun</code> don't apply to all possible template types, then they should be defined in an explicit subclass, not as separate functions that take a templated class argument.</p> <p>Generics exist as a way to wrap behavior around more specific objects. List, Queue, Stack, these are fine reasons for Generics, but at the end of the day, the only thing you should be doing with a bare Generic is creating an instance of it, and calling methods on it. If you really feel the need to do more than that with a Generic, then you probably need to embed your Generic class as an instance object in a wrapper class, one that defines the behaviors you need. You do this for the same reason that you embed primitives into a class: because by themselves, numbers and strings do not convey semantic information about their contents.</p> <p>Example:</p> <p>What semantic information does List convey? Just that you're working with multiple triples of integers. On the other hand, List, where a color has 3 integers (red, blue, green) with bounded values (0-255) conveys the intent that you're working with multiple Colors, but provides no hint as to whether the List is ordered, allows duplicates, or any other information about the Colors. Finally a Palette can add those semantics for you: a Palette has a name, contains multiple Colors, but no duplicates, and order isn't important.</p> <p>This has gotten a bit far afield from the original question, but what it means to me is that DRY (Don't Repeat Yourself) means specifying information once, but that specification should be as precise as is necessary.</p> http://stackoverflow.com/questions/1330811/using-the-subversion-revision-for-the-clickonce-publish-revision/1743452#1743452 1 Answer by W. Craig Trader for Using the Subversion revision for the ClickOnce publish revision? W. Craig Trader 2009-11-16T16:59:41Z 2009-11-16T16:59:41Z <p>The way that I've done this in the past is to create a build file (either using MSBuild or NAnt) to automate my builds, used <code>svn info --xml .</code> to pick up the revision number and then stored it in a build variable as part of the 'init' task for a build. In the case of your project file, I copy the project file (foo) to (foo.template), edit it and replace the hardcoded revision number with @REVISION@ and then use whatever copy-and-filter mechanism is supported by the automation tool whenever I build.</p> http://stackoverflow.com/questions/1322929/check-out-a-read-only-copy-of-a-file-from-subversion/1743419#1743419 0 Answer by W. Craig Trader for Check out a read-only copy of a file from Subversion? W. Craig Trader 2009-11-16T16:53:50Z 2009-11-16T16:53:50Z <p>You probably have some form of build automation (make, ant, etc.) for compiling. Why not add an 'update' step to your make file, that looks something like this:</p> <pre><code>update: svn update svn export &lt;&lt;export parameters go here&gt;&gt; </code></pre> <p>Then whenever someone would type <code>svn update</code> they can type <code>make update</code> and have the same effect.</p> http://stackoverflow.com/questions/1480999/build-automation-vmware-server-2-0-final-builder/1743372#1743372 1 Answer by W. Craig Trader for Build automation, VMWare server 2.0, Final builder W. Craig Trader 2009-11-16T16:45:39Z 2009-11-16T16:45:39Z <p>The easiest approach is to configure the VM with a network connection that is reachable from the host machine, and run the scripts across the network connection the same as you would if you had a physical machine instead of a virtual machine. If your goal is to keep the VM isolated from your existing network and servers, then you need merely configure a private network between the host and the guest, and use that. With this approach, you don't need any extra software.</p> http://stackoverflow.com/questions/1737443/bool-true-false/1737456#1737456 3 Answer by W. Craig Trader for bool true = false? W. Craig Trader 2009-11-15T12:45:02Z 2009-11-15T12:45:02Z <p>It's easy enough in C (and probably C++):</p> <pre><code>#define TRUE 0 #define FALSE 1 </code></pre> <p>It's easy in Python, too:</p> <pre><code>(True, False) = (False, True) </code></pre> http://stackoverflow.com/questions/1734977/dijkstras-bankers-algorithm/1735117#1735117 1 Answer by W. Craig Trader for Dijkstra's Bankers Algorithm W. Craig Trader 2009-11-14T18:22:00Z 2009-11-14T18:22:00Z <p>Per <a href="http://en.wikipedia.org/wiki/Banker%27s%5Falgorithm" rel="nofollow">Wikipedia</a>, </p> <blockquote> <p>A state (as in the above example) is considered safe if it is possible for all processes to finish executing (terminate). Since the system cannot know when a process will terminate, or how many resources it will have requested by then, the system assumes that all processes will eventually attempt to acquire their stated maximum resources and terminate soon afterward. This is a reasonable assumption in most cases since the system is not particularly concerned with how long each process runs (at least not from a deadlock avoidance perspective). Also, if a process terminates without acquiring its maximum resources, it only makes it easier on the system.</p> </blockquote> <p>A process can run to completion when the number of each type of resource that it needs is available, between itself and the system. If a process needs 8 units of a given resource, and has allocated 5 units, then it can run to completion if there are at least 3 more units available that it can allocate.</p> <p>Given your example, the system is managing a single resource, with 10 units available. The running processes have already allocated 8 (1+1+2+4) units, so there are 2 units left. The amount that any process needs to complete is its maximum less whatever it has already allocated, so at the start, A needs 5 more (6-1), B needs 4 more (5-1), C needs 2 more (4-2), and D needs 3 more (7-4). There are 2 available, so Process C is allowed to run to completion, thus freeing up 2 units (leaving 4 available). At this point, either B or D can be run (we'll assume D). Once D has completed, there will be 8 units available, after which either A or B can be run (we'll assume A). Once A has completed, there will be 9 units available, and then B can be run, which will leave all 10 units left for further work. Since we can select an ordering of processes that will allow all processes to be run, the state is considered 'safe'.</p> http://stackoverflow.com/questions/1730765/could-not-initilize-the-sasl-library/1730941#1730941 0 Answer by W. Craig Trader for Could not initilize the SASL library W. Craig Trader 2009-11-13T18:09:57Z 2009-11-13T18:09:57Z <p>The tutorial you referenced was for a much older version of Subversion, and may be missing steps. Nowadays, the fastest way to set up a Subversion server on Windows is to use <a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN Server</a>, whose Standard version is <a href="http://www.visualsvn.com/server/licensing/eula/" rel="nofollow">free (as in beer)</a> to use.</p> http://stackoverflow.com/questions/1727124/print-possible-strings-created-from-a-number/1727241#1727241 0 Answer by W. Craig Trader for Print possible strings created from a Number W. Craig Trader 2009-11-13T05:08:18Z 2009-11-13T05:08:18Z <p>You're looking at 10 digits, with 3 or 4 letters per digit (assuming no 0s or 1s). 3**10 combinations = 59049 combinations minimum, more if you allow Q and Z. That's going to be a lot of paper, no matter how you do it.</p> http://stackoverflow.com/questions/1718037/abuse-of-c-lambda-expressions-or-syntax-brilliance/1718145#1718145 1 Answer by W. Craig Trader for Abuse of C# lambda expressions or Syntax brilliance? W. Craig Trader 2009-11-11T21:18:30Z 2009-11-11T21:18:30Z <p>If the method (func) names are well chosen, then this is a brilliant way to avoid maintenance headaches (ie: add a new func, but forgot to add it to the function-parameter mapping list). Of course, you need to document it heavily and you'd better be auto-generating the documentation for the parameters from the documentation for the functions in that class...</p> http://stackoverflow.com/questions/1710265/search-for-a-string-in-a-text-file-and-parse-that-line-linux-c/1710317#1710317 -1 Answer by W. Craig Trader for Search for a string in a text file and parse that line (Linux, C) W. Craig Trader 2009-11-10T18:55:01Z 2009-11-10T18:55:01Z <p>With a POSIX shell, I'd use something like:</p> <pre><code>answer=`egrep 'wants_config[ ]*=' /etc/myconfig | sed 's/^.*=[ ]*//'` </code></pre> <p>Of course, if you're looking for an answer that uses the C STDIO library, then you really need to review the STDIO documentation.</p> http://stackoverflow.com/questions/1703741/basic-c-question-about-return-values/1703927#1703927 0 Answer by W. Craig Trader for Basic C question about return values W. Craig Trader 2009-11-09T21:23:44Z 2009-11-09T21:23:44Z <p>The wrap under (as you describe it) is a result of failing to output a LF (line feed) character as part of your call to printf(). You can fix that by adding <strong>\n</strong> to the print format string. Change your code to this:</p> <pre><code>#include &lt;stdio.h&gt; int main (int argc, const char * argv[]) { int myInt; myInt = 2; myInt *= ( (3*4) / 2 ) - 9; printf("myInt = %d\n", myInt); return myInt; } </code></pre> <p>As for doubling 'The Debugger has exited with status 250.' that's a function of your IDE / debugger, and not the result of your code. As others explained, -6 = 0xFFFFFFFA, which when truncated to 8 bits and treated as unsigned, equals 250 in decimal.</p> http://stackoverflow.com/questions/1690284/getting-started-with-arduino/1702040#1702040 0 Answer by W. Craig Trader for Getting started with Arduino? W. Craig Trader 2009-11-09T16:14:16Z 2009-11-09T16:14:16Z <p>You will definitely need to go to the <a href="http://arduino.cc/" rel="nofollow">Arduino site</a> to get the <a href="http://arduino.cc/en/Main/Software" rel="nofollow">Arduino IDE</a>, which does not come with your kit. The Arduino <a href="http://arduino.cc/en/Guide/HomePage" rel="nofollow">Getting Started</a> instructions will help you get the rest of the pieces for your specific environment (the pieces are different for Windows, Mac OSX, and Linux). There will be additional quirks if your development workstation is running a 64-bit OS. </p> http://stackoverflow.com/questions/1691989/how-to-expose-a-method-in-an-interface-without-making-it-public-to-all-classes/1691998#1691998 7 Answer by W. Craig Trader for How to expose a method in an interface without making it public to all classes W. Craig Trader 2009-11-07T04:29:51Z 2009-11-07T04:29:51Z <p>Answer: Define two interfaces, and keep the 'private' functions in the second interface. If ActionScript supports inheritance for interfaces, then define the 'private' interface as extending the 'public' interface.</p> http://stackoverflow.com/questions/1650314/how-do-i-create-a-python-django-egg/1650352#1650352 4 Answer by W. Craig Trader for How Do I Create a Python / Django Egg? W. Craig Trader 2009-10-30T15:05:15Z 2009-10-30T15:05:15Z <p>You want to use the <a href="http://pypi.python.org/pypi/setuptools" rel="nofollow">Python SetupTools</a>. You create a description file (setup.py) and then building and creating the egg is a one-line command (similar to Make). Here's a nice <a href="http://ianbicking.org/docs/setuptools-presentation/" rel="nofollow">presentation</a> that will walk you through the details.</p> http://stackoverflow.com/questions/647783/direct-memory-access-in-linux/1638848#1638848 0 Answer by W. Craig Trader for Direct Memory Access in Linux W. Craig Trader 2009-10-28T17:36:48Z 2009-10-28T17:36:48Z <p>Have you looked at the 'memmap' kernel parameter? On i386 and X64_64, you can use the memmap parameter to define how the kernel will hand very specific blocks of memory (see the <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/kernel-parameters.txt;h=9107b387e91fce095ee320dbeed53d5dfe5cb332;hb=HEAD" rel="nofollow">Linux kernel parameter</a> documentation). In your case, you'd want to mark memory as 'reserved' so that Linux doesn't touch it at all. Then you can write your code to use that absolute address and size (woe be unto you if you step outside that space).</p> http://stackoverflow.com/questions/1638299/svn-and-code-shared-between-several-projects/1638609#1638609 0 Answer by W. Craig Trader for SVN and code shared between several projects W. Craig Trader 2009-10-28T16:59:56Z 2009-10-28T16:59:56Z <p>My recommendation for handling shared code (particularly with Java and .NET or a C/C++ library) is to use two sets of repositories: one for source code, and another for versioning released images. When you make changes to the 'common' project, you commit your source changes to the source tree, then build it and then publish the binaries by committing them as a new revision on the release tree. The projects that use the 'common' project then use the svn:externals property to bring in the released binaries. There's no temptation to modify the local images of the shared code. If someone wants to modify the 'common' code, then they do that through the normal development practices for that project.</p> <p>For more details, see this <a href="http://stackoverflow.com/questions/107292/what-is-the-optimal-way-to-organize-shared-net-assemblies-in-svn/107525#107525">answer</a> to a similar question.</p> http://stackoverflow.com/questions/1853946/getting-the-last-argument-passed-to-a-shell-script/1853984#1853984 Comment by W. Craig Trader on Getting the last argument passed to a shell script W. Craig Trader 2009-12-06T00:15:24Z 2009-12-06T00:15:24Z Only works in Bash, but a good answer http://stackoverflow.com/questions/1842212/looping-1-2-and-3-numbers/1842386#1842386 Comment by W. Craig Trader on looping 1, 2 and 3 numbers W. Craig Trader 2009-12-03T19:50:05Z 2009-12-03T19:50:05Z So where does it come from? http://stackoverflow.com/questions/1690605/reliable-and-efficient-key-value-database-for-linux Comment by W. Craig Trader on Reliable and efficient key--value database for Linux? W. Craig Trader 2009-12-02T22:45:39Z 2009-12-02T22:45:39Z Congratulations! That is a <i>very</i> well-researched question. http://stackoverflow.com/questions/58640/great-programming-quotes/89627#89627 Comment by W. Craig Trader on Great programming quotes W. Craig Trader 2009-11-30T16:54:59Z 2009-11-30T16:54:59Z Apparently everyone here has forgotten about APL, the Original Write-Only Language (accept no substitutes). http://stackoverflow.com/questions/1778546/slow-response-from-getaddrinfo Comment by W. Craig Trader on Slow response from getaddrinfo W. Craig Trader 2009-11-25T16:42:42Z 2009-11-25T16:42:42Z Are you querying for AAAA records or A records? http://stackoverflow.com/questions/1778546/slow-response-from-getaddrinfo Comment by W. Craig Trader on Slow response from getaddrinfo W. Craig Trader 2009-11-25T15:32:47Z 2009-11-25T15:32:47Z @Nitamk, what version of Windows are you using: Vista, Windows 7, Windows Server 2008? http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/77007#77007 Comment by W. Craig Trader on What is the single most effective thing you did to improve your programming skills? W. Craig Trader 2009-11-24T22:33:33Z 2009-11-24T22:33:33Z @Arnis, when they implement the &quot;Generalist&quot; badge, I'll be there. http://stackoverflow.com/questions/1793169/which-is-faster-multiple-single-inserts-or-one-multiple-row-insert/1793176#1793176 Comment by W. Craig Trader on Which is faster: multiple single INSERTs or one multiple-row INSERT? W. Craig Trader 2009-11-24T22:26:14Z 2009-11-24T22:26:14Z An ounce of test it yourself on your system is worth a pound of someone else's tests on some other system. On the other hand, &quot;A coupla months in the laboratory can save a coupla hours in the library.&quot; -- Westheimer's Discovery http://stackoverflow.com/questions/1778266/wordpress-not-working-when-using-apache-virtual-hosts Comment by W. Craig Trader on Wordpress not working when using Apache virtual hosts W. Craig Trader 2009-11-24T21:38:45Z 2009-11-24T21:38:45Z Don't forget to accept an answer, if it solved your problem. http://stackoverflow.com/questions/1778390/check-if-email-are-valid-and-exists/1778433#1778433 Comment by W. Craig Trader on check if email are valid and exists W. Craig Trader 2009-11-22T18:51:54Z 2009-11-22T18:51:54Z That will be much harder (if not impossible) once UNICODE domains are allowed. http://stackoverflow.com/questions/1778552/how-can-the-submit-action-on-a-formform-form-be-automatically-fired-when Comment by W. Craig Trader on How can the submit action on a form(<form></form>) be automatically fired when all input elements within this form are completed/filled? W. Craig Trader 2009-11-22T12:28:44Z 2009-11-22T12:28:44Z Sounds like a bad idea to me. What if the user mis-types something in one of the fields? There's no way to verify and fix the data before it gets submitted. http://stackoverflow.com/questions/1778478/c-unsigned-int-array-and-bit-shifts Comment by W. Craig Trader on C unsigned int array and bit shifts W. Craig Trader 2009-11-22T11:56:28Z 2009-11-22T11:56:28Z Did you mean <code>shifting array[k] left</code>? http://stackoverflow.com/questions/1778293/how-to-confirm-php-enabled-on-ubuntu-server/1778358#1778358 Comment by W. Craig Trader on How to confirm php enabled on ubuntu server W. Craig Trader 2009-11-22T11:22:18Z 2009-11-22T11:22:18Z That URI only works if the root page is interpreted by PHP; if the URI isn't processed by PHP, nothing will happen. http://stackoverflow.com/questions/1778266/wordpress-not-working-when-using-apache-virtual-hosts Comment by W. Craig Trader on Wordpress not working when using Apache virtual hosts W. Craig Trader 2009-11-22T10:07:40Z 2009-11-22T10:07:40Z Presumably you have hosts entries that resolve 'bts' and 'cake' to 127.0.0.1, correct? http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775834#1775834 Comment by W. Craig Trader on What is a programming language? W. Craig Trader 2009-11-21T16:33:06Z 2009-11-21T16:33:06Z ASCII is an alphabet, as is Unicode.