HN user

blacktriangle

1,631 karma
Posts0
Comments762
View on HN
No posts found.

I love how you both acknowledge that health care workers quitting over forced vaccination is an issue while immediately dismissing their actual experience of having worked through both pre and post vaccine covid world and first hand seeing the impact of mass vacination.

If enough health care workers are willing to walk away from their jobs rather than take a vaccine, maybe you should take their observations seriously?

Because the timing IS information. Why was a piece of information stated up front, or last, or in the fine print, or released to the public on friday at 5pm, etc.

We're not evaluating an arbitrary collection of facts, we're evaluating a flow (ie time varient) of information from a source of unknown trusthworthyness and as such we are looking for more information than just taking everything stated at face value.

It doesn't take a rocket science to figure out a cokehead who was kicked out of the navy who speaks 0 Russian or Ukranian, and has 0 experience in the energy industry but whose dad is a prominant politician getting millions is corruption.

I think the bigger issue is how so many people refuse to see this.

And for you people who want to write this off as partisan, Romney was in on it too by a similar line of reasoning.

I would argue that any function that branches on argument type is straight up doing dynamic typing wrong. Well branching may not be the right word. Something resembling pattern maching is fine, but like you say having a function that takes a string for lookup OR the object is just a disaster, particularly when you start stacking function calls. Dynamic types should closer resemble things that all share an interface, not totally different representations of that data based on the shape of your code.

Javascript is by far the worst offender here with its ignoring extra arguments. Javascript functions that totally change effective type signatures based on number of args are the devil's work.

I'd argue that if the types that a function accepts are not easily defineable than you're doing dynamic typing wrong.

I'm not a golang fan, but one thing I've noticed about go is that it is possibly the most approachable yet real programming language for beginners I've ever seen. I think this is part of why go is doing so well in the devops space. Sys admins who are not really well versed in programming but know enough to write some scripts here and there are able to bring their domain specific knowledge of admin tasks and write code to contribute.

What to Learn 5 years ago

A bit paradoxically, being a generalist is a particular strength, and as the article points out one of the things you can do to do better at work is work in areas that best utilize your strengths. Ergo, if you're the kind of person who is good at quickly superficially learning a wide variety of topics, solo entrepenureship is possibly the best place for you.

Honestly you touch one one of the reasons I love Heroku so much. I've never seen a service that manages to do so much of the heavy lifting for me, but at the same time be 0 lock-in. I've helped move 2 apps off Heroku once they hit a point where they needed a bit more operational flexibility and there was zero work to disentangle them from Heroku operationally. Try that with AWS, GCE, or anything else.

They've been mucking with the asset pipeline every single version and their forray into webpacker has been a disaster. Turbolinks and ActionCable have been attempts to compete with SPAs while still being SSR but both are just glitchy and a source of endless Heizenbugs. Thankfully Rails7 looks like they've restored sanity.

Eh a lot of these seems like strengths of Django. Rails chasing the SPA dragon has been a source of endless pain.

How to win at CORS 5 years ago

This is just not an option for so many very legitimate use cases. Building client-side apps that aggregate and display information from multiple web services hosting on domains totally outside of my control is valuable.

OpenBSD 7.0 5 years ago

I think we're talking about different definitions of consistency.

In the BSD context, consistancy is that human effort has been put in to get the userspace to look similar. Similar behavior of command line tools, similar documentation, similar configuration, etc.

It looks like you're talking about consistancy of packages across installs, which is a totally different issue.

OpenBSD 7.0 5 years ago

Honestly that is a compliment. When it comes to evaluating tech, the best statements are those where you can walk away knowing very clearly that yes, this meets my needs, or no this absolutely does not meet my needs.

OpenBSD 7.0 5 years ago

ooc why didn't you try NetBSD? Isn't running on every little device kinda their wheelhouse?

OpenBSD 7.0 5 years ago

It made me switch from Linux.

If it doesn't sound compelling to you, that's okay too, Linux is great. But I do think focusing on the consistency of design really is the best high-level summary of the difference between Linux and OpenBSD.

Ada, Alice...

Interesting question, but it might just be a yellow volkswagon effect. Quickly looking at Wikipedia's list of languages, theres Babbage, Bertrand, Cecil, Darwin, Dylan, Escher, Euclid, Euler, Godel, Hume, Orwell, Tom, Zeno, and probably a few others I missed.

EDIT: Haskell and Pascal, how embarassing to miss those

I've done a few, it's been fine. If you try and use cvs like git sure you're going to get burned. There's a reason Linux was using Bitkeeper and not cvs after all. But if your project organization works well with cvs, you can seriously avoid the massive wad of incidental complexity that is git.

Is the zen of git to stop using git? Somewhat inspired by OpenBSD I spun up my most recent side project with cvs. I'm amazed how much less stressful code management has become. Makes me want to go further back in time and learn how to properly use rcs.

Advocating for increased corporate scrutiny across the board is totally orthogonal to advocating for increased scrutiny of a particular company based on the isolated rantings of this wombat.

Credit where credit is due, we all WISH *nix had something like PowerShell. Passing strings from program to program is a pain, passing around .NET objects instead is a great step forward, as can be seen by the several attempts at similar shells passing around JSON objects.

Not ironic at all. One of the arguments against WebSQL and for IndexedDB was that the web platform should incorporate a lower level API and that the library ecosystem could then experiement with how to interact with that API at a higher level.