User EvilTeach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:31:14Zhttp://stackoverflow.com/feeds/user/7734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822332/how-to-sniff-the-number-of-records-in-a-binary-file-before-reading-into-an-array/1822348#18223482Answer by EvilTeach for How to sniff the number of records in a binary file before reading into an array in the C programming language?EvilTeach2009-11-30T20:58:19Z2009-11-30T20:58:19Z<p>What kind of records are they?</p>
<p>If they are of a fixed length, take the file size, and divide it by the record size.</p>
http://stackoverflow.com/questions/1820815/how-to-help-to-an-underperforming-newbie-do-a-better-job/1821140#18211406Answer by EvilTeach for How to help to an underperforming newbie do a better job?EvilTeach2009-11-30T17:17:55Z2009-11-30T17:17:55Z<p>You want to bring him up to your professional standards?
Great.
You need to teach him what they are.
From a mentoring viewpoint, don't drop all the rules on him at the same time.
Work a new one in every day. Over time he will get there, or get rid of him.</p>
<p>One thing that is missing from your list is code reviews.
Yes, you should review all of his code, but....
He should review all of your code as well.
The learning goes in both directions that way.
It will make him feel like part of the team.</p>
http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together/1813486#18134860Answer by EvilTeach for What should I name a table that maps two tables together?EvilTeach2009-11-28T19:20:12Z2009-11-28T19:20:12Z<p>Call it a cross reference table.</p>
<pre><code>XREF_COLOR_SHAPE
(
XCS_ID INTEGER
C_ID INTEGER
S_ID INTEGER
)
</code></pre>
http://stackoverflow.com/questions/1776634/design-and-readbility/1779046#17790464Answer by EvilTeach for Design and Readbility.EvilTeach2009-11-22T15:31:45Z2009-11-22T15:31:45Z<p>Port it into <a href="http://en.wikipedia.org/wiki/Doxygen" rel="nofollow">Doxygen</a> as a first step.
Modifying comments should have no effect on the code.
Doxygen will allow you to get an overview of the structure of the program.</p>
<p>Over time, as you figure out more about the program, you add comments that get picked up by Doxygen. The quality of the document grows over time, and will be helpful to the next poor SOB that gets stuck with the program</p>
http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772494#17724942Answer by EvilTeach for C - the most useful user-made C-macros (in GCC, also C99) ?EvilTeach2009-11-20T18:45:50Z2009-11-21T03:18:57Z<pre><code>#define COLUMNS(S,E) [ (E) - (S) + 1 ]
struct
{
char firstName COLUMNS ( 1, 20);
char LastName COLUMNS (21, 40);
char ssn COLUMNS (41, 49);
}
</code></pre>
<p>Save yourself some error prone counting</p>
http://stackoverflow.com/questions/1717991/throwing-an-exception-from-within-a-signal-handler0Throwing an exception from within a signal handlerEvilTeach2009-11-11T20:53:18Z2009-11-11T22:19:01Z
<p>We have a library that deals with many aspects of error reporting. I have been tasked to port this library to Linux. When running though my little test suite, one of the tests failed. A simplified version of the test appears below.</p>
<pre><code>/*
Compiler:
4.1.1 20070105 RedHat 4.1.1-52
Output
terminate called after throwing an instance of 'int'
abort
*/
#include <iostream>
#include <csignal>
using namespace std;
void catch_signal
(
int signalNumber
)
{
signal(SIGINT, SIG_DFL);
throw(signalNumber);
}
int test_signal
(
void
)
{
signal(SIGINT, catch_signal);
try
{
raise(SIGINT);
}
catch (int &z)
{
cerr << "Caught exception: " << z << endl;
}
return 0;
}
int main
(
void
)
{
try
{
test_signal();
}
catch (int &z)
{
cerr << "Caught unexpected exception: " << z << endl;
}
return 0;
}
</code></pre>
<p>My expectation is that the <strong>Caught exception:</strong> message will be displayed. What actually happens is that the program terminates as no catch handler appears to be present for the thrown int.</p>
<p>There are a few questions on SO that seem related.
I found a number of Google pages that were related.
The 'wisdom' seems to boil down to.</p>
<ol>
<li>Ya can't throw exceptions from signal handlers, cause the signal
handler runs with its own stack, so there are no handlers defined on it.</li>
<li>Ya can throw exceptions from signal handlers, just reconstruct a fake
frame on the stack, and you are good to go. </li>
<li>Ya, we do it all the time. It works for me on platform X</li>
<li><p>Ya, that used to be available with gcc, but doesn't seem to work any
more. try the <strong>-fnon-call-exceptions</strong> and <strong>-fnon-call-exceptions</strong> options maybe that will work</p>
<p>The code works correctly on our AIX/TRU64/MSVC compiler/environments. It fails in our Linux environment. </p></li>
</ol>
<p><BR>
<strong>I am looking for suggestions to help resolve this issue so the library behavior on Linux will match my other platforms, or some sort or workaround that might achieve the same sort of functionality.
<br>
Letting the program core dump on signal, is not a viable option.</strong></p>
http://stackoverflow.com/questions/454349/aspergers-syndrome-what-do-you-do-to-cope-at-work-what-accomodations-has-yo6Asperger's Syndrome - What do you do to cope at work? What accomodations has your employer made?EvilTeach2009-01-18T00:08:14Z2009-11-04T17:11:54Z
<p>My biggest issue is noise-distractions. I am in a cube farm, and there are usually 5-6 conversations going on at the same time. I use my shooting muffs a lot of time, and listen to music. I also permission to do coding at home, in a more quiet environment when necessary.</p>
<p><strong>What do you do?</strong></p>
<p><strong>What does your employer do?</strong></p>
http://stackoverflow.com/questions/447364/how-much-code-do-you-tend-to-write-before-you-test1How much code do you tend to write before you test?EvilTeach2009-01-15T16:07:18Z2009-11-04T11:19:16Z
<p>I have noted over the years, that I tend to write maybe a screen full of code, then test to make sure it does what it should.</p>
<p>Some of the benefits of this technique are</p>
<blockquote>
<p>Syntax errors are a result of the new code,
so you don't have to look far to find the cause.</p>
<p>It is cheap to set up a temporary condition, that lets you test the else
clause of an if statement, so you can be sure to get error messages,
and the like correct when they are cheap to test.</p>
</blockquote>
<p><strong>How do you tend to code?<br />
What benefits do you get by doing it that way?</strong></p>
<p>EDIT: Like most of my questions, I really haven't set the context well enough. I am not really talking about unit test level granularity. I am referring to making sure the local bit of code does exactly what I intend it to, at the time of implementation.</p>
http://stackoverflow.com/questions/1662229/c-all-type-parameter/1662677#16626772Answer by EvilTeach for C all type parameterEvilTeach2009-11-02T17:46:37Z2009-11-02T17:46:37Z<p>You might consider the printf approach. It passes in an argument, that identifies the type for the called function.</p>
<pre><code>printf("%d", intvalue);
printf("%f", floatvalue);
printf("%s", stringvalue);
</code></pre>
<p>Here is a <a href="http://tread.wordpress.com/2007/02/20/variable-arguments-in-c/" rel="nofollow">link</a> that demonstrates how to implement a variable argument list.</p>
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code82What is your most useful sql trick to avoid writing more code?EvilTeach2009-01-28T15:25:31Z2009-11-01T23:49:16Z
<p>I am intending this to be an entry which is a resource for anyone to find out about aspects of sql that they may have not run into yet, so that the ideas can be stolen and used in their own programming. With that in mind...</p>
<p><strong>What sql tricks have you personally used, that made it possible for you to do less actual real world programming to get things done?</strong></p>
<p>[EDIT]</p>
<p>A fruitful area of discussion would be specific techniques that allow you to do operations on the database side, that make it unnecessary to pull the data back to the program, then update/insert it back to the database.</p>
<p>[EDIT]</p>
<p>The bounty button showed up today. The question had 18 upvotes + 9 upvotes for my answer. So that's roughly 270 rep points. I decided to double it, so 540 was the value. The slider bar that lets you specify the value, only goes up to 500, so 500 it is.</p>
<p>We have some pretty good ideas in here. I am hoping the promise of the bounty will bring some more entries in. I expect to pick one before the week expires.</p>
<p>I recommend that you flesh out your answer where possible to make it easy for the reader to understand the value that your technique provides. Visual examples work wonders. The winning answer will have good examples.</p>
<p>My thanks to everyone who shared an idea with the rest of us.</p>
http://stackoverflow.com/questions/1646953/how-does-one-cheaply-validate-the-existance-of-a-column-in-a-table-in-another-sch0How does one cheaply validate the existance of a column in a table in another schema with Oracle?EvilTeach2009-10-29T22:20:17Z2009-10-30T14:20:14Z
<p>The environment is Oracle 9 & 10. I do not have DBA level access.</p>
<p>The problem is to verify that a specific column exists in a specific table, in another schema.</p>
<p>There are two cases to deal with. </p>
<ol>
<li>Another schema in the same instance </li>
<li>A schema in a different instance, using a db_link</li>
</ol>
<p>Given my schema FRED and another schema BARNEY, I tried something like this</p>
<pre><code>SELECT 1
FROM BARNEY.USER_TAB_COLS
WHERE TABLE_NAME = 'SOME_TABLE'
AND COLUMN_NAME = 'SOME_SPECIFIC_COLUMN'
</code></pre>
<p>Which yielded <strong>[1]: (Error): ORA-00942: table or view does not exist</strong></p>
<p>After vegging on this awhile, I realized that USER_TAB_COLS, is not really a table. It is a view. I have been selecting from tables all along, but not from a view.</p>
<p>I tried the same thing with my db_link, and was surprised to see data come back. A db_link has an embedded schema_name/password in it, so it seems reasonable to me that it worked, as it effectively logs in to the other schema, which should make the views reachable.</p>
<p>Having Googled around, and worn out my eyeballs on on the mountain of Oracle doc,
I am looking for someone to point me in the correct direction, or at least point out what I am missing.</p>
<p><strong>What techniques are available for getting user table related metadata from a schema in the same instance in order to validate that a specific column exists?</strong></p>
<p>Thanks in advance.</p>
<p>Evil.</p>
<p>+1 for good answers.
Thank you.</p>
http://stackoverflow.com/questions/56895/proving-sql-query-equivalency/98609#986093Answer by EvilTeach for Proving SQL query equivalencyEvilTeach2008-09-19T01:23:24Z2009-10-20T16:34:40Z<p>This is pretty easy to do.</p>
<p>Lets assume your queries are named a and b</p>
<p><strong>a
minus
b</strong></p>
<p>should give you an empty set. If it does not. then the queries return different sets, and the result set shows you the rows that are different.</p>
<p>then do</p>
<p><strong>b
minus
a</strong></p>
<p>that should give you an empty set. If it does, then the queries do return the same sets.
if it is not empty, then the queries are different in some respect, and the result set shows you the rows that are different.</p>
http://stackoverflow.com/questions/1591993/how-to-get-pathname-to-executing-binary/1592188#15921880Answer by EvilTeach for How to get pathname to executing binary?EvilTeach2009-10-20T02:42:28Z2009-10-20T02:42:28Z<p>Would simply grabbing argV[0] do the job?</p>
<pre><code>int main
(
int argC,
char **argV
)
{
std::cout << argV[0] << std::endl;
}
</code></pre>
http://stackoverflow.com/questions/1580472/aix-does-not-install-shared-lib/1581119#15811190Answer by EvilTeach for AIX- Does not install shared libEvilTeach2009-10-17T01:09:26Z2009-10-17T01:09:26Z<p>So you are trying to compile to the shared library location.</p>
<p>I would suggest seeing if you can compile/link to your local directory.</p>
<p>If that works, try copying the new library to the correct directory. It may be that the oldshared library is open by some process and therefore can't be overwritten.</p>
<p>Are you getting any error messages?</p>
http://stackoverflow.com/questions/305797/oracle-populate-backup-table-from-primary-table1Oracle Populate backup table from primary tableEvilTeach2008-11-20T16:01:00Z2009-10-16T13:47:47Z
<p>The program that I am currently assigned to has a requirement that I copy the contents of a table to a backup table, prior to the real processing.</p>
<p>During code review, a coworker pointed out that</p>
<pre><code>INSERT INTO BACKUP_TABLE
SELECT *
FROM PRIMARY_TABLE
</code></pre>
<p>is unduly risky, as it is possible for the tables to have different columns, and different column orders.</p>
<p>I am also under the constraint to not create/delete/rename tables. ~Sigh~</p>
<p>The columns in the table are expected to change, so simply hard-coding the column names is not really the solution I am looking for.</p>
<p>I am looking for ideas on a reasonable non-risky way to get this job done.</p>
<p>Thanks.</p>
<p>Evil.</p>
http://stackoverflow.com/questions/1548495/can-a-program-figure-out-its-oracle-resource-usage4Can a program figure out its Oracle resource usage?EvilTeach2009-10-10T17:09:56Z2009-10-10T19:08:21Z
<p>My boss would like to find a way for a running executable to ask Oracle, the size of the resources that the program is used. The purpose behind this is so that we can add to the
user documentation/capacity planning documentation information on the size of the resources needed for each program.</p>
<p>My Google-Fu is weak today, and I really haven't been able to find anything in the docs or online that point toward an API that would help me accomplish this.</p>
<p>Does anyone have any experiences they can share? Or suggest leads for me to follow?</p>
<p>All on topic answers get +1, as a thank you.</p>
<p>Evil.</p>
http://stackoverflow.com/questions/264050/have-you-used-a-traveling-salesman-algorithm-to-solve-a-problem11Have you used a traveling salesman algorithm to solve a problem?EvilTeach2008-11-05T00:56:19Z2009-10-07T21:21:01Z
<p>I studied TSP in college in the context of NP Completeness. I have never actually had a situation where it would apply to a practical problem. A little bit of research shows that it has been used to pick the cheapest path to move a drill around, that is making holes in circuit boards. That is pretty much all I could find.</p>
<p>Are you using it? What other practical applications does the TSA have?</p>
http://stackoverflow.com/questions/1523283/c-strcmp-array/1523287#15232873Answer by EvilTeach for C++ strcmp array EvilTeach2009-10-06T02:08:04Z2009-10-06T02:13:24Z<p><strong>opcode_read</strong> is not a string. There is no NUL termination.
Change its size to 3, so you pick up a NUL in the third position.</p>
<pre><code>const char opcode_read[3] = {'0', '1'};
</code></pre>
<p>An alternative would be to use <strong>memcmp</strong> instead of <strong>strcmp</strong> so you don't have to worry about the pesky NUL terminator.</p>
<p>The <strong>recvfrom</strong> call is a bit scary too. If I recall my TCPIP correctly. There is no guarantee that the function will return 2 bytes in one call. It may return one byte, in the first call, and the second byte in the second call. </p>
http://stackoverflow.com/questions/1506156/efficient-ways-of-telling-whether-or-not-a-string-file-has-changed-crc32-md5/1506295#15062951Answer by EvilTeach for Efficient ways of telling whether or not a string/file has changed - crc32? md5? something else? EvilTeach2009-10-01T20:31:15Z2009-10-01T20:31:15Z<p>CRC32, or CRC64 will do the job just fine.</p>
<p>You might even be able to use it as a basis for some sort of hash lookup.</p>
http://stackoverflow.com/questions/1503670/in-windbg-can-i-use-software-breakpoints-without-having-symbols/1503773#15037730Answer by EvilTeach for In WinDbg, can I use software breakpoints without having symbols?EvilTeach2009-10-01T12:51:04Z2009-10-01T12:51:04Z<p>To add symbols, you need to make a debug build</p>
<p><strong>BUILD</strong> menu item</p>
<p><strong>Set Active Configuration</strong></p>
<p>Select the <strong>Debug Configuration</strong>, instead of the release configuration.
Rebuild everything, and your symbols should be there.</p>
http://stackoverflow.com/questions/344421/are-there-any-project-planning-tools-which-can-handle-a-estimate-range1Are there any project planning tools which can handle a estimate range?EvilTeach2008-12-05T16:35:06Z2009-09-27T07:16:19Z
<p>Some people have suggested that when doing an estimate one should make a lower and upper range on the expected time to delivery. The few project tools I have seen, seem to demand one fixed date. Are there any tools that support this concept of a estimation range?</p>
http://stackoverflow.com/questions/1478299/a-free-and-relatively-simple-ide-for-windows-xp-vista-7/1478836#14788360Answer by EvilTeach for A free and relatively simple IDE for Windows XP/Vista/7?EvilTeach2009-09-25T18:20:30Z2009-09-25T18:20:30Z<p>Install Perl.</p>
<p>Create a tool that runs a perl script to ftp the files in your project to the unix machine.</p>
<p>Associate that tool, with a button.</p>
<p>When you want to move the file, click the button, and they land on the unix box in short order.</p>
http://stackoverflow.com/questions/1472425/how-can-i-open-a-word-document-read-only-from-perl2How can I open a Word document read-only from Perl?EvilTeach2009-09-24T15:26:27Z2009-09-25T01:33:27Z
<p>Is there any method within Perl which would allow me to get the object in a read only mode,
so as to avoid the dialog that pops up if the file is locked by another user?</p>
<pre><code>$document = Win32::OLE->GetObject("$docFile")
or die "can't open $docFile";
</code></pre>
http://stackoverflow.com/questions/987182/improving-the-way-we-write-code/987433#9874330Answer by EvilTeach for Improving the way we write code?EvilTeach2009-06-12T15:48:00Z2009-09-24T10:01:23Z<p>The basic flaw in the whole process is the concept of putting source code into a text file in order to be able to compile it.</p>
<p>It is put into a text file, because the that is the sort of input that the compiler demands.
This is a 50 year old idea that ought to be rethought.</p>
<p>The compiler/linker ought to be integrated with an IDE, to free the programmer from worrying about what code goes in what module, and what do I have to do to make this code visible over there. Globals? Externs? #include files, Library Paths... toss them out the window.</p>
<p>One ought to be able to open an IDE, and see a list of projects. You open one of them up.
If you are a designer, you see design documentation.
If you are a developer, you see the code.
If you are a user, you see the wiki.</p>
<p>The design documentation is hyperlinked to the code, and the code back to the doc, and back to the users guide, so you can get to any level you need. So you are in some function, and you wonder "Why on earth did they do it that way?" You follow the link to the design specification to see why. You follow from there to the requirements document. You follow that to the name of the person who suggested it as a requirement.</p>
<p>All the file management go. It is left to the internals of the IDE.</p>
http://stackoverflow.com/questions/1450896/defragmenting-c-heap-allocator-stl/1451386#14513860Answer by EvilTeach for Defragmenting C++ Heap Allocator & STLEvilTeach2009-09-20T16:23:57Z2009-09-20T16:23:57Z<p>An alternative technique which is fairly well known is the <a href="http://en.wikipedia.org/wiki/Buddy%5Fmemory%5Fallocation" rel="nofollow">buddy system</a>. You should take a look at that for additional inspiration.</p>
http://stackoverflow.com/questions/1424763/appending-data-to-a-null-character-in-character-array-to-send-data-through-socket/1424801#14248010Answer by EvilTeach for Appending data to a null character in character array to send data through socketEvilTeach2009-09-15T02:13:35Z2009-09-15T02:13:35Z<p>strlen stops at the NUL character, and does not count it.
You can simply add one to that length</p>
http://stackoverflow.com/questions/1413224/is-there-a-technique-to-determine-if-a-dos-app-was-invoked-via-sentto-vs-a-dos-wi0Is there a technique to determine if a dos app was invoked via sentto vs a dos window?EvilTeach2009-09-11T20:54:29Z2009-09-11T21:06:52Z
<p>In the case of a sendto invocation, I would like to keep the application open, after it completes, so the user can look at it.</p>
<p>In the case of a dos window invocation, the user controls when the window closes.</p>
<p>The platform is XP using msvc 6</p>
http://stackoverflow.com/questions/1360279/learning-assembly/1397235#13972350Answer by EvilTeach for Learning assemblyEvilTeach2009-09-09T02:06:47Z2009-09-09T02:06:47Z<p>To actually reach your goal, you might consider starting with the IDE you are in.
The generally is a disassembler window, so you can do single stepping through code. There is usually a view of some sort to let you see the registers and look into memory areas. </p>
<p>Examination of unoptimized c/c++ code will help build a link into the kind of code that the compiler generates for your sources. Some compilers have some sort of ASM reserved word
which lets you insert machine instructions in your code.</p>
<p>My advice would be to play around with those sorts of tools for a while and get your feet wet,
then step up? down? to straight assembler code on what ever platform you are running on.</p>
<p>There are a lot of great tools out there, but you might find it more fun, to avoid the steep learning curve at first.</p>
http://stackoverflow.com/questions/1389838/how-to-debug-macros-efficiently-in-vs/1390157#13901572Answer by EvilTeach for How to debug macros efficiently in VS?EvilTeach2009-09-07T16:45:25Z2009-09-07T19:44:22Z<p>The compiler expands macros nicely.
Get a compilation listing with the macros expanded.</p>
<p>Insert the expanded macro into your code.
Recompile and you should be able to step through it,
to do a simple test.</p>
<p>Generally when I am building a complicated macro,
I hard code it first, and test it.
Then I turn it into a macro.</p>
<p>For 2008, <a href="http://www.codeproject.com/KB/recipes/wave%5Fpreprocessor.aspx" rel="nofollow">this</a> may be of help</p>
http://stackoverflow.com/questions/1389605/sql-find-missing-ids-in-a-table/1390175#13901751Answer by EvilTeach for SQL: find missing IDs in a tableEvilTeach2009-09-07T16:51:59Z2009-09-07T16:51:59Z<p>This is an Oracle only solution. It doesn't address the full question, but is left here for others that may be using Oracle.</p>
<pre><code>select level id -- generate 1 .. 19
from dual
connect by level <= 19
minus -- remove from that set
select id -- everything that is currently in the
from table -- actual table
</code></pre>
http://stackoverflow.com/questions/25063/how-to-mentor-a-junior-programmer/25086#25086Comment by EvilTeach on How to mentor a junior programmerEvilTeach2009-11-30T17:21:51Z2009-11-30T17:21:51ZThis is good. One of the problems I have observed in mentoring is that you have some people that will run with the ball, and some who won't. I am currently of the opinion that you need more ball runners to be successful.
http://stackoverflow.com/questions/1804531/moving-from-vms-to-unixComment by EvilTeach on Moving from VMS to UnixEvilTeach2009-11-29T04:08:21Z2009-11-29T04:08:21ZWhy is a simple port to Itanium being discounted?
Which VMS specific Run Time Libraries are being used?
What sort of RMS usage is there? Indexed files? or is stdio.h type io being used? Are global sections being used? TCP/IP? There is really not enough information in your problem statement to give an accurate answer.
http://stackoverflow.com/questions/1800295/reading-text-file-into-an-array-of-lines-in-c/1800316#1800316Comment by EvilTeach on Reading text file into an array of lines in CEvilTeach2009-11-26T01:57:30Z2009-11-26T01:57:30ZIt's one pass. use fseek/ftell to find the file size. malloc it, read the file in in one io. Make one pass to put a NUL at the new line positions, to make them strings. push_back the start of each line, as you go through the file.
http://stackoverflow.com/questions/1793915/oracle-speeding-up-count/1793936#1793936Comment by EvilTeach on Oracle: speeding up count(*)?EvilTeach2009-11-25T02:45:43Z2009-11-25T02:45:43ZIn addition to downvoting. A comment as to why this is a bad idea would be a good idea.http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1772494#1772494Comment by EvilTeach on C - the most useful user-made C-macros (in GCC, also C99) ?EvilTeach2009-11-21T03:19:38Z2009-11-21T03:19:38ZYep, late friday afternoon effect.
Thank you
http://stackoverflow.com/questions/1753278/what-is-the-fastest-sorting-algorithm-in-cComment by EvilTeach on What is the fastest sorting algorithm in C++?EvilTeach2009-11-18T03:22:28Z2009-11-18T03:22:28ZIt would help if you were to tell us a little bit about the data.
There is no one answer to which is the fastest. It depends on the data, and the resources available. Is this a homework question?http://stackoverflow.com/questions/1717991/throwing-an-exception-from-within-a-signal-handler/1718357#1718357Comment by EvilTeach on Throwing an exception from within a signal handlerEvilTeach2009-11-12T16:14:33Z2009-11-12T16:14:33Z@Charles pop in your longjmp suggestion as an answer
http://stackoverflow.com/questions/1717991/throwing-an-exception-from-within-a-signal-handler/1718124#1718124Comment by EvilTeach on Throwing an exception from within a signal handlerEvilTeach2009-11-11T22:02:11Z2009-11-11T22:02:11ZTo some degree safety is less of a concern. The exception to be thrown is there specifically to abort the program in a meaningful fashion. There is no intent to try to restart any operations.http://stackoverflow.com/questions/1717991/throwing-an-exception-from-within-a-signal-handler/1718357#1718357Comment by EvilTeach on Throwing an exception from within a signal handlerEvilTeach2009-11-11T22:00:16Z2009-11-11T22:00:16ZThis is not a multithreaded program.http://stackoverflow.com/questions/1608953/very-strange-char-array-behaviourComment by EvilTeach on Very strange char array behaviourEvilTeach2009-10-22T19:17:10Z2009-10-22T19:17:10Zsizeof(fname_length)http://stackoverflow.com/questions/56895/proving-sql-query-equivalency/98609#98609Comment by EvilTeach on Proving SQL query equivalencyEvilTeach2009-10-21T03:23:06Z2009-10-21T03:23:06Z@rik yep... that is the intent.
i doubt anyone can do proofs with the relational calculus
http://stackoverflow.com/questions/1581052/how-to-loop-through-all-rows-in-an-oracle-tableComment by EvilTeach on How to loop through all rows in an Oracle table?EvilTeach2009-10-17T00:56:26Z2009-10-17T00:56:26ZAlso, are there performance restrictions? What version of oracle are you using? What format does the output file need to be in? What will be done with the file afterward?http://stackoverflow.com/questions/1581052/how-to-loop-through-all-rows-in-an-oracle-tableComment by EvilTeach on How to loop through all rows in an Oracle table?EvilTeach2009-10-17T00:54:49Z2009-10-17T00:54:49ZYou need to provide more information. Are you going to use PL/SQL, Pro*C or OCI? Or is your manipulation simple enough you can do it in a query, then export the results to a file? More information will yield better answers.
http://stackoverflow.com/questions/1523283/c-strcmp-array/1523287#1523287Comment by EvilTeach on C++ strcmp array EvilTeach2009-10-06T19:44:21Z2009-10-06T19:44:21Z@bdonlan ya, i should have caught the other one wasn't NUL terminate either.
@chris that is a style preference. I was going with the style that the questioner had.
@GRB i agree it depends on the interpretation of the data. the questioner seemed interested in strings, so i shaped my answer that way.
http://stackoverflow.com/questions/1503670/in-windbg-can-i-use-software-breakpoints-without-having-symbols/1503773#1503773Comment by EvilTeach on In WinDbg, can I use software breakpoints without having symbols?EvilTeach2009-10-02T15:49:35Z2009-10-02T15:49:35ZMy appologies to you. The text of your question seemed to me to indicate that you were unable to build the executable with symbols. I don't recall seeing that the reason was a specific lib. No insult was intended.