Greg Hewgill

66,552
Reputation
6802 views

Registered User

Name Greg Hewgill
Member for 1 year
Seen 8 hours ago
Website
Location Christchurch, New Zealand
Age 39
Software geek.
13h
answered How to export all Yahoo emails using PHP
1d
comment Merging multiple git branches into master?
Ah, you didn't mention that master wasn't an ancestor of auth_upgrade. That does make a difference. I'll leave my answer in case it is useful for somebody else who has a similar situation that can be addressed with a rename.
1d
answered Merging multiple git branches into master?
1d
comment why MD5 collision failed?
It looks like PHP may support arbitrary characters inside strings, so try typing: md5('\xd1\x31\xdd\x02... However, I'm not certain this will do what you want so some experimentation will be necessary.
1d
accepted How to use Git to migrate SVN repository
1d
comment Software Project Management systems
Probably. I had a quick look and the only thing I found was this, which isn't very helpful: fossil-scm.org/index.html/wiki?name=Tutorial/…
1d
answered Software Project Management systems
1d
answered why MD5 collision failed?
1d
answered C/C++ Macro expansion vs. Code generation
1d
comment Initialize a list of objects in Python
Fair point; I've been coding in Python 3 recently. :)
1d
comment How do I index the applications installed on an iPhone?
You appear to already have asked this question: stackoverflow.com/questions/1807239/…
1d
comment Batch : recursively delete all folders starting with …
To recursively look for directories starting with a prefix, you may be able to use for /r or some combination thereof.
1d
comment Batch : recursively delete all folders starting with …
I had to expand this a bit from my original simple attempt, because rd doesn't appear to expand wildcards by itself.
1d
revised Batch : recursively delete all folders starting with …
added 199 characters in body
1d
answered Batch : recursively delete all folders starting with …
1d
answered Git: merging public and private branches while while keeping certain files intact in both branches
1d
answered Initialize a list of objects in Python
1d
answered TCP Connection Persistent State
1d
comment Calculate percent at runtime
Hopefully this won't happen: web.archive.org/web/20011027002011/…
1d
revised Why programming languages do not include spaces in the method “identifiers”?
added 332 characters in body
1d
answered Why programming languages do not include spaces in the method “identifiers”?
1d
accepted Issue with C function returning a gchar**
2d
revised Why is (python|ruby) interpreted?
added 63 characters in body
2d
comment Issue with C function returning a gchar**
Are you returning first itself, or are you allocating space to hold the first pointer and returning the address of it? I get the feeling that you're not very familiar with the use of pointers in C and need a tutorial on that topic.
2d
revised Issue with C function returning a gchar**
added 940 characters in body
2d
comment Issue with C function returning a gchar**
That's not what I suggested. I did correct my example to include FileTag->, but you somehow added an extra & in there.
2d
revised Issue with C function returning a gchar**
added 9 characters in body
2d
comment Issue with C function returning a gchar**
Are you sure you used artist[0] and not just artist?
2d
revised Why is (python|ruby) interpreted?
added 303 characters in body
2d
answered Why is (python|ruby) interpreted?
2d
answered Issue with C function returning a gchar**
2d
comment Issue with C function returning a gchar**
Can you explain how case 'f' would be different from case 'a'?
2d
comment Why programming languages do not include spaces in the method “identifiers”?
This would be about as annoying as having to deal with spaces in filenames. In other words, very.
2d
accepted grep-ing multiple files
2d
answered grep-ing multiple files
Nov
25
answered Version control for interdepedent modules
Nov
25
comment C++ short-circuiting of booleans
That's true, but that's an optimisation and not relevant for this example.
Nov
25
answered C++ short-circuiting of booleans
Nov
25
answered How to use Git to migrate SVN repository
Nov
25
comment Should I use ACLs if I want to limit access to files on a per-group basis? If so - what’s a good Java library?
Which operating system?
Nov
25
revised Code smell in this switch statement?
added 311 characters in body; added 286 characters in body; added 1 characters in body; added 1 characters in body
Nov
25
answered Code smell in this switch statement?
Nov
25
comment backup not made
-1 for not following advice: stackoverflow.com/questions/1793791/…
Nov
25
comment TCP IP Guaranteed delivery question
Good points, thanks. I suppose my answer applies to "basic TCP" without optional features.
Nov
25
accepted iterator for loops with break
Nov
24
accepted TCP IP Guaranteed delivery question
Nov
24
answered General Exception in Java
Nov
24
comment How do I find the path of my running .net executable
Do you want the path of the source code or of the executable?
Nov
24
comment How to do partial clone of a mercurial repository
Duplicate question: stackoverflow.com/questions/1745000/…
Nov
24
awarded  Nice Answer