Bernard

3,701
Reputation
290 views

Registered User

Name Bernard
Member for 1 year
Seen 9 hours ago
Website
Location Auckland, New Zealand
Age 21
Just another Computer Science Major. :)
Nov
23
answered How do I get gdb working with D programs under linux?
Nov
18
awarded  Nice Question
Nov
3
awarded  Notable Question
Oct
23
answered Some D template questions
Oct
23
comment Executing external program via system() does not run properly
The redirection operators only work in the shell environment, and won't affect the behaviour of the app via system. Are you sure the files are not being created else where?
Oct
23
comment Executing external program via system() does not run properly
How do you launch the parent app?
Oct
23
revised Automated builds and STDIN
added 134 characters in body
Oct
23
answered Automated builds and STDIN
Oct
22
revised How do I get gdb working with D programs under linux?
added 462 characters in body; added 1 characters in body
Oct
22
awarded  Popular Question
Oct
21
answered Infinite loop on EOF in C++
Oct
17
comment How do I get gdb working with D programs under linux?
Unfortunately, CVS Head exhibits the same problems. This: d.puremagic.com/issues/show_bug.cgi?id=1079/… makes me think it could be an issue with gdb. That said, ZeroBUGS works (or worked -- it won't run on this machine (and plus, Descent doesn't support it, hence wanting to get gdb working)), so it could be gdb all the same. I might have to learn of DWARF and dmd and gdb and see what I can do. No debugging bites the big one. I can't even get a stack strace (If I'm lucky, the very top function may show up)! Thanks for the info though. Gives me more places to look.
Oct
17
revised How do I get gdb working with D programs under linux?
added 419 characters in body; added 28 characters in body
Oct
17
asked How do I get gdb working with D programs under linux?
Oct
16
comment In a makefile, how do I execute a command on each file name in variable?
Indeed, pattern rules are the way to go.
Oct
15
awarded  Famous Question
Oct
6
comment Linux GUI development
Indeed. It is a great improvement over the previous situation.
Sep
27
accepted how to provide platform independent keycodes
Sep
25
answered how to provide platform independent keycodes
Sep
16
comment What is your favorite Coding Guidelines Checklist?
Liran: I just follow the aesthetic guidelines, mostly.
Sep
16
comment Should I learn C?
@Dan: I'm running Debian. Most of the desktop software I use is written in C. =p I do want to point out that at no point in my response did I call C 'legacy'.
Sep
7
awarded  Popular Question
Aug
25
comment How do I initialise a global array of structs in D?
void initialisers (A[2] as = void;) ensure that memory is not initialised. So this is great; thanks.
Aug
24
comment How do I initialise a global array of structs in D?
D'oh. I tried this, but forgot I was using D and did the C-style {{},{}} syntax. Thanks.
Aug
24
asked How do I initialise a global array of structs in D?
Aug
22
revised How do I obtain CPU cycle count in Win32?
edited tags
Aug
21
comment How should I handle C-strings in D?
Nevermind, I am a moron (importing modules ABOVE the definition :o).
Aug
21
comment How should I handle C-strings in D?
Actually, it doesn't even work for DMD 1. If I use version(D_Version2) { mixin() } else { alias } DMD 1 works, but DMD 2 gets the same results.
Aug
21
comment How should I handle C-strings in D?
I did now; same result. v2.0.31
Aug
21
comment How should I handle C-strings in D?
Hello again. I ought to be paying you :]. The mixin trick doesn't work; Error: identifier 'charptr' is not defined. That makes sense; I don't think there are actually any functions that use a buffer, but I'll keep it in mind. re LPCSTR: My unix sensibilities would be too offended by this, I think. cstring?
Aug
21
asked How should I handle C-strings in D?
Aug
19
comment Can you refer to a named enum as if it were anonymous in D?
And by extension, you. :p
Aug
19
comment Can you refer to a named enum as if it were anonymous in D?
40 minutes; I love this place.
Aug
19
revised Can you refer to a named enum as if it were anonymous in D?
edited title
Aug
19
asked Can you refer to a named enum as if it were anonymous in D?
Aug
18
comment What is the correct way to clean up when using PyOpenAL?
Makes sense. I don't have PyOpenAL installed ATM, so I'll take your word.
Aug
2
revised how to output to console in C++/Windows
formatting
Aug
2
awarded  Yearling
Jul
30
awarded  Notable Question
Jul
26
answered Need help with Git commands for development workflow
Jul
24
comment How do I add items to a gtk.ComboBox created through glade at runtime?
Huh, neat. And another sentence, suitable for padding out this comment to a SO acceptable length.
Jul
24
answered How do I add items to a gtk.ComboBox created through glade at runtime?
Jul
24
comment Segmentation fault during Transition of Control from C++ to Pro *C
Hopefully without stepping on Roopesh's toes, I added it to the main body of the question.
Jul
24
revised Segmentation fault during Transition of Control from C++ to Pro *C
added 402 characters in body; added 30 characters in body
Jul
24
asked How do I add items to a gtk.ComboBox created through glade at runtime?
Jul
22
comment What are your favorite Vim tricks?
You can use visual mode ('v') to select large blocks to change, too.
Jul
20
comment Mono C# tutorial?
And don't forget about MonoDevelop. You don't have to use the command line directly (but it doesn't hurt to know how to work the compiler).
Jul
19
comment How do I program using cat?
@chaos: This is very true. NetHack + enabling vi(m) bindings in every app that I can means that hjkl is completely ingrained.
Jul
10
comment What is the best way to count words in C?
Normal one? The one in K&R? If that's what you mean, no, it's pretty similar at first glance, just less elegant.
Jun
30
revised How do I Get Height & Width from an Uploaded image file
clarification