dazzer | 7 years ago | on: The Middle Child Is Going Extinct
dazzer's comments
dazzer | 8 years ago | on: Why your programmers just want to code
dazzer | 14 years ago | on: Best roles or positions for strong speakers?
i.e. someone who loves the product, knows about the product, and is able to pitch the product in different ways to different audiences (techy users, developers, etc.). This person would also know how to demonstrate the best features of the product.
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
Do you then proclaim to everyone that they must let their children roam alone on the streets as the real risk is low?
What is important is people have a choice to act on their perceived risks. In your example, the ability to wear clothes to hide their gender is their choice, it is not imposed on them.
In this case, they do not have a choice that is sufficiently suitable.
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
The issue is NOT about gender identification. It is Google+ not providing the ability to hide your gender on your profile (I won't say they're FORCING you to post your gender).
The issue of Gender Identification is merely an example provided to justify the usage of such a feature. So let's avoid a massive gender debate here, when you can read all about it in the post itself.
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
Wonder what others think
dazzer | 14 years ago | on: XKCD's Randall Munroe on Google+ requiring your gender to be public
While I believe that people get overly sensitive about gender (or any politicall-incorrectness), I also believe that it is in their right to do so, and if Google does fulfil this request then all the better for it.
Aside, though, this post by Randall seems a little overkill at this stage... unless Google has taken an obvious stance on the issue there is no reason to take umbrage.
dazzer | 14 years ago | on: Ask HN: How much do you pay software engineers?
What's wrong with talking about what you earn? I can understand if it was pride/ego preventing people from talking about it. But from the workers' perspective wouldn't it be better to know what the going rates are to make sure you aren't getting ripped off for your work.
dazzer | 14 years ago | on: I'm earning a co-founder, you perhaps?
dazzer | 14 years ago | on: WordPress › WordPress 3.2 now available
By declaring right out that it is no longer going to be supported, people will be encouraged to write for the newer databases. Eventually when the standard MySQL version moves up, it won't be stuck in 4.1. Plugins authors will also appreciate that they have been given enough heads-up to update their plugins.
This will also give people time to upgrade their databases if they're managing their own.
dazzer | 14 years ago | on: Ask HN: What's an HTML5 app?
Yes.
dazzer | 14 years ago | on: Ask HN: What's so great about having two monitors?
In Windows 7 you can now dock windows to the left or right. This has worked really well for me on a single 24'' at 1900x1200 resolution. In the past this was not possible out of the box.
dazzer | 14 years ago | on: Firefox To Drop http:// and Single Trailing Slashes In The Address Bar
dazzer | 14 years ago | on: ORM is an anti-pattern
dazzer | 14 years ago | on: ORM is an anti-pattern
The whole point of an ORM is to abstract the data from application code. Business Logic can be built on top of it with minimal knowledge of the underlying data storage system except in exceptional cases. ORM frameworks aim to simplify the process of writing these boilerplate code and continue to fulfil most common use cases.
dazzer | 14 years ago | on: We have 5 ideas and can't decide on what to build, so we made this site
dazzer | 14 years ago | on: ORM is an anti-pattern
Any abstraction on any level is going to add a performance hit no matter what.
If this was really an issue, wrap your ORM Framework stuff (differentiating from ORM the pattern) in a DAL layer so that your BLL does not worry about the existence of the ORM. Then as you scale, optimise your DAL with either inbuilt optimisations or when desperate write your own SQL (if you don't even know SQL then you're a poor excuse of a developer)
Think of them as like Ikea furniture - they don't look great, and they don't often fit in every household if they have complex requirements. But they're highly modular, and easy to assemble. So when you need something in a jiffy, just bring it home, fix it up and it'll perform its purpose. When it no longer fits the purpose, get something else. And every household has to just start somewhere.