HN user

qd011

98 karma
Posts3
Comments26
View on HN

Good news is that a year in consulting isn't long enough to look like a detriment. Bad news is that the job market is crap right now.

Is anyone aware of any firms that do formal-methods-like activities

Don't limit yourself to what you studied in your PhD. A big chunk of the commercial research position will be focused on AI.

Has anyone got experience making a shift from a non-technical to a technical role?

Don't think of it as a shift from non-technical to technical role. Think of it as "I finished my CS PhD about a year ago and now I'm looking for a research/software job".

I don't understand why Python gets shit for being a slow language when it's slow but no credit for being fast when it's fast just because "it's not really Python".

If I write Python and my code is fast, to me that sounds like Python is fast, I couldn't care less whether it's because the implementation is in another language or for some other reason.

PgAdmin 4 v8.0 3 years ago

psql is good but how do you manage long multi line queries and saved collections of queries to reuse? or connections to multiple databases?

PgAdmin 4 v8.0 3 years ago

It's not a good UI, at least not on Mac. It's kind of clunky, confusing and slow. I don't know if there are many better free alternatives though.

One of the things that has changed is typing - you can and should type check your Python code with tools like mypy or pyright. Even better if you use a strict mode for mypy which forces you to type hint everything.

Also check out dataclasses, Pydantic (most of my code these days is gluing together dataclasses and Pydantic models), FastAPI, PyTorch if you're interested in ML.

What's your point, that I shouldn't criticise him because he has a wikipedia page?

A bad article is bad regardless of what the author has achieved during his career as a whole.

So what is the Oxide hiring process?

Interviews shouldn’t necessarily take one form; interviewers should feel free to take a variety of styles and approaches

I guess we still don't know.

Author: Bryan Cantrill

the act of writing — like so much else that we do — requires not only the ability to create wholly new material, but also the ability to reflect, correct, revise, and polish.

Oh Bryan, you could have spent your time doing some actual work instead of being pretentious to the tune of 4700 words and still not saying anything useful to anyone.

You have an edge in the job market for things you've done before. When you jump into a new language/domain, you're at a disadvantage - it's the exact opposite of having an edge.

Doesn't mean that you shouldn't do it but the question you should be asking yourself is more like which of the two you want to do, whether it's realistic to overcome the disadvantage you're putting yourself at, and whether the switching cost is worth it.

This is assuming that you're considering a language/domain switch; if you want to keep working on whatever you're working now and think that adding Rust or ML to your CV will help you - it probably won't.

Because it's a good name, and names are brands, not some legal commitment to anyone's intepretation of what the company does.

Apple don't sell produce, Tesla have nothing to do with the Serbian-American inventor, Amazon aren't related to the river, and the Walt Disney company kept his name after he died.

Halfsies 3 years ago

Physical exercise is the thing that prevents cognitive decline the most.

(i.e. say building a least squares model without using sklearn, etc.)

It's 2023, when I read "build models from scratch" I think about training a model from scratch and not using any pretrained models.

For your definition, there's no good use case apart from learning, or making a custom implementation for something that doesn't exist in a library.