HackerTrans
TopNewTrendsCommentsPastAskShowJobs

louiskottmann

no profile record

comments

louiskottmann
·w zeszłym miesiącu·discuss
And you immediately lose the ability to do `crontab -l` on any server to know its scheduled tasks.

Now you get to look around the myriad of places where you can put systemd files, and figure out which ones are base services and which ones are custom, with no general convention to go about it. Nope.
louiskottmann
·w zeszłym miesiącu·discuss
History repeats itself : it ends in blood. Always does.

As the concentration of power happens, the people who concentrate it become bigger and bigger targets.

There is no alternative to wealth distribution.
louiskottmann
·2 miesiące temu·discuss
This is borderline adversarial propaganda.

While the incident did happen, a lot of actions were taken and most of the data was recovered. OVH now also keeps backups even for clients that don't pay for it.

I was hit by that datacenter catastrophe and got my data back almost immediately, in a new VM.

I've been using them for years with little issue (no more than happened on my AWS or Azure accounts, I would say less because it's less of a mess in general).

Stop spreading false rumors.
louiskottmann
·2 miesiące temu·discuss
That's my take as well, I find fixing poor/overengineered LLM code taxing.
louiskottmann
·4 miesiące temu·discuss
The linked article does not speak of tests, it speaks of a team that failed to properly review an LLM refactor then proceeds to blame the tooling.

LLMs are good at writing tests in my experience.
louiskottmann
·4 miesiące temu·discuss
The trick is in the mud between what's yours and what's theirs. The induced doubt is lucrative.
louiskottmann
·4 miesiące temu·discuss
I find the thought daunting but the reality surprisingly easy.

You just keep up as you go, as long as you keep things close to the framework it's fine.
louiskottmann
·4 miesiące temu·discuss
I've been a Rails DevOps and nowadays a web one-man-show with it for over 10 years and I'd do it again.

Not many frameworks have been thriving that long, and there's good reason.

It packs everything, is tidy and productive, with a pleasant language to read and write.

In the latest Stackoverflow survey, it's back at the "top 5 of desired stacks to use for next project" over a decade after its inception !

Give it a try.
louiskottmann
·5 miesięcy temu·discuss
You could get rich by solving ARC 2 tasks yourself instead of forwarding the work to an LLM, given a client willing to pay LLM rate.
louiskottmann
·5 miesięcy temu·discuss
People will find a way to not need as much RAM, and thus the devices that require it.

Same way the price of groceries going up means people buy only what they need and ditch the superfluous.
louiskottmann
·6 miesięcy temu·discuss
First of all, ruby-lsp does a great job at this, and the recent Herb helps with frontend templates.

This is enough to navigate between controllers, models and libs, unless you're trying hard to be clever which you shouldn't.

Then, in Rails, things have a canonical place in the codebase, that is consistent between codebases.

This is in contrast to languages and frameworks where every codebase is setup differently, but the static typing helps find code wherever it's hidden without pain, and thus without need for cleanup and thoughtful design.

To each their own, I prefer power for me, and pain for whoever drifts from the convention.
louiskottmann
·6 miesięcy temu·discuss
This is so obviously right.

I may add that investors are mostly US-centric, and so will the bubble-bursting chaos that ensues.
louiskottmann
·7 miesięcy temu·discuss
That's indeed a good example of prior full trusting of the browser by the server.
louiskottmann
·7 miesięcy temu·discuss
I appreciate that, but in the case of TLS or CSRF tokens the server is not blindly trusting the browser in the way Sec-Fetch-Site makes it.
louiskottmann
·7 miesięcy temu·discuss
This is a massive change for cache in webapp templates as it makes their rendering more stable and thus more cacheable.

A key component here is that we are trusting the user's browser to not be tampered with, as it is the browser that sets the Sec-Fetch-Site header and guarantees it has not been tampered with.

I wonder if that's a new thing ? Do we already rely on browsers being correct in their implementation for something equally fundamental ?
louiskottmann
·8 miesięcy temu·discuss
This is my take as well. I've never come accross a JS project where the built-in datastructures were exclusively used.

One package for lists, one for sorting, and down the rabbit hole you go.
louiskottmann
·9 miesięcy temu·discuss
As history showed us numerous times, it doesn't even have to be the best to win. It rarely is, really. See the most pervasive programming languages for that.
louiskottmann
·10 miesięcy temu·discuss
Gitlab has had that for a while, and it's very useful as in-between through dot targets.

i.e:

.scoped-env: &scoped-env

   key1: value1

   ...
Dot targets are ignored semantically, only inheritors make them useful.

Then further down you can reuse *scoped-env wherever you need.

You can also have anchors on individual lines and compose them. It's useful.

The author suggests using ad-hoc syntax, or meta-keys. Gitlab supports that [1] and I use them as well.

Different but also combinable uses, for various people. Nothing wrong with it.

1: https://docs.gitlab.com/ci/yaml/#extends