Viewing profile — mattdawson
mattdawson
HN member- Joined
- Wed, May 20, 2009, 4:12 PM UTC
- HN karma
- 78
- Public activity
- 59 items
- HN profile
- View on Hacker News ↗
About mattdawson
No profile information was provided.
Recent public activity
-
comment
Comment #15358980
I honestly don't mean it as any kind of personal slight or insult. My apologies that I came across that way. (I'm tempted to edit the OP, but won't for clarity purposes.) For what …
-
comment
Comment #15358817
Yeah, that'd be fine - if they worked for all people .
-
comment
Comment #15358785
The lack of even a nod to diversity issues (race, gender, class, etc.) that the tech industry is dealing (or not dealing with) is tone deaf and insulting to the extreme.
-
comment
Comment #14472326
I'll consider myself lucky if I get to work on a project that only creates 49 regressions in 4+ years (which appears to be how far this changelog currently goes back).
-
comment
Comment #9119012
> I can't imagine how I would construct a scene with a gold/white dress and then take a picture that looks like the one in the OP I can. To me, this initially looked like a situati…
-
comment
Comment #8217415
> With a ZNC bounce, a simple ircd server and 5 minutes you can avoid paying for communication and keep your company chat logs secure and on your own infrastructure. Having watched…
-
comment
Comment #8209000
I have, and I'd even be up for using it on a production project. I'd go so far to say I like it even. But the fact stands that the current project I'm working on has a Gruntfile th…
-
comment
Comment #8208579
Yeah, but it's also trivially easy to wrap a 3rd party task in your own task and munge the config at run time. (I'll admit that that pattern didn't become apparent to me until afte…
-
comment
Comment #8208406
I practically live and die by the 5 Minute Rule, and as a counterpoint, I've always found Grunt intuitive, if verbose. In particular, I love that its files API is so flexible. I fr…
-
comment
Comment #7653235
"One of the reasons I wrote that post a year ago was that I had to own up to the fact that we looked better than we actually were." How very un-Internet-y of you. :)
-
comment
Comment #7371391
I think you underestimate the extent to which SXSW has gone mainstream. There are likely a lot of conservatives who deplore Snowden's actions participating in SXSW.
-
comment
Comment #7203688
Totally agree with the "might me good for maintenance mode" sentiment. I'm working on a pre-1.0 project. I'm thinking about the few commits where I was first implementing localStor…
-
comment
Comment #7036985
This is most definitely not git flow. Git flow advocates explicit merges pretty much everywhere with no fast-forwards and definitely no rebasing.
-
comment
Comment #7007632
No, it actually does both - which is why I was so interested in it initially. from the above link: "generates code to be used to easily build RPC clients and servers" TBF, I haven'…
-
comment
Comment #7005592
http://thrift.apache.org/
-
comment
Comment #6664781
> Mediocre Javascript developers are easy to find FTFY. In all seriousness, though, I'm the lead developer on a web applications team at a medium-sized client services company and …
-
comment
Comment #6516017
>> Perhaps you mean the phenomenon of popular artists that are so big that they are household names across all demographics across the globe/nation. If so then your probably right.…
-
comment
Comment #5846741
FWIW, this is also the way O'Reilly's JS Pocket Reference explains it.
-
comment
Comment #5730593
Do you know of any tutorials that follow this "deep dive first" approach? That's exactly how I like to learn.
-
comment
Comment #5636297
Yep, me too - it's a known issue. https://github.com/Kodowa/Light-Table-Playground/issues/448
-
comment
Comment #5592560
The same is true in Python - in single inheritance cases. (The rules for Python's method resolution order are more complex where multiple inheritance are involved[1].) 1. http://py…
-
comment
Comment #5289675
Huh. Shocked that the install numbers for vim-nox are so low. That's always been my goto package.
-
comment
Comment #5241733
It's been over a year since I had to set this up, but I used HAProxy in a similar setup and still needed stunnel. In the whole of my DevOps career, getting SSL working with web soc…
-
comment
Comment #4927339
I've looked at Peewee (albeit before the rewrite mentioned here), and, more to the point, my first response was "why didn't he write this in SQLAlchemy." SQLAlchemy is a battle har…
-
comment
Comment #4812154
A little off topic, but forms are a big PITA using Flask and extensions, too. Forms are definitely not a solved problem in the python world.