Earlier quoted context omitted.
> "Not a cultural fit"--LOL--fix your stupid culture and stop exploiting people, you smug fools! If you're hiring someone 15+ years older than the rest of your team, there are going to be some cultural differences.
From my personal experience, this is utter bullcrap. At my first real programming job in a somewhat large company, we were an Android team of 6 developers aged 20-25 (the 25 y.o. guy was the team leader) and one dude aged 40. It was very easy to get along with him, even though we couldn't really relate to the problems of having a teenage daughter. I wouldn't call these cultural differences problematic at all - actual…
Thank HN: From Google form to $1k in revenue in one month
121–130 of 255 posts
Re: Thank HN: From Google form to $1k in revenue in one month
#122Don't get it, how do you know that age discrimination is not at play with the jobs listed on your site?
Re: Thank HN: From Google form to $1k in revenue in one month
#123Congrats! Small note, none of the listings appear when using uBlock Origin [ https://chrome.google.com/webstore/detail/ublock-origin/cjpa... ], a popular ad blocker. It seems related to your /js/ads-controller.js file (it gets blocked because of the "/js/ads-" portion in the path). I would suggest fixing that (and preferably minimizing your JS into one bundle).
You can't test against ad blockers (or virus scanners) because the lists keep changing, so you end up applying ridiculous alchemy like not calling your API endpoints "/analysis" but "/computation" and then you just hope for the best.
In the grand scheme of things, I agree that the people behind ad blockers are fighting the good fight, but in practice it's become a cat-and-mouse game of "who can break the internet the most". I don't know a solution.
Re: Thank HN: From Google form to $1k in revenue in one month
#124The jobs don't load with uBlock active.
Why should this site owner cater to someone using adblock software? If you want to see the jobs properly, add the domain to your white list.
Because he's trying to make money and ignoring this problem may lose him users? It's not like he's actually showing regular web ads, so an ad-blocking user is as potentially profitable as any other.
Re: Thank HN: From Google form to $1k in revenue in one month
#125Here's the deal: Employers will exploit your age no matter how old you are. There is no "perfect age" for a developer. When you're young, they exploit you because you are inexperienced (especially at negotiation). When you are "old" they exploit by trying to play the age card. "Not a cultural fit"--LOL--fix your stupid culture and stop exploiting people, you smug fools! So what is there? A ten year "ripe" age range w…
> "Not a cultural fit"--LOL--fix your stupid culture and stop exploiting people, you smug fools! If you're hiring someone 15+ years older than the rest of your team, there are going to be some cultural differences.
"Cultural fit" is either a prejudice or an excuse.
The 'old' guys who never stopped improving are friggin amazing in my experience.
Re: Thank HN: From Google form to $1k in revenue in one month
#126Re: Thank HN: From Google form to $1k in revenue in one month
#127I wish folks like Bray had championed this cause 20 years ago. It may not have done much, but... it feels a bit weird to hear old people complain about discriminatory impact. I can't say he was a contributing factor to the ongoing 'youth culture', but... it wasn't hard to see this coming. My situation may be somewhat unique, in that I've had grey hair since I was 18. Not a HUGE amount at 18, but... people noticed. By…
Re: Thank HN: From Google form to $1k in revenue in one month
#128Congrats! Small note, none of the listings appear when using uBlock Origin [ https://chrome.google.com/webstore/detail/ublock-origin/cjpa... ], a popular ad blocker. It seems related to your /js/ads-controller.js file (it gets blocked because of the "/js/ads-" portion in the path). I would suggest fixing that (and preferably minimizing your JS into one bundle).
I don't understand the crusade against people not using ad blockers by the way. I believe I have good reasons not to. Why do people seem to have a problem with that?
Re: Thank HN: From Google form to $1k in revenue in one month
#129Here's the deal: Employers will exploit your age no matter how old you are. There is no "perfect age" for a developer. When you're young, they exploit you because you are inexperienced (especially at negotiation). When you are "old" they exploit by trying to play the age card. "Not a cultural fit"--LOL--fix your stupid culture and stop exploiting people, you smug fools! So what is there? A ten year "ripe" age range w…
> "Not a cultural fit"--LOL--fix your stupid culture and stop exploiting people, you smug fools! If you're hiring someone 15+ years older than the rest of your team, there are going to be some cultural differences.
I've talked about this before and I've heard crazy shit like "what if the person in question has to go back to wife&kids rather than go out for drinks - it's a cultural misfit" and honestly... what the fuck. Not going out, not participating in out-of-office activities, who cares? I avoid most parties (or only go to show up) because I intensely dislike them. That doesn't make me older than the rest of my team, and if someone thinks it's an issue they're probably someone I don't want to work with.
There's extremes (such as extremely antisocial people) you can't always accomodate, but that usually has nothing to do with age.
Re: Thank HN: From Google form to $1k in revenue in one month
#130Congrats! Small note, none of the listings appear when using uBlock Origin [ https://chrome.google.com/webstore/detail/ublock-origin/cjpa... ], a popular ad blocker. It seems related to your /js/ads-controller.js file (it gets blocked because of the "/js/ads-" portion in the path). I would suggest fixing that (and preferably minimizing your JS into one bundle).
Your code in each js file seems self-contained, so a simple in-order file concatenation into one .js file as a build step would help. gulp and gulp-concat would do it in a few lines of node, and you'd push the built output to your site.
If you end up wrting so much script that a concatenation approach stops scaling, look into webpack and web modules.