he_the_great

1,051
Reputation
89 views

Registered User

Name he_the_great
Member for 1 year
Seen 2 days ago
Website
Location
Age
2d
comment Does the D programming language have a future?
I'm not sure how Eiffel could be classified as "a better Java." it is about 10yrs before Java and is not similar.
Nov
5
revised Pervasive and Tango?
edited tags
Nov
5
awarded  Yearling
Oct
25
comment Vim omnicompletion for Java
IDEs are always missing a good text editor, that is why.
Oct
23
comment Some D template questions
StackOverflow is thinking your second code block is an new paragraph for point 2.
Sep
17
comment DMD 2 on Snow Leopard
DMD is quite stable in Linux. OS X I think it is doing better, but I don't use it there.
Sep
6
comment Why do people defend the regex syntax?
@RCIX That is only if you don't know regex.
Aug
25
comment How can I break on exception using ddbg
This isn't a discussion form, you should edit the question to add this information and delete this answer.
Aug
21
answered For what to use VI?
Aug
19
comment D programming language char arrays
The word invariant has been replaced with immutable and will not exist in the stable release of D2.x
Aug
19
comment D programming language char arrays
The word invariant has been replaced with immutable and will not exist in the stable release of D2.x
Aug
14
comment Use a mouse for non-mouse input
You don't want "any traditional effect on the X environment," but you do want the x and y axes? Don't coordinates only have meaning/availability in an X environment?
Aug
14
comment malloc and free in D/Tango not freeing memory?
malloc and free are just rappers for the C calls. I don't know why the results would be different.
Aug
13
accepted In VIM, how do I break one really long line into multiple lines?
Aug
13
revised In VIM, how do I break one really long line into multiple lines?
added 212 characters in body
Aug
13
answered In VIM, how do I break one really long line into multiple lines?
Aug
3
comment We have to use C “for performance reasons”
Removing the GC doesn't fix the problem, malloc/free are non-deterministic. The D programming language allows you to disable the GC so it doesn't run during critical code.
Aug
3
answered We have to use C “for performance reasons”
Jul
31
comment Would you recommend vim/emacs for beginner programmers?
No, if they are truly beginning to program intellisense is not the way to go. It would likely confuse a new user with all the help it gives them. Sure they could write a "Hello world" program by creating a new project, but that isn't programming.
Jul
13
comment How would you approach using D in a embedded real-time environment?
You can disable the GC std.gc.disable() which will prevent the running of the garbage collector until std.gc.enable().
Jul
1
answered Why should files end with a newline?