justinhj

1,977
reputation
272 views

Registered User

name justinhj
member for 11 months
seen Dec 12 at 0:24
website
location Canada
age 38
Senior Software Engineer I have 15 years commercial experience in software development, spanning video games, graphics and animation, AI and multimedia, as well as database and web development

Currently working on a server cluster for a MMO real-time strategy computer game

Expert in in C, C++, Python, Java, C#, MySQL, Javascript

Dec
8
answered Guide to switch from Visual Studio to Emacs on windows?
Dec
4
awarded  Citizen Patrol
Dec
2
comment function to call same shell command in dired
On a related note I wrote a blog post on running an elisp function on each marked file: justinsboringpage.blogspot.com/2009/04/…
Dec
1
answered Which language should one try out after basic c/c++?
Nov
29
comment Reloading a changed python file in emacs python shell
Thanks it works perfectly now, I must have been doing something weird.
Nov
29
revised Reloading a changed python file in emacs python shell
added 122 characters in body
Nov
29
asked Reloading a changed python file in emacs python shell
Nov
28
revised Emacs, Zen-Coding mode, and Putty.
clarified
Nov
28
revised Emacs, Zen-Coding mode, and Putty.
deleted 165 characters in body
Nov
27
comment What should table structure look like when adding open auth login to User model
What did you make the diagram in? That's very nice.
Nov
27
revised Emacs, Zen-Coding mode, and Putty.
added 151 characters in body
Nov
27
answered Emacs, Zen-Coding mode, and Putty.
Nov
25
comment Trying to get a terminal to work in Emacs…
Do you mean the cygwin version of emacs or the win32 native? Seems like the cygwin version is the best if you're using cygwin, whilst a combination of the win32 native and Gnuutils is much more solid windows experience IMHO ftp.gnu.org/pub/gnu/emacs/windows gnuwin32.sourceforge.net
Nov
24
asked How do I convert a char string to a wchar_t string?
Nov
21
awarded  
Nov
19
comment How do you set a date in a mysql update from a milliseconds since epoch value?
Perfect, it works thanks.
Nov
19
asked How do you set a date in a mysql update from a milliseconds since epoch value?
Nov
18
answered Setting up an emacs environment in windows?
Nov
18
comment how to mask password in c?
Do you mean just at a command line or in a particular gui? For example in windows a native edit box can do this automatically.
Nov
17
comment emacs C and C++
@kastuauyra Not all software tools can to be learned in 5 minutes, nor should they be necessarily. Professional programmers will be using tools potentially their whole working lives, so it's worth investing time learning ones that have the flexibility and power to endure.
Nov
16
accepted emacs C and C++
Nov
16
answered emacs C and C++
Nov
16
comment Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?
One of the reasons emacs/vim are useful is because they are available on all platforms. If you think all editors pretty much have the same features I'd do some research on them and see what they can do.
Nov
14
comment How do you route stdin from a file to a function when running GHCI
That's handy but you can't redirect stdin like this: :main < words.txt
Nov
14
comment How do you route stdin from a file to a function when running GHCI
Thanks, that is helpful.
Nov
14
comment How do you route stdin from a file to a function when running GHCI
Ah yeah. I tried that and thought it failed, but does in fact work, but then as the answer below states, it also closes stdin and you get an error message like : *Main> <stdin>: hLookAhead: invalid argument (Bad file descriptor)
Nov
14
asked How do you route stdin from a file to a function when running GHCI
Nov
11
revised Current time in microseconds in java
added 359 characters in body
Nov
11
answered Current time in microseconds in java
Nov
9
comment Is there a way to list the functions in a module in GHCI?
That's cool thanks
Nov
9
asked Is there a way to list the functions in a module in GHCI?
Nov
6
revised Emacs text-mode highlighting
added 119 characters in body
Nov
5
answered Emacs text-mode highlighting
Nov
3
comment In C/C++ why does the do while(expression); need a semi colon?
@AndreyT "Someone told you so and you just accepted it rigth away without a single doubt." That is not the case, I spent some time satisfying myself that this is true.
Oct
31
answered emacs completions or IntelliSense the same as on Visual Studio
Oct
31
comment In C/C++ why does the do while(expression); need a semi colon?
@Martin Yes I understand the need for a delimiter between statements in general, but my question is why you need it in this case. This answer merely states that you need it by definition. That's not really what I was looking for. The accepted answer gives a clear example of how you can not write a valid statement if the grammar were different.
Oct
31
comment In C/C++ why does the do while(expression); need a semi colon?
The different behaviour is quite clear to me. Without the semi-colon requirement you simply cannot nest a while loop inside a do-while, and this seems wrong.
Oct
27
answered yahoo messenger sdk
Oct
26
comment In C/C++ why does the do while(expression); need a semi colon?
You can see that the question hasn't been edited, the number of edits is shown when there are any. The question seems straightforward enough that I hope it means what I intend. The accepted answer seems superior to yours, since it shows that without the semi-colon, valid uses of the grammar become ambiguous. In your example it is merely confusing to the user.
Oct
25
answered How to use money to become a better programmer?
Oct
24
revised Hidden features of Emacs Lisp?
added 457 characters in body
Oct
24
answered Hidden features of Emacs Lisp?
Oct
21
comment Great programming quotes
Usually this one comes with "I haven't touched that code in weeks"
Oct
19
accepted Emacs how to auto-complete words of include files on C ?
Oct
15
comment Run Emacs Command in Other Window
Hi Brent Did you restart emacs, or do C-e after the expression to evalulate it? You can do C-h v sql-pop-to-buffer-after-send-region to see what it is set to.
Oct
15
comment Setting timezone of org-mode
Due to daylight saving?
Oct
15
answered Run Emacs Command in Other Window
Oct
12
comment What was your first home computer?
I talked my dad into getting one of these so I could program it. I convinced him it was capable of doing his accounts.
Oct
12
comment What was your first home computer?
Wasn't my first, that was a C64, but modded up because it was such a fun machine. I've still got the user manual and it has op codes and descriptions of each cpu instruction in the last chapter. How many computers can make that boast these days?
Oct
10
comment Comprehensions in Python and Javascript are only very basic?
@Rowan static typing is an optimisation, and shouldn't be necessary to learn how to program. One of the greatest books for learning programming SICP uses scheme.