Viewing profile — mikeschinkel
mikeschinkel
HN member- Joined
- Sat, Jun 20, 2009, 1:11 AM UTC
- HN karma
- 39
- Public activity
- 83 items
- HN profile
- View on Hacker News ↗
About mikeschinkel
No profile information was provided.
Recent public activity
-
comment
Comment #46560698
Nice technique, but wondering if the trailing "; exit" results in consuming non-zero exit codes passed to os.Exit() in the Go code?
-
comment
Comment #44628439
I ran a very successful company (successful for a time) that sold Visual Basic developer tools via a printed mail-order catalog named VBxtras. Two things killed Visual Basic: 1. Th…
-
comment
Comment #42915409
Wow. That looks painful. Sigil soup!
-
comment
Comment #42915400
As a counterpoint, I have many times had to interact with the those technologies, and thus been able to use their source code as packages and/or learn their source code techniques …
-
comment
Comment #42896059
Interfaces are one way to inject stubs, and a good way, but not the only way. You can also use function values as callbacks.
-
comment
Comment #42475845
Agree with your assumption, but then I also know that developers often read recommendations and convert them into dogma, ignoring the specifics for when those recommendations shoul…
-
comment
Comment #42098499
PHP is not controlled by one main corporate entity. {Runs, ducks, hides. :-D}
-
comment
Comment #42098454
Deno 2.0 explicitly copied Go in many features, especially with dependencies being referenced via URL, and many of the CLI's commands are inspired by Go such as install, fmt, and t…
-
comment
Comment #42098432
I recognized exactly that way back in 1995. I used to teach Clipper in the late 80s and early 90s and you could do so much with it. It's competitor was FoxPro, which was far less c…
-
comment
Comment #42098419
In all your comments you seem to be hitting the nail on the head. Someone can say the German language is a bad language. But it is not the language that is bad, it is the person's …
-
comment
Comment #42098382
As a counterpoint, Go is currently the only language I do not find revolting. And complaining about "thing string" vs. "string thing" seems high on pedantry. Yes, there are aspects…
-
comment
Comment #42098366
Sounds like a lack of good code review.
-
comment
Comment #42098344
But true enough.
-
comment
Comment #42098338
You can only force everyone on a project to use a formatter if you are the one who has the authority to decree what will be done on the team. OTOH, if you are but a team member and…
-
comment
Comment #20682145
Cool, thanks for the answer.
-
comment
Comment #20681930
Just curious about your just curious; what is the architecture of the current Tumblr back end? This appears to be 6 years old. Is it still relevant? http://highscalability.com/blog…
-
comment
Comment #20481714
> "Running them is as simple as `java -jar program.jar`." That is several steps too complicated: 1. Do you have Java installed? 2. Is it in the path? 3. Do you have the Required Ve…
-
comment
Comment #20481679
> "The last think you want for general server side programming and cloud systems programming is Java? Because of the JVM?" Yes, for the smaller companies that do not have the effec…
-
comment
Comment #20481654
Then use panic() and recover() for that special type of use-case. Just as easy as exception handling.
-
comment
Comment #20481648
But then you have to spend lots of extra time trying to discern between the errors that were okay, and the errors that actually indicate flaws in your code. As they say, an ounce o…
-
comment
Comment #20481599
> If you say XML you lose (it is a config fmt get over yourself...). "Besides that Mrs. Lincoln, how was the play?"
-
comment
Comment #20481586
As someone who started Go when Modules were already available, I don't think you'll run into it (unless you try to use older packages.)
-
comment
Comment #20481570
I would say you can't know if it will cause you pain until you try it. Using the metaphor, some people actually like certain types of pain, and pain is something that is very hard …
-
comment
Comment #20481548
I was one of the many who argued strenuously that they not add try(). I spent an entire day writing up my reasons who I posted to the ticket on GitHub. Bottom line, try() had too m…
-
comment
Comment #20481464
After working with Go for a while I actually find code with error handling easier to read because it is more clear to me what it happening. I look for the error handling as an indi…