| bio | website | |
|---|---|---|
| location | Greece | |
| age | ||
| visits | member for | 2 years, 6 months |
| seen | 3 hours ago | |
| stats | profile views | 1,225 |
A freelance Computer Engineer, with experience mainly on C, Java and all things Un*x...
|
Mar 15 |
comment |
Shuffle matrix in C Please post an SSCCE - I have not put your code through a compiler, but it does not seem as if it should compile as it is... I think I see a few errant parentheses and missing brackets in there... |
|
Mar 15 |
awarded | Good Answer |
|
Mar 14 |
comment |
Why does fgetc function adds a carriage return Opening the input file as text would only make a difference on a Windows/DOS system. UNIX systems treat both modes the same... |
|
Mar 14 |
comment |
sed script to print the first three words in each line +1 for a more concise solution with sed - although you might want to edit your post to remove your first attempt. |
|
Mar 13 |
comment |
Java Memory Storage to Reduce Database Load - Safe? @Jessemon: it could be a DB trigger - there are databases that support calling external code within their triggers - but I was speaking more generally. And this point is valid whether the OP uses an intermediate third-party layer (DB caching) or not. Not all database caching solutions support DB updates correctly/efficiently/without-hoop-jumping. |
|
Mar 13 |
answered | Java Memory Storage to Reduce Database Load - Safe? |
|
Mar 13 |
comment |
Closing opened file descriptors in child process @user2136293: What is it that you are trying to do anyway? What is your real problem? |
|
Mar 13 |
comment |
Closing opened file descriptors in child process @user2136293: there are a lot of assumptions in your proposal that can and will break your code: 1. You are assuming that you can reliably find out what the maximum FD number is. Apart from MAX_INT there is no other reliable limit. 2. You are assuming that that number will be "reasonable". Are you going to probe 2^31 FDs? 3. you are assuming that you can blindly close() any file descriptor that you don't like. What if one of your libraries keeps an open FD for some specific reason? |
|
Mar 12 |
awarded | Good Answer |
|
Mar 11 |
comment |
How can i change the port used by gpm on linux server? hmm, you are right... somehow I saw server + port + app(lication) and thought of network services. Quite honestly, this question lacks so much context that it could mean anything... |
|
Mar 11 |
comment |
cygwin, how to set up to get unix shell, and c program, to do systems programming? Why use Cygwin? Why not use an actual Unix-like system (e.g. Linux) in a virtual machine? |
|
Mar 11 |
comment |
How can i change the port used by gpm on linux server?-m specifies which device node to open to access the mouse. What does this have to do with (network) ports? |
|
Mar 11 |
comment |
pass command line arguments to copy a file name in Java @user2155233: Have you compiled your .java source code file with javac successfully (i.e. without errors)? Do you have the resulting CopyFile.class file in C:\Users\name\Desktop\Copy File ? Since you are not supplying a package name, java will try to find the class file in the current directory. |
|
Mar 11 |
comment |
pass command line arguments to copy a file name in Java @user2155233: perhaps you should paste here an example of how you are calling your program. I suspect that you are messing up the quotation and in the process mangling the class name... |
|
Mar 11 |
reviewed | Close How exactly does Thread.interrupt() and Thread.interrupted() work? |
|
Mar 11 |
answered | pass command line arguments to copy a file name in Java |
|
Mar 11 |
reviewed | Close what is the way to display only the first field of each record of a file |
|
Mar 9 |
revised |
Swap nodes in a singly-linked list added 204 characters in body |
|
Mar 9 |
comment |
Swap nodes in a singly-linked list I'll +1 this one, just for the ASCII art :-) |
|
Mar 9 |
revised |
Swap nodes in a singly-linked list added 113 characters in body |