Posts
 
Reputation
Joined
Last Seen
Ranked #925
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
35% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
1 Commented Post
0 Endorsements
Ranked #4K
~3K People Reached
Favorite Tags
Member Avatar for Airshow

[B]Environment[/B] Development: Amazon EC2 instance. Operational: Unknown at this time [B]Scenario[/B] This is a *nix question but things start out in php, so please bear with me. I'm trying to get php script (php_script_1) to to run another php script (php_script_2) in the background. This will allow php_script_1 to complete …

Member Avatar for Airshow
0
396
Member Avatar for Yupiop102

Please help me, a couple of day's ago my windows 7 went corrupt, so i installed linux and then installed Wine and tried running Windows XP setup and got error message No Valid system Partitions Were Found Setup is Unable To Continue, how do i go back to Windows?

Member Avatar for petteyg
0
1K
Member Avatar for Aia

After over a year battle with cancer, my friend [URL="http://www.daniweb.com/forums/member5020.html"]Dave Sinkula[/URL] passed away the 14th of April of 2010. He continued to post in this forum and others as much as he could, even after the diagnosis. And never reflected the fact that he knew his days were counted. He …

Member Avatar for sureronald
9
620
Member Avatar for petteyg

[url=http://cc.byexamples.com/2007/04/08/non-blocking-user-input-in-loop-without-ncurses/]code from this blog[/url] [code]int kbhit() { struct timeval tv; fd_set fds; tv.tv_sec = 0; tv.tv_usec = 0; FD_ZERO(&fds); FD_SET(STDIN_FILENO, &fds); //STDIN_FILENO is 0 select(STDIN_FILENO+1, &fds, NULL, NULL, &tv); return FD_ISSET(STDIN_FILENO, &fds); }[/code] [code]void nonblock(int state) { struct termios ttystate; //get the terminal state tcgetattr(STDIN_FILENO, &ttystate); if (state==NB_ENABLE) { //turn …

Member Avatar for petteyg
0
250
Member Avatar for greatunknown

I have a simple display() method that essentially looks like this [CODE] #include <stdlib.h> #include <iostream> #include <iomanip> #include "Pieces.h" using namespace std; void Pieces::BeginInstruct(int& i){ cout<<endl<<endl; cout<<i++<<":"<<setw(5)<<"Open the program."<<endl <<i++<<":"<<setw(5)<< "Click \"File\" and then\"New\"." <<endl; } [/CODE] Theres obviously more but what I am concerned with is that setw() …

Member Avatar for greatunknown
0
274