User David - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T02:51:45Zhttp://stackoverflow.com/feeds/user/381http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/25063/how-to-mentor-a-junior-programmer26How to mentor a junior programmerDavid2008-08-24T14:05:31Z2009-12-01T17:11:07Z
<p>Does anyone have any suggestions on how to mentor a junior programmer ? If you have mentored someone did you follow any process or was it quite informal ?</p>
<p>If you've been mentored in the past what kind of things did you find most helpful ?</p>
http://stackoverflow.com/questions/3781/prototyping-a-gui-with-a-customer8Prototyping a GUI with a customerDavid2008-08-06T18:10:23Z2009-12-01T13:47:15Z
<p>When prototyping initial GUI functionality with a customer is it better to use a pen/paper drawing or to mock something up using a tool and show them that ?</p>
<p>The argument against a tool generated design being that the customer can sometimes focus on the low-level specifics of the mock-up rather than taking a higher level functional view of the GUI overall.</p>
http://stackoverflow.com/questions/1824836/comparing-fields-in-an-oracle-view1Comparing fields in an ORACLE viewDavid2009-12-01T08:49:42Z2009-12-01T09:46:52Z
<p>I have an ORACLE table which includes the following fields:</p>
<pre><code>FieldA1 NUMBER(10,0)
FieldA2 VARCHAR2(40 BYTE)
FieldB1 NUMBER(10,0)
FieldB2 VARCHAR2(40 BYTE)
</code></pre>
<p>How do I write an ORACLE view that reads from the table and if the following condition is true:</p>
<p>FieldA1 matches FieldB1 OR FieldA2 matches FieldB2</p>
<p>outputs the character 'Y' as one of the columns and if the condition above isn't true outputs 'N' ?</p>
http://stackoverflow.com/questions/67125/what-is-curl-good-for1What is cURL good for ?David2008-09-15T21:24:40Z2009-11-30T18:22:31Z
<p>What's the single best use you've put <a href="http://curl.haxx.se/" rel="nofollow">cURL</a> to ?</p>
http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do18Hello world: what did your first ever computer program do ?David2008-09-03T23:18:04Z2009-11-25T08:22:00Z
<p>If you can remember that far back, what did the first computer program you ever wrote do (once you had finished debugging it)?</p>
http://stackoverflow.com/questions/6847/defensive-programming8Defensive programmingDavid2008-08-09T17:02:56Z2009-11-23T23:51:15Z
<p>When writing code do you consciously program defensively to ensure high program quality and to avoid the possibility of your code being exploited maliciously, e.g. through buffer overflow exploits or code injection ?</p>
<p>What's the "minimum" level of quality you'll always apply to your code ?</p>
http://stackoverflow.com/questions/13699/choosing-a-c-unit-testing-tool-framework7choosing a c++ unit testing tool/frameworkDavid2008-08-17T16:12:14Z2009-11-18T10:34:20Z
<p>Could you recommend a testing tool/framework to use for testing C++ code in a UNIX environment ?</p>
http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement128Should a function have only one return statement ?David2008-08-31T09:26:55Z2009-11-16T11:54:40Z
<p>Are there good reasons why it's better practice to have only one return statement in a function ? </p>
<p>Or is it OK to return from a function as soon as it is logically correct to do so, meaning there may be many return statements in the function ?</p>
http://stackoverflow.com/questions/3553/one-piece-of-advice113One piece of adviceDavid2008-08-06T15:36:46Z2009-11-05T07:53:59Z
<p>If you could go back and give yourself one piece of advice at the start of your programming life/career to help you on your way what would it be ?</p>
http://stackoverflow.com/questions/1657305/how-do-i-use-the-c-date-and-time-functions-on-unix1How do I use the C date and time functions on UNIX?David2009-11-01T14:30:11Z2009-11-01T16:16:18Z
<p>Jon Skeet spoke of the complexity of programming dates and times at the 2009 DevDays in London. </p>
<p>Can you give me an introduction to the ANSI C date/time functions on UNIX and indicate some of the deeper issues I should also consider when using dates and times?</p>
http://stackoverflow.com/questions/1657305/how-do-i-use-the-c-date-and-time-functions-on-unix/1657307#16573079Answer by David for How do I use the C date and time functions on UNIX?David2009-11-01T14:31:37Z2009-11-01T16:16:18Z<h2>Terminology</h2>
<p>A date/time can be in two formats:</p>
<ul>
<li>calendar time (a.k.a. simpletime) – time as an absolute value typically since some base time, often referred to as the Coordinated Universal Time</li>
<li>localtime (a.k.a. broken-down time) – a calendar time made up of components of year, month, day etc. which takes into account the local time zone including Daylight Saving Time if applicable.</li>
</ul>
<h2>Data types</h2>
<p>The date/time functions and types are declared in the time.h header file.</p>
<p>Time can be stored as a whole number or as an instance of a structure:</p>
<ul>
<li><p>as a number using the <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Simple-Calendar-Time.html" rel="nofollow">time_t</a> arithmetic type – to store calendar time as the number of seconds elapsed since the UNIX epoch January 1, 1970 00:00:00</p></li>
<li><p>using the structure <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Elapsed-Time.html" rel="nofollow">timeval</a> – to store calendar time as the number of seconds and nanoseconds elapsed since the UNIX epoch January 1, 1970 00:00:00</p></li>
<li><p>using the structure <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Broken%5F002ddown-Time.html" rel="nofollow">tm</a> to store localtime, it contains attributes such as the following:</p>
<pre><code>tm_hour
tm_min
tm_isdst
</code></pre></li>
</ul>
<p>The tm_isdst attribute above is used to indicate Daylight Saving Time (DST). If the value is positive it is DST, if the value is 0 it is not DST.</p>
<h2>Program to print the current Coordinated Universal Time</h2>
<pre><code>#include <stdio.h>
#include <time.h>
int main ( int argc, char *argv[] )
{
time_t now;
now = time ( NULL );
printf ( “It’s %ld seconds since January 1, 1970 00:00:00”, (long) now );
return 0;
}
</code></pre>
<p>In the program above the function <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Simple-Calendar-Time.html" rel="nofollow">time</a> reads the UNIX system time, subtracts that from January 1, 1970 00:00:00 (the UNIX epoch) and returns its result in seconds.</p>
<h2>Program to print the current local time</h2>
<pre><code>#include <stdio.h>
#include <time.h>
int main ( int argc, char *argv[] )
{
time_t now;
struct tm *lcltime;
now = time ( NULL );
lcltime = localtime ( &now );
printf ( “The time is %d:%d\n”, lcltime->tm_hour, lcltime->tm_min );
return 0;
}
</code></pre>
<p>In the program above the function <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Broken%5F002ddown-Time.html" rel="nofollow">localtime</a> converts the elapsed time in seconds from the UNIX epoch into the broken-down time. localtime reads the UNIX environment TZ (through a call to the tzset function) to return the time relative to the timezone and to set the tm_isdst attribute.</p>
<p>A typical setting of the TZ variable in UNIX (using bash) would be as follows:</p>
<pre><code>export TZ=GMT
</code></pre>
<p>or</p>
<pre><code>export TZ=US/Eastern
</code></pre>
<h2>Program to print the current formatted Greenwich Mean Time</h2>
<pre><code>#include <stdio.h>
#include <time.h>
int main ( int argc, char *argv[] )
{
time_t now;
struct tm *gmt;
char formatted_gmt [50];
now = time ( NULL );
gmt = gmtime ( &now );
strftime ( formatted_gmt, sizeof(formatted_gmt), "%I:%M %p”, gmt );
printf ( “The time is %s\n”, formatted_gmt );
return 0;
}
</code></pre>
<p>In the program above the function <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Formatting-Calendar-Time.html" rel="nofollow">strftime</a> provides specialised formatting of dates.</p>
<h2>Other issues to consider</h2>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Leap%5Fsecond" rel="nofollow">Leap seconds</a></li>
<li><a href="http://stackoverflow.com/questions/36239/what-should-we-do-to-prepare-for-2038">What should we do to prepare for 2038?</a></li>
</ul>
http://stackoverflow.com/questions/1620188/how-can-i-set-the-time-zone-before-calling-strftime/1620451#16204512Answer by David for How can I set the time zone before calling strftime?David2009-10-25T09:20:47Z2009-10-25T09:20:47Z<p>The following program sets the UNIX environment variable TZ with your required timezone and then prints a formatted time using strftime.</p>
<p>In the example below the timezone is set to U.S. Pacific Time Zone .</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main (int argc, char *argv[])
{
struct tm *mt;
time_t mtt;
char ftime[10];
setenv("TZ", "PST8PDT", 1);
tzset();
mtt = time(NULL);
mt = localtime(&mtt);
strftime(ftime,sizeof(ftime),"%Z %H%M",mt);
printf("%s\n", ftime);
}
</code></pre>
http://stackoverflow.com/questions/3231/c-c-library-for-reading-midi-signals-from-a-usb-midi-device3C/C++ library for reading MIDI signals from a USB MIDI deviceDavid2008-08-06T09:51:06Z2009-10-23T17:48:20Z
<p>I want to write C/C++ programs that take input from a MIDI device. </p>
<p>The MIDI device connects to my PC using a USB connector. </p>
<p>I'm looking for a (C/C++ implemented) library that I can use to read the MIDI signals from the MIDI device through the USB port.</p>
<p>I'm happy manipulating the MIDI data once I get it, I just don't want to have to implement the code for its capture.</p>
<p>I'm planning on writing my code using the Bloodshed Dev-C++ IDE on Windows XP.</p>
http://stackoverflow.com/questions/3247/identifying-passionate-programmers70Identifying passionate programmersDavid2008-08-06T10:10:43Z2009-10-09T06:11:33Z
<p>I'm hiring a programmer, how can I differentiate the good programmers from those good programmers who have a real passion for their work ?</p>
http://stackoverflow.com/questions/125898/tool-for-calculating-cyclomatic-complexity6Tool for calculating cyclomatic complexityDavid2008-09-24T07:49:13Z2009-08-27T11:46:33Z
<p>Can you recommend free tools for calcualting cyclomatic complexity. Looking for all languages. </p>
<p>One tool/language per answer please.</p>
http://stackoverflow.com/questions/1287362/function-format-in-a-c-program3Function format in a C programDavid2009-08-17T11:07:52Z2009-08-17T12:27:15Z
<p>I'm writing some functions that manipulate strings in C and return extracts from the string.</p>
<p>What are your thoughts on good styles for returning values from the functions.</p>
<p>Referring to <a href="http://www.stevemcconnell.com/cc1.htm" rel="nofollow">Steve McConnell's Code Complete</a> (section 5.8 in 1993 edition) he suggests I use
the following format:</p>
<pre><code>void my_function ( char *p_in_string, char *p_out_string, int *status )
</code></pre>
<p>The alternatives I'm considering are:</p>
<p>Return the result of the function (option 2) using: </p>
<pre><code>char* my_function ( char *p_in_string, int *status )
</code></pre>
<p>Return the status of the function (option 3) using: </p>
<pre><code>int my_function ( char *p_in_string, char *p_out_string )
</code></pre>
<p>In option 2 above I would be returning the address of a local variable from my_function but my calling function would be using the value immediately so I consider this to be OK and assume the memory location has not been reused (correct me on this if I'm wrong).</p>
<p>Is this down to personal style and preference or should I be considering other issues ?</p>
http://stackoverflow.com/questions/1131625/how-do-you-create-a-utc-time-in-c-for-a-specific-day-month-and-year1How do you create a UTC time in C for a specific day, month and year ?David2009-07-15T14:07:21Z2009-07-15T15:45:39Z
<p>How do I create a UTC time in C for the following date:</p>
<p>1st July 2038</p>
<p>using standard ANSI C function calls (given that the tm_year element of the tm structure cannot be greater than 137) ?</p>
http://stackoverflow.com/questions/2873/choosing-a-static-code-analysis-tool13Choosing a static code analysis toolDavid2008-08-05T21:19:40Z2009-05-10T22:05:15Z
<p>I'm working on a project where I'm coding in C in a UNIX environment. I've been using the lint tool to check my source code. Lint has been around a long time (since 1979), can anyone suggest a more recent code analysis tool I could use ? Preferably a tool that is free.</p>
http://stackoverflow.com/questions/14279/how-to-estimate-the-length-of-a-programming-task28How to estimate the length of a programming taskDavid2008-08-18T07:37:54Z2009-03-23T20:12:41Z
<p>What process do you use to estimate how long a (significant) programming task will take. Do you use one or more of the following:</p>
<ul>
<li>intuition/guessing</li>
<li>reference to similar tasks whose estimated/actual lengths you recorded</li>
<li>reference to the lengths of similar task others recorded</li>
<li>saying it will take the length of time allocated for it (by your manager)</li>
</ul>
http://stackoverflow.com/questions/591467/how-do-i-call-an-oracle-function-from-oci0How do I call an ORACLE function from OCI ?David2009-02-26T17:05:24Z2009-02-26T18:33:31Z
<p>I can call an ORACLE stored procedure through OCI in a C program by constructing the SQL command for the command, here's a brief snippet from my code:</p>
<pre><code> /* build sql statement calling stored procedure */
strcpy ( sql_stmt, "call get_tab_info(:x)" );
rc = OCIStmtPrepare(p_sql, p_err, sql_stmt,
(ub4) strlen (sql_stmt), (ub4) OCI_NTV_SYNTAX, (ub4) OCI_DEFAULT);
</code></pre>
<p>But how do I construct a call (in my C program) to an ORACLE function with the following signature:</p>
<pre><code> CREATE OR REPLACE FUNCTION get_seq_number (p_table_name IN VARCHAR2, p_seq_type IN VARCHAR2)
RETURN NUMBER IS
</code></pre>
<p>To call the function in PL/SQL I would use for example:</p>
<pre><code> v_seq := get_seq_number(v_tabname, v_seqtype);
</code></pre>
<p>How do I construct the SQL character array (sql_stmt) to call the ORACLE function in my C program ?</p>
http://stackoverflow.com/questions/4519/using-xming-x-window-server-over-a-vpn0Using Xming X Window Server over a VPNDavid2008-08-07T08:20:47Z2009-02-15T20:57:10Z
<p>I have the Xming X Window Server installed on a laptop running Windows XP to connect to some UNIX development servers. </p>
<p>It works fine when I connect directly to the company network in the office. However, it does not work when I connect to the network remotely over a VPN.</p>
<p>When I start Xming when connected remotely none of my terminal windows are displayed.</p>
<p>I think it may have something to do with the DISPLAY environment variable not being set correctly to the IP address of the laptop when it is connected.</p>
<p>I've noticed that when I do an ipconfig whilst connected remotely that my laptop has two IP addresses, the one assigned to it from the company network and the local IP address I've set up for it on my "local network" from my modem/router.</p>
<p>Are there some configuration changes I need to make in Xming to support its use through the VPN ?</p>
http://stackoverflow.com/questions/540856/detecting-the-number-of-oracle-rows-updated-by-a-oci-ocistmtexecute-call0Detecting the number of ORACLE rows updated by a OCI OCIStmtExecute callDavid2009-02-12T11:09:07Z2009-02-12T12:01:10Z
<p>I have an ORACLE update statement that I call using the OCIStmtExecute function call. </p>
<p>Using an OCI function call I would like to know how many rows have been updated by the action, e.g. zero, one or more.</p>
<p>How do I do this ?</p>
http://stackoverflow.com/questions/540856/detecting-the-number-of-oracle-rows-updated-by-a-oci-ocistmtexecute-call/540985#5409851Answer by David for Detecting the number of ORACLE rows updated by a OCI OCIStmtExecute callDavid2009-02-12T12:01:10Z2009-02-12T12:01:10Z<p>Use the OCIAttrGet function call on your OCIStmt statement handle with the attribute type set to OCI_ATTR_ROW_COUNT</p>
<p>So add the folllowing code to your program :</p>
<pre><code> ub4 row_count;
rc = OCIAttrGet ( stmthp, OCI_HTYPE_STMT, &row_count, 0, OCI_ATTR_ROW_COUNT,
errhp );
</code></pre>
<p>where:</p>
<p><code>stmthp</code> is the OCIStmt statement handle</p>
<p><code>errhp</code> is the OCIError error handle</p>
<p><code>rc</code> is the defined return code (sword)</p>
<p>The number of rows updated (or deleted and inserted if that is your operation) is written into the passed row_count variable</p>
http://stackoverflow.com/questions/5905/writing-a-good-resume-cv24Writing a good resume/CVDavid2008-08-08T13:30:59Z2009-02-12T11:47:25Z
<p>An experienced programmer writing an effective resume/CV can have difficulties presenting the information they want whilst Keeping its length under the suggested 2 pages.</p>
<p>What's the most effective way to summarise your experience in languages/tools/methodologies etc ?</p>
<p>For example: do you present the information in tables or bulleted lists ? What terms do you use to indicate proficiency in a specific area: beginner, proficient, guru ?</p>
<p>Also, how do you draw attention to your online reputation in the document beyond specifying URL's ?</p>
http://stackoverflow.com/questions/482647/detecting-a-column-with-a-default-value-using-the-oracle-call-interface-oci1Detecting a column with a default value using the Oracle Call Interface (OCI)David2009-01-27T08:35:32Z2009-01-29T22:25:31Z
<p>I'm optimising a bespoke database layer in a messaging system to increase performance.</p>
<p>I'm using the ORACLE OCI OCIDescribeAny function to get meta-data about the columns in a database table.</p>
<p>How do I check the meta-data using an OCI call to see if a column has a default value set (in its schema definition).</p>
http://stackoverflow.com/questions/7651/how-do-i-remove-duplicate-items-from-an-array-in-perl10How do I remove duplicate items from an array in Perl?David2008-08-11T10:04:32Z2009-01-23T23:35:59Z
<p>I have an array in Perl:</p>
<pre><code>@my_array = ("one","two","three","two","three")
</code></pre>
<p>How do I remove the duplicates from the array?</p>
http://stackoverflow.com/questions/4724/learning-lisp-why14Learning Lisp - Why ?David2008-08-07T13:54:03Z2008-12-09T10:42:27Z
<p>I really feel that I should learn Lisp and there are plenty of good resources out there to help me do it.</p>
<p>I'm not put off by the complicated syntax, but where in "traditional commercial programming" would I find places it would make sense to use it instead of a procedural language.</p>
<p>Is there a commercial killer-app out there that's been written in Lisp ?</p>
http://stackoverflow.com/questions/325826/oracle-10-2-proc-precompiler-not-reading-header-file1ORACLE 10.2 Pro*C precompiler not reading header fileDavid2008-11-28T13:59:21Z2008-11-28T16:33:16Z
<p>I'm pre-compiling a C program containing Pro*C code with ORACLE 10.2 and AIX 5.2</p>
<p>The ORACLE precompiler reads the $ORACLE_HOME/precomp/admin/pcscfg.cfg file which contains the definition of the sys_include variable (set to /usr/include)</p>
<p>The Pro*C compiler complains that it doesn't know what the size_t type is and the ORACLE header files that use the size_t type are reporting errors</p>
<p>Here's an example error being reported on the sqlcpr.h file :</p>
<p>extern void sqlglm( char*, size_t*, size_t* );</p>
<p>...........................1</p>
<p>PCC-S-02201, Encountered the symbol "size_t" when expecting one of the following</p>
<p>size_t is defined in the stdio.h header file in the /usr/include directory. I'm including the stdio.h header in my example.pc file before I include the sqlcpr.h header.</p>
<p>I'm issuing the proc command as follows:</p>
<p>proc iname=example parse=full</p>
<p>Any ideas what I'm doing wrong ?</p>
http://stackoverflow.com/questions/20787/when-to-use-stl-bitsets-instead-of-separate-variables3When to use stl bitsets instead of separate variablesDavid2008-08-21T18:57:59Z2008-11-19T04:32:19Z
<p>In what situation would it be more appropriate for me to use a bitset (stl container) to manage a set of flags rather than having them declared as a number of separate (bool) variables ?</p>
<p>Will I get a significant performance gain if I used a bitset for 50 flags rather than using 50 separate bool variables ?</p>
http://stackoverflow.com/questions/42778/which-perl-database-interface-should-i-use8Which Perl database interface should I use?David2008-09-03T22:53:42Z2008-11-07T23:00:09Z
<p>Is <a href="http://cpan.uwinnipeg.ca/dist/DBI" rel="nofollow">CPAN DBI</a> the best database interface to use in Perl for general database use? Are there some better options?</p>
http://stackoverflow.com/questions/1287362/function-format-in-a-c-program/1287393#1287393Comment by David on Function format in a C programDavid2009-08-17T11:24:55Z2009-08-17T11:24:55ZI've seen this style a few times before, I guess it's useful so you can include the call within a conditional operation and test its return within the conditional call. http://stackoverflow.com/questions/728535/passing-c-array-as-char-function-parameter/730403#730403Comment by David on Passing C array as char* function parameterDavid2009-07-15T16:18:39Z2009-07-15T16:18:39ZTo quote from page 99: "When an array name is passed to a function, what is passed is the location of the initial element"http://stackoverflow.com/questions/728535/passing-c-array-as-char-function-parameterComment by David on Passing C array as char* function parameterDavid2009-07-15T16:07:15Z2009-07-15T16:07:15ZThe name of the character array is an alias for the address of the first element of the array.http://stackoverflow.com/questions/591467/how-do-i-call-an-oracle-function-from-oci/591848#591848Comment by David on How do I call an ORACLE function from OCI ?David2009-02-27T09:05:30Z2009-02-27T09:05:30ZThank you for the answer Thomas, I did as you said and it works correctly.http://stackoverflow.com/questions/540856/detecting-the-number-of-oracle-rows-updated-by-a-oci-ocistmtexecute-call/540983#540983Comment by David on Detecting the number of ORACLE rows updated by a OCI OCIStmtExecute callDavid2009-02-12T12:02:13Z2009-02-12T12:02:13ZThanks Quassnoi I'd just worked it out too myself and have posted an answer as well. Thanks for looking at it.http://stackoverflow.com/questions/482647/detecting-a-column-with-a-default-value-using-the-oracle-call-interface-oci/493751#493751Comment by David on Detecting a column with a default value using the Oracle Call Interface (OCI)David2009-02-05T10:03:05Z2009-02-05T10:03:05ZThanks for the answer Alan and the link to the Oracle forum.http://stackoverflow.com/questions/482647/detecting-a-column-with-a-default-value-using-the-oracle-call-interface-oci/482731#482731Comment by David on Detecting a column with a default value using the Oracle Call Interface (OCI)David2009-01-27T15:44:24Z2009-01-27T15:44:24ZI don't want the additional perfomance hit of doing another select on the database.http://stackoverflow.com/questions/482647/detecting-a-column-with-a-default-value-using-the-oracle-call-interface-oci/482731#482731Comment by David on Detecting a column with a default value using the Oracle Call Interface (OCI)David2009-01-27T09:19:03Z2009-01-27T09:19:03ZThanks for the suggestion, however I'm looking for an OCI call to get the default status from the OCI data structures.
I don't want to have to do an additional select on those tables to get the value for each column.http://stackoverflow.com/questions/129724/why-arent-people-searching-the-web-or-checking-wikipedia-before-posting-question/129745#129745Comment by David on Why aren't people searching the web or checking Wikipedia before posting questions?David2008-09-24T20:36:17Z2008-09-24T20:36:17ZStackOverflow provides a shortcut to quality answers.