Hamish Downer

1,080
reputation
124 views

Registered User

name Hamish Downer
member for 1 year
seen Dec 7 at 16:36
website
location GB
age
Unless I explicitly state otherwise in a post, all my original contributions to StackOverflow and ServerFault are placed into the public domain. If this is not legally possible, then anyone receiving a copy of them by any means is granted a non-exclusive perpetual license to use, distribute and modify them, and to distribute modifications, under any license or none, with or without attribution to me. Please note that this license applies only to my original contributions. The image is from www.freefoto.com and can be used in web form free of charge provided there is a link back - hence this text.
Nov
20
comment Embedding instead of inheritance in Go
In some ways, what is new in Go is what has been taken away - that is a key reason for a new language. If they were only adding features, it could have been C+++ ;) but to take away features (inheritance, pointer arithmetic, manual memory allocation) requires a new language.
Nov
20
comment Doesn’t the fact that Go and Java use User space thread mean that you can’t really take advantage of multiple core?
Not true - it creates runtime.GOMAXPROCS OS threads to start with and then runs the goroutines on that thread. If a goroutine blocks it will then create another OS thread.
Oct
3
awarded  Favorite Question
Sep
22
awarded  Necromancer
Sep
9
comment In vim is there a way to delete without putting text in the register?
but deleting any significant amount of text in default mode is SLOW
Sep
9
comment How do touch typists navigate in vi?
For those getting stuck on the escape key - stackoverflow.com/questions/397229/…
Sep
9
answered Does any IDE have a vi keybindings options?
Sep
9
comment Does any IDE have a vi keybindings options?
Mostly we want to be able to do all our editing without moving our hands from the home row - no going to cursor keys, no page up/page down keys, and no mouse usage. And we want to be able to navigate the files really efficiently.
Aug
28
awarded  Yearling
Aug
2
comment What is the shortest way of inserting a variable into text with PHP?
That's great :) Thank you
Aug
2
comment What is the shortest way of inserting a variable into text with PHP?
can you say why using short_open_tag is not considered good practice? The article you link to says it can conflict with xml - is that the only reason or are there others?
Aug
2
asked What is the shortest way of inserting a variable into text with PHP?
Aug
2
awarded  Disciplined
Jul
23
awarded  Necromancer
Jul
16
awarded  Necromancer
Jul
8
awarded  Popular Question
Jul
1
comment What open source hosting service should I use?
Unless I'm missing something, bzr is a VCS, not a hosting service. The launchpad hosting service uses bzr though.
Jul
1
revised Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
Added link to windows entropy sources
Jun
23
awarded  Good Question