| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 11 months |
| seen | 4 hours ago | |
| stats | profile views | 1,974 |
|
4h |
comment |
understanding static storage class in C Your first sentence is false. A variable declared static at file scope is not a global variable. |
|
1d |
comment |
Bash script - If conditional with [ ] There is no "awkward half working extension" here. [ is a command. It can take input redirected from a file. The < operator is extremely useful for file redirection, and should not be used in the wrong context as a binary operator. The syntax is often confusing, but it is not accurate to describe this as a "half working extension". In fact, [[ is the non-portable extension. |
|
1d |
comment |
Bash script - If conditional with [ ][ is a command. Shell scripts are much clearer if it is spelled correctly, and the correct spelling is test. When you write if test $exam_pct < 40 is is much more obvious that you are trying to invoke the command test $exam_pct with input redirected from the file 40. |
|
1d |
revised |
./configure can't find C compiler after OS X Lion installation edited body |
|
1d |
revised |
Every combination with all lengths of array edited title |
|
1d |
comment |
Error in Loaging verified apk to bar file? Is the typo "Loaging" intended to be "Logging" or "Loading"? Sometimes typos actually hinder comprehension. In this case, the failure to ask a question is probably a more significant problem. |
|
Jun 15 |
revised |
tools for checking incorrect pairing of left and righ parentheses in S-expressions? added 1 characters in body; edited title |
|
Jun 15 |
comment |
Is it possible to make some shell calls automatically when entering a directory? There's no need for the alias. Just call the function cd and invoke the builtin with command. |
|
Jun 14 |
revised |
replacing one word by another in an entire directory - unix edited title |
|
Jun 14 |
comment |
What is bash analog of cmd START /D with nohup? or ( cd $dir; nohup ... ) to put the output file in $dir |
|
Jun 14 |
comment |
When ./configure is given conflicting options, which wins?autoconf is very flexible and incredibly abusable, and throughout the years thousands of developers have abused it horribly so that there is very little consistency in configure scripts. Whatever behavior you might expect will not be seen in all generated configure scripts! |
|
Jun 14 |
revised |
I want to do an autocomplete with Ruby and Sequel edited title |
|
Jun 14 |
answered | What is bash analog of cmd START /D with nohup? |
|
Jun 13 |
comment |
Is it good programming practice to use shell scripts in systems programming Using shell scripts is fine, but make sure you use vanilla sh and do not rely on bashisms! |
|
Jun 13 |
comment |
Reverse String: Why is this crashing?str+sizeof(char)*length: this is wrong. You are lucky that sizeof(char) == 1, but if you had an int * and did ptr + sizeof(int) * length, you would not get what you expect. Pointer arithmetic accounts for the size; you should not include the multiplier explicitly. |
|
Jun 13 |
comment |
Append space and \ character to each line, except the last @fileunderwater, if you need to add a space on the last line, you should rephrase the question to include that detail. |
|
Jun 12 |
comment |
Including and using libraries with autotools "I want to have the libraries inside the project directory, and here my problems begin." Indeed, this is the beginning of many problems. The solution is to not do that! Do not treat the autotools as a package management system, as that is not their function. |
|
Jun 12 |
revised |
gnu autotools: Debug/Release targets? added 131 characters in body |
|
Jun 12 |
revised |
Non programmer (making progress with you help, thanks so far, just one last speedbump edited title |
|
Jun 12 |
revised |
Fermat's Last Theorem algorithm added 20 characters in body |