ypnos

5,458
reputation
324 views

Registered User

name ypnos
member for 1 year
seen 1 hour ago
website
location New York
age
Dec
16
answered bash: history favourites file
Dec
8
revised Is this extern harmless
typo
Dec
6
awarded  Mortarboard
Nov
28
awarded  Popular Question
Nov
24
revised iterator dereferencing issue
added 120 characters in body
Nov
23
comment In bash shell script how do I convert a string to an number
0.70, and 0.80, are not integers.
Nov
23
answered iterator dereferencing issue
Nov
18
awarded  Notable Question
Nov
17
comment Limit the precision on std::cout of default values in boost::options_description
Hi John, unfortunately Christian cannot accept as he didn't register.
Nov
12
answered File paths in Java (Linux)
Nov
12
comment File paths in Java (Linux)
Under Java '/' works well even on Windows systems, actually Visual c++ handles '/' as well.
Nov
3
comment Do threads share the heap?
fork() can serve in many use-cases where threads may be used also. Due to copy-on-write, there is no significant cost difference on Unix systems. Typical use-case is where the worker is autonomous (like web server) from the rest of the service. Another possibility is to communicate through stdin/out with the main thread/program. fork() is strong on Unix, whereas other platforms like Windows prefer threading. The main reason probably is that using fork() is much simpler and safer and Unix has this simplicity philosophy. See for example apache webserver, with its slow transition to threads.
Nov
1
accepted Run Qt application on startup as Linux daemon
Oct
31
answered Dynamic memory allocation on stack
Oct
27
awarded  Popular Question
Oct
14
revised X11 unable to maximize applications when no window manager is used
cleanup
Oct
13
comment How to empty a char array?
Not a better solution. Just a solution to a different problem.
Oct
12
accepted Const Correctness Question in C++
Oct
12
revised Const Correctness Question in C++
deleted 2 characters in body
Oct
12
revised Const Correctness Question in C++
english
Oct
12
revised Windows API function equivalents (SetCursorPos, GetCursorPos, mouse_event, keybd_event …) for Linux (X11)?
edited tags
Oct
12
answered Windows API function equivalents (SetCursorPos, GetCursorPos, mouse_event, keybd_event …) for Linux (X11)?
Oct
12
answered Const Correctness Question in C++
Oct
12
comment How to register FUSE filesystem type with mount(8) and fstab?
Good question, but not programming related and there is serverfault.com now.
Oct
9
awarded  Self-Learner
Oct
7
revised What’s the fastest algorithm for sorting a linked list?
fixed typo
Oct
6
answered What’s the fastest algorithm for sorting a linked list?
Oct
6
revised What’s the fastest algorithm for sorting a linked list?
edited tags
Sep
26
awarded  Yearling
Sep
24
answered Best ways of marketing an open source application to users and programmers
Sep
23
accepted Linux vs Windows Programming?
Sep
23
awarded  Guru
Sep
22
comment why does this work? (finding odd number in c++)
you know, i & 1 does the trick too..
Sep
22
comment Keep QPixmap copy of screen contents using X11, XDamage, XRender, and other tricks.
Why use XRender instead of XCopyArea? XRender is error prone (if you don't do it exactly the right way, it won't work..)
Sep
22
comment Linux vs Windows Programming?
No need to downvote your rant, although it is unhelpful in many ways and a vote would be easily justified. I told you what's the problem with your answer, others did as well. It is not your opinion. It is just the rant character. If you want to rant, why not start a blog. See, I just told you what's wrong if your answer, your thank-you is to bash me. The rest of my comment was not about your answer, it was about comments. Somebody writes "if vi is too complicated, use other easier tools, which work with mouse" you respond "vi its too complicated, I want to work with mouse"... aaalright..
Sep
22
comment Create GLX context in specific region of a window
How to create a child window of the root window that really is not a top level window?
Sep
21
comment What is a good live-cd distribution that could be used as the base for my linux program?
nope I don't think so.
Sep
21
answered Java: make an low quality image
Sep
21
awarded  Good Answer
Sep
21
comment Linux vs Windows Programming?
You raise an interesting question. You carry over open source technologies that originated on the Linux platform to Windows. It is totally valid and if you pursue this, you may end up getting a similiar productive environment -- essentially what you are doing is bringing in a full POSIX system with GNU toolchain etc. The question is, am I willing to do this instead of just putting an Ubuntu CD into the drive, so that I get the whole package? Essentially, I would say you talk about option 3 here: Linux vs Windows vs "Cygwin/GNU/X11/... on Windows". The "catch up" would be to have this natively.
Sep
20
comment Linux GUI programming
You should add GTK+ to your list, as it is the second major player in X11 GUI development next to QT!
Sep
20
comment Linux vs Windows Programming?
Hey paercebal, I would read your answer in full, if it would have more substance than rant. Unfortunately the rant proportion kills it for me. But, if you answer somebody's text, you definitely should read the whole thing. Your answer "Wrong. [...]" totally ignores greyfade's arguments. And he is right. You do not have to learn vi, there are plenty of GUI editors and IDEs, see QtCreator, just to name another one. It seems your only problem with the platform is your ignorance. So then, just leave it and not use it, but why argue about it, with that much emotion?
Sep
20
awarded  Nice Answer
Sep
20
revised Linux vs Windows Programming?
added 54 characters in body
Sep
20
answered Linux vs Windows Programming?
Sep
20
comment qt GUI connecting
It is important to note that this only works for objects derived by QObject.
Sep
18
comment Calling a function in child thread in Qt?
The code compiles and runs fine here. Clean directory, "qmake-qt4 -project; qmake-qt4; make". A bounty well earned, Adam!
Sep
14
revised Bash Script - Running current or new instance of an application
added 178 characters in body; added 2 characters in body; edited body
Sep
14
comment Bash Script - Running current or new instance of an application
No, the lock file is bound to the user, see the variable $user in the script.
Sep
14
comment Calling a function in child thread in Qt?
Wanted to test it, but does not link. Are you sure doWork() is started in the other thread?