EvilTeach

4,575
Reputation
741 views

Registered User

Name EvilTeach
Member for 1 year
Seen 15 hours ago
Website
Location
Age
18h
answered Generating random numbers in C
2d
answered How to sniff the number of records in a binary file before reading into an array in the C programming language?
2d
comment How to mentor a junior programmer
This 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.
2d
answered How to help an underperforming newbie do a better job?
Nov
29
comment Moving from VMS to Unix
Why 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.
Nov
28
answered What should I name a table that maps two tables together?
Nov
26
comment Reading text file into an array of lines in C
It'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.
Nov
25
comment Oracle: speeding up count(*)?
In addition to downvoting. A comment as to why this is a bad idea would be a good idea.
Nov
22
answered Design and Readbility.
Nov
22
revised Using visual studio 6 c++ compiler from within emacs
edited tags
Nov
21
comment C - the most useful user-made C-macros (in GCC, also C99) ?
Yep, late friday afternoon effect. Thank you
Nov
21
revised C - the most useful user-made C-macros (in GCC, also C99) ?
added 15 characters in body
Nov
20
answered C - the most useful user-made C-macros (in GCC, also C99) ?
Nov
18
comment What is the fastest sorting algorithm in C++?
It 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?
Nov
12
comment Throwing an exception from within a signal handler
@Charles pop in your longjmp suggestion as an answer
Nov
11
comment Throwing an exception from within a signal handler
To 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.
Nov
11
comment Throwing an exception from within a signal handler
This is not a multithreaded program.
Nov
11
asked Throwing an exception from within a signal handler
Nov
2
answered C all type parameter
Nov
2
awarded  Fanatic
Oct
30
revised How does one cheaply validate the existance of a column in a table in another schema with Oracle?
added 36 characters in body
Oct
29
asked How does one cheaply validate the existance of a column in a table in another schema with Oracle?
Oct
22
comment Very strange char array behaviour
sizeof(fname_length)
Oct
21
comment Proving SQL query equivalency
@rik yep... that is the intent. i doubt anyone can do proofs with the relational calculus
Oct
20
revised Proving SQL query equivalency
added 116 characters in body
Oct
20
answered How to get pathname to executing binary?
Oct
17
answered AIX- Does not install shared lib
Oct
17
comment How to loop through all rows in an Oracle table?
Also, 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?
Oct
17
comment How to loop through all rows in an Oracle table?
You 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.
Oct
10
asked Can a program figure out its Oracle resource usage?
Oct
6
comment C++ strcmp array
@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.
Oct
6
revised C++ strcmp array
added 5 characters in body
Oct
6
answered C++ strcmp array
Oct
2
comment In WinDbg, can I use software breakpoints without having symbols?
My 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.
Oct
1
answered Efficient ways of telling whether or not a string/file has changed - crc32? md5? something else?
Oct
1
comment Efficient ways of telling whether or not a string/file has changed - crc32? md5? something else?
What kind of container are the strings in?
Oct
1
answered In WinDbg, can I use software breakpoints without having symbols?
Sep
25
answered A free and relatively simple IDE for Windows XP/Vista/7?
Sep
25
comment How to debug macros efficiently in VS?
@j, hence why you simply extract it from the compilation listing. That avoids your issue.
Sep
25
comment How can I open a Word document read-only from Perl?
A very high quality answer. Thank you.
Sep
24
comment How can I open a Word document read-only from Perl?
I will experiment with that. Thank you.
Sep
24
revised How can I open a Word document read-only from Perl?
added 16 characters in body
Sep
24
asked How can I open a Word document read-only from Perl?
Sep
20
answered Defragmenting C++ Heap Allocator & STL
Sep
20
revised Group by string optimization
edited tags
Sep
18
revised C++ - Visual Studio CRT
edited tags; edited tags
Sep
16
awarded  Yearling
Sep
15
answered Appending data to a null character in character array to send data through socket
Sep
12
revised Sleep() becomes less accurate after replacing a PC? (C++)
edited tags
Sep
12
awarded  Popular Question