HackerLangs
TopNewTrendsCommentsPastAskShowJobs

repelsteeltje

no profile record

Submissions

OpenAI's KOSA Endorsement Is Regulatory Capture with a Smiley Face

techdirt.com
15 points·by repelsteeltje·2 месяца назад·0 comments

€5 gadget tracks down Dutch Navy's stealth warship while on mission

nltimes.nl
1 points·by repelsteeltje·3 месяца назад·1 comments

Russian hackers breach Signal and WhatsApp accounts officials, Netherlands warns

reuters.com
4 points·by repelsteeltje·4 месяца назад·0 comments

comments

repelsteeltje
·9 дней назад·discuss
Sample accurate editing is with AAC is a pain though. Especially if you also have video, because frame rates are usually incompatible.

If you want flexibility without fully transcoding both audio and video, Opus is your friend
repelsteeltje
·9 дней назад·discuss
Why not use a lossless codec if you care about quality? Or use Opus, descent for specht and works pretty much anywhere these days.
repelsteeltje
·18 дней назад·discuss
The correlation between job cuts and ai growth is real. But it's related more to ai cost than ai performance. Especially in Oracle's highly leveraged case.
repelsteeltje
·28 дней назад·discuss
Etymologically you're correct that semites refers to [all] people from middle east and horn of Africa. But the label is from the European perspective, where it was used to refer to Jews. I'm sure that if they'd had a say in it, they would not have referred to themselves as Jews.

But yeah, there is indeed some irony in the term "antisemitism" in the context you describe
repelsteeltje
·29 дней назад·discuss
> Sorry, but to me an LLM is nothing but a tool. It is not a replacement for my expertise and it is definitely not something to outsource my thinking to.

Great on you, that's indeed how LLMs should be used, proper. But if anything, the article demonstrates someone is trying to outsource thinking to an AI agent.
repelsteeltje
·в прошлом месяце·discuss
I agree that's fine in that at least it's doesn't cause unmaintainable garbage. And might even get you up to speed quicker that reading the docs old school.

But the GP point, that you're better off finding people that already, truly understand and are familiar with the tech (ie. Astro), imo still stands.
repelsteeltje
·в прошлом месяце·discuss
You mean, use encryption (+base64 or something) as a "poor man's" string-escape? Interesting idea!
repelsteeltje
·в прошлом месяце·discuss
There will always be cases (like audio processing, car brakes, pace makers) where hard real-time constraints prohibit GC languages (as well as l1 cache, instruction reordering and other optimizations). Also, consider that Python's performance frequently originates in it's bindings to libraries written in C, C++, Fortran, Rust.

I recently ran a few Java benchmarks and found that an array holding a bunch of objects incurred approx 3x the number of bytes compared to the expected number based on underlying class data structure. With current RAM prices, that is something to consider if you're building software that's meant to scale. Mileage may vary, but I expect JavaScript or Python will be similar.

So, sure. There is a case to be made that ergonomics and dev velocity. And premature micro optimizations might take your focus away from good systems architecture. But I've frequently found the need to peal of leaky abstractions and having to understand and be savvy at low level stuff too. Nothing wrong with studying the guts of a C64 or Amiga, today.

Python, Java or TypeScript are good educational tools, but you'd be doing yourself a disservice if you'd confine yourself to them without understanding computers.
repelsteeltje
·в прошлом месяце·discuss
Interesting. I'm know nothing about Apple, but maybe you can explain how idiomatic Swift handles Blobs and how that interfaces with C or C++ around void ptrs, std::spans etc.?
repelsteeltje
·в прошлом месяце·discuss
There is a difference between UB in C, and something being undefined in some version of Microsoft C on Windows.

Many of C's UB is specifically, intentionally left undefined in the standard to express code that relies on some specific way it is handled, is not proper, portable C. Indeed, the DWORD-sized memory access being atomic doesn't apply to MS Windows prior to version 3.0 running on a 80286.

It's UB because the ISO C spec says it's UB.
repelsteeltje
·в прошлом месяце·discuss
+1

And SAL annotations aren't even C++ proper.
repelsteeltje
·в прошлом месяце·discuss
I don't think the cloud (someone else's computer) is the best solution. The sanitation problem can be mitigated by compartimentization but the cloud aspect also adds brittleness and new attack vectors.

Why not set up proper containers (or VMs) locally? And why not wait a little till local LLMs catch up?

Maybe just a personal itch, but having your dev environment elsewhere feels so gross to me..
repelsteeltje
·в прошлом месяце·discuss
Would that mean the original owner gets it back? Would they have to pay property tax backlog retroactively? Might be huge..
repelsteeltje
·в прошлом месяце·discuss
Hadn't thought of that and I think you're right.

Having been exposed to Java < 5 (before generics) Arrays felt somewhat like JavaScript or PHP3. It's a lot more ergonomic today.

But there are still many remnants (like null refs, despite Option<>) that are easiest understood by tracing back Java's historical roots.
repelsteeltje
·в прошлом месяце·discuss
Haven't yet used Zig in anger, but it looks more like a successor to C (with a bit of Go), whereas Rust is a successor to C++, first and foremost.
repelsteeltje
·в прошлом месяце·discuss
Distopian, what an insightful frame
repelsteeltje
·в прошлом месяце·discuss
There is more to math, than input (money) and output (power). Sure, there is some relation between applied sciences and how knowlegde can assist effecting world events.

But for the most part, math discovery relied more on human curiosity than on resources to "do math". Conversely, if people allocate lots of money to developing AI, that doesn't mean mathematicians have an obligation to take the money provide ROI to investors.
repelsteeltje
·в прошлом месяце·discuss
That might change the odds, but unless you fork diligently (and monkeypatch each and every future vulnerability) you might ship a compromised fork forever.
repelsteeltje
·в прошлом месяце·discuss
That sounds terrible! Feels like your LLM agent probably has more control over your computer than you. Can't imagine being confined to a prison like that, but I suppose there are other aspects (monetary or otherwise) of the job that make up?
repelsteeltje
·в прошлом месяце·discuss
Precisely. There is nothing preventing you from doing the same in Linux: rather than installing docker, install docker on a Linux VM (ie. using KVM).

Conversely, docker containers don't actually exist on MacOs. Docker desktop is merely a way to emulate docker on apple hardware.