Jonathan Leffler
|
Registered User
|
Long-time Informix user and developer, experienced in C and Unix (many variants).
Email: jonathan.leffler@gmail.com
|
|
16m |
comment |
Mandatory use of braces And, presumably, if (true) break; to terminate a loop. |
|
29m |
comment |
Is it fair to ask about by-reference arguments as a C interview question? "Pass by reference" is in contrast to "pass by value" (and Algol's "pass by name") mechanisms. C++ references are more or less a syntactic convenience - the values are passed by reference and implicitly dereferenced in the called function. See: angelfire.com/trek/katorejas for information on different parameter passing mechanisms - amongst other places. |
|
35m |
revised |
Is it fair to ask about by-reference arguments as a C interview question? Fix trivial typos |
|
52m |
revised |
unexpected result when adding to pointer Add quote from standard |
|
58m |
comment |
unexpected result when adding to pointer I believe the nasal demons are demonic as opposed to benevolent (daemonic). |
|
1h |
answered | Open DB handle in C and pass it to Perl5.10 using SWIG |
|
1h |
comment |
Open DB handle in C and pass it to Perl5.10 using SWIG Do you mean the Perl DBI interface, or something else? |
|
1h |
revised |
Syntax error before ‘{’ token when declaring a class in cpp standards . Add URL |
|
1h |
revised |
Syntax error before ‘{’ token when declaring a class in cpp standards . Fix trivial typos |
|
2h |
comment |
Minimum price selection Only a few million records - the DBMS shouldn't have any problems with that small of a table. |
|
7h |
comment |
How to allocate and free aligned memory in C There's posix_memalign() on appropriate machines - has a different interface from memalign(). |
|
10h |
answered | How to change to an external disk drive in C |
|
10h |
comment |
Threads or Processes? Having data-independent tasks, what is better to use? For a discussion of threads vs processes, read 'The Art of Unix Programming' by E S Raymond. |
|
10h |
comment |
Threads or Processes? Having data-independent tasks, what is better to use? If the streams are independent, then the threads have the overhead of coordinating resources within a single process that the o/s takes care of when you use separate processes. |
|
12h |
comment |
C: Comparing two bytes to see if one is within a certain range of the other +1 for guessing the binary vs hex confusion. |
|
12h |
revised |
C: Comparing two bytes to see if one is within a certain range of the other Fix trivial typo |
|
12h |
comment |
C: Comparing two bytes to see if one is within a certain range of the other @David: what are the worst cases we can have? 'signed char' of -128 and +127, promoted to int? Or 'unsigned char' 0 and 255, both promoted to int (no need to go to unsigned int); the difference in each case is ±255, which is readily handled by 'int'. I don't think there's a problem, unless the values 0 and 255 are 1 apart because the values are meant to be circular. |
|
12h |
answered | proper usage of the pre-increment operator in combination with the pointer dereference operator |
|
13h |
comment |
C: Comparing two bytes to see if one is within a certain range of the other Since R and G are both single bytes, then they're going to be well within the reasonable range supported by 'int' (and the values are promoted to 'int' before the comparisons or computations occur, of course - normal promotions). |
|
13h |
answered | How to replace the last one or two characters of a file with unix tools |
|
13h |
comment |
How to replace the last one or two characters of a file with unix tools File contents, or file name? |
|
13h |
revised |
Oauth authentication with a known user? Remove new tag 'known' |
|
13h |
revised |
C# force page load on browser back click fix tag spelling |
|
13h |
revised |
Regular Expression returning false, why? Retag with regex |
|
14h |
revised |
Mandatory use of braces Drop new tag code-standards |
|
14h |
revised |
How to fill a square with smaller squares/rectangles? Fix tag |
|
14h |
revised |
E-Commerce Development: Contracting with a talented developer vs. expensive larger company. Fix typo in tag |
|
1d |
comment |
MySQL select multiple values from column The t1.fruit != t2.fruit condition is rather implied by the next two conditions, in both queries. No harm done - but not much good either. |
|
1d |
revised |
MySQL select multiple values from column Fix trivial typos |
|
1d |
answered | Learning about C++ 0x features. |
|
1d |
revised |
Truncate all tables in a MySQL database in one command? Improve 'Use of English' |
|
1d |
comment |
Truncate all tables in a MySQL database in one command? That loses all constraints, permissions, views, etc on the tables - which is a considerable nuisance. |
|
1d |
comment |
mysql truncate table Truncate table means 'remove all data from the table without dropping it'. |
|
1d |
comment |
mysql truncate table Direct duplicate of stackoverflow.com/questions/1912813. |
|
1d |
comment |
How do I join two lines in vi? You don't have to be at the end of the line for J to join lines. |
|
1d |
comment |
How do I join two lines in vi? That was a capital J, not a lower-case J; hence Shift-J. |
|
1d |
comment |
C Function alignment in GCC That's too easy, isn't it? |
|
1d |
revised |
What’s the benefit of using a lot of complex stored procedures which which --> with which |
|
1d |
revised |
What’s the benefit of using a lot of complex stored procedures Improve 'Use of English' |
|
1d |
comment |
What does the ‘0’ in line 41 mean? All code sets I know of keep the 10 decimal digits contiguous - even those like EBCDIC which do not keep the alphabet contiguous. |
|
1d |
revised |
Max and Min Time query Remove comment about which DBMS was it - the edit history shows it was always MDB. |
|
1d |
comment |
Max and Min Time query Mountains and molehills - mea culpa, but... |
|
1d |
comment |
CR character in gets() function If you need the carriage returns (newlines), how do you know when the user has stopped typing data and wants the program to get on with life? Also, as pointed out, you should not use gets() even in toy code - it is a major cause of buffer overflow attacks and you may as well learn not to use it now. Use fgets() instead; that allows you to say how big the input buffer is. |
|
1d |
comment |
CR character in gets() function Calling gets() evil is accurate. The normal recommendation is fgets(), of course. An explanation of why would improve things, though. |
|
1d |
revised |
CR character in gets() function Fix trivial typos |
|
1d |
answered | How to redirect the output back to the screen after freopen(”out.txt”, “a”, stdout) |
|
1d |
comment |
Is alignment union necessary for memory allocation header? The alignment requirement of the struct is the alignment requirement of the member with the most stringent alignment requirement. If the structure only contained various size char arrays, then it could be byte-aligned (though it probably would not be). |
|
1d |
comment |
Encoding utf-8 to base64 with accents Strict ASCII is a 7-bit code set and therefore could not contain bytes such as 0xC3 or 0xA9. However, it is not clear to me why the ASCII codec is involved at all - or, these days, why it even exists (or, maybe it is fine for it to exist, but it should not be used without being explicitly requested). |
|
2d |
accepted | Linux/Unix: Non-ascii characters in home directory? |
|
2d |
revised |
Linux/Unix: Non-ascii characters in home directory? Add x-ref URL and minor tidying |
