Viewing profile — mhansen
mhansen
HN member- Joined
- Sat, Jun 20, 2009, 7:37 AM UTC
- HN karma
- 1,616
- Public activity
- 472 items
- HN profile
- View on Hacker News ↗
About mhansen
No profile information was provided.
Recent public activity
-
comment
Comment #28806135
Thanks, I've gone through and added these HPC tools to the spreadsheet. FYI I'd consider py-spy for profiling Python+C extensions: https://github.com/benfred/py-spy#can-py-spy-prof…
-
comment
Comment #28757048
Author here; thanks for sharing, the HPC world is a real blindspot for me and I think we're probably missing some of their insights when profiling regular applications. I'll resear…
-
comment
Comment #28757042
Author here. You're probably already aware of this, but you can convert the `perf record` format to a format Clang understands: https://clang.llvm.org/docs/UsersManual.html#using-s…
-
comment
Comment #28757028
Author here. Yeah, Chrome Trace Format + Perfetto is great and so easy to output. Anyone wanting to trace software could get some very quick wins by outputting Chrome Trace Format.…
-
comment
Comment #10527875
You can donate at http://www.cureblindness.org/
-
comment
Comment #5196044
You might be interested that this is such a common way to derail conversations about privilege that it's made part of 'Derailing for Dummies'. http://birdofparadox.wordpress.com/de…
-
comment
Comment #4365089
Have a look in Google Earth. It has street view from generations of rovers ;)
-
comment
Comment #4338084
For Google Apps paid users: http://googleenterprise.blogspot.com.au/2011/11/24-x-7-phone...
-
comment
Comment #4201667
Nowhere are abbreviations forbidden by the Google Style Guide.
-
comment
Comment #4170979
Yeoman was launched today at Google IO.
-
comment
Comment #4156039
Yes.
-
comment
Comment #4155606
Feature request: RTL. :)
-
comment
Comment #4155605
Feature request: RTL. :)
-
comment
Comment #4115447
Angular doesn't include JSON parsing any more.
-
comment
Comment #4114684
Sorry, what I meant is that when the application rerenders (digesting changes that have been made) it will re-evaluate the function to check if the result has changed. Polling the …
-
comment
Comment #4114418
Yes, it polls. Most functions are quite fast, and fine to just poll, and it's quite convenient to be able to bind to functions when needed. But it's all tradeoffs - in our app we h…
-
comment
Comment #4114410
[Googler here] There's little overlap between Closure Library and Angular. Closure Library is a grab bag library full of useful functions that you can pick and choose from and inte…
-
comment
Comment #4114398
Angular's agnostic to which testing framework you use. We test our angular app with a headless v8 running http://code.google.com/p/google-js-test/ .
-
comment
Comment #4114391
I work at Google, but not on the Angular team. Our team has deployed angular.js: places.google.com/manage. Angular's also used extensively in internal projects.
-
comment
Comment #4090935
Override Backbone.Sync, and you should be sweet.
-
comment
Comment #4073215
I use fish ( http://fishshell.com/ ), and it's amazing. However, they're missing the most important feature from their front page: Syntax highlighting! Valid executables are colore…
-
comment
Comment #4068546
I don't believe that browsers let uploads be gzipped, as it can't be sure that the server supports gzipped requests.
-
comment
Comment #4001095
pygame works well for this.
-
comment
Comment #3959256
I daresay by now users are more familiar with web-based UI paradigms than traditional OS paradigms. I think they'd spend more time interacting with web-based applications than trad…
-
comment
Comment #3959128
It makes it easier for contributors to hack on if the code is HTML/JS/CSS. It'll let them iterate faster - just change code and reload. No recompilation needed.