HN user

getsat

2,041 karma
Posts1
Comments954
View on HN
[dead] 11 years ago

A URL shortener link to a thinly-veiled affiliate marketing page?

As much as I dislike using overly broad labels:

Liberals tend to favor equality of outcome while conservatives tend to favor equality of opportunity.

These kinds of diversity reports usually show that "white people are overrepresented" and "hispanic and black people are underrepresented". They usually do not mention that asians are GROSSLY overrepresented. It doesn't fit the agenda because, despite being the most successful ethnic group in the US in terms of income, they are not considered "powerful".

They said I have to use a VM. They also mentioned I can't bring my own hardware.

Suggestions welcome.

Keep looking for a new job. I guarantee this is the tip of the nightmare iceberg you're about to hit.

I hope I am wrong, but I've seen this enough times before to know that I'm probably not.

Actually, I am reminded of an error that happened which was similar to this. After I left a past company, an engineer flubbed a validation which allowed a subtle bug to go undetected for 10 days which cost the company $500,000.

$50,000/day is an expensive lesson!

I ported a project to Rust and then ported it to C++14 (which is awesome!), but I only did that because Rust was in a state of massive flux at the time and I got tired of the project breaking every two days due to changes to the compiler/syntax/stdlib. I plan to reevaluate Rust once it's settled down a bit.

The reason you don't get a reply (in the US anyways) is for legal reasons. If you say anything which could be even remotely (mis)interpreted as some sort of bias, your company could lose lots of money/time and potentially go bankrupt due to a discrimination lawsuit.

It's sadly safer to just not reject candidates at all. Don't hate the player, hate the game.

It's not people, though. It's bots! While changing the ssh port adds a comically small amount of security (if any), it isolates you from 99.99% of automated attacks and keeps those logs clean, so I'd recommend it for everyone.

Just remember that the port argument to `scp` is -P and not -p like it is for `ssh`. :p

Changing the port to something other than the default (even to something obvious like 22222) will get rid of all the log spam. You could also use something like fail2ban, but changing the port is much simpler.

I gave your presentation a quick look.

Maxmind - good. Not like there's many choices here, though. :)

Instead of "waking up to sync logs", consider using something like NSQ to emit events as they happen. You can scale the number of servers/processes generating messages and the number of workers consuming those messages (and committing them to your database) very easily.

You could also replace the writing of the transaction log with a NSQ event. It lets you avoid having to write and scale the log shipping stuff.

We precalculated which ads a given user was eligible for and a separate process was contacted when a bid request came in to get the info for the ad to show. We never had to do anything funky to do geotargeting exclusion at scale.

Instead of having your adserver connect to a database, have a separate process generate a working set (as JSON or whatever you fancy), compress it, and ship it to the adserver periodically. The adserver can just do a straight load from the file every minute or whatever interval you'd like. If the file's mtime is too old, raise an alert and stop serving ads if necessary. Keeping things separate and simple lets you scale more simply. Our working sets were on average about 2gb uncompressed and they could be loaded in a few seconds (C++/JSON and later Go + JSON).

Seems like it was a fun project and I hope you learned a lot!

Anycast will spread incoming requests out to N physical machines, then you can do your layer 3 load balancing, then you can do your SSL termination and HTTP load balancing.

We didn't use anycast, though. I suggested it to our CTO many times and it would have saved us over $5,000/mo in DNS costs, but it never got done.

Thanks for the tip. I've been playing games on Windows 8.1 without any noticeable issues, but I will keep this in mind. I'll likely not upgrade this pirated copy of Windows 8.1 to 10 (since it literally only has Steam installed), but I will buy 10 to run it in a VM for development.