HackerTrans
TopNewTrendsCommentsPastAskShowJobs

looneysquash

no profile record

comments

looneysquash
·letzten Monat·discuss
I love the transparency that Adafruit is proving on this.
looneysquash
·vor 2 Monaten·discuss
I wonder if any compiler can rewrite that last one into one of the others.
looneysquash
·vor 2 Monaten·discuss
And companies are legal fiction. Meta doesn't remove a post, a person does. Or maybe some software built by a person.

A person from a government told a person at Meta to block it, and that person did (probably by telling yet more people to do it).
looneysquash
·vor 2 Monaten·discuss
Well, I haven't actually tried the asm.js approach for this, so maybe I'm missing something.

But since asm.js is just (a subset of) javascript, I assumed I could just pass ArrayBuffers around.

With wasm, I could pass a Uint8Array out of it. If I wanted to pass it in, I had to call malloc from the javascript side to allocate in the wasm heap. But since I already had an arraybuffer (from a file upload), that meant an extra copy.
looneysquash
·vor 2 Monaten·discuss
I personally think this is a mistake. But I'm not sure how much it matters. It's not like a lot of people were using asm.js still AFAIK.

But wasm is too isolated from javascript. From my limited use of it, I was considering trying to compile to asmjs instead.

But I wasn't sure that emscripten still fully supported it.

You can't call most web apis from wasm.

But more important for what i was trying to do, you can't zero copy buffers from js to wasm.

Everything is a trade off. The isolation is a good thing, but also a bad thing.
looneysquash
·vor 2 Monaten·discuss
It's not clear to me from that post how they will be spending the money they'll save by firing 60% of our R&D team.

Could someone explain it?

If you have a lot of new stuff to build, and if you're not currently losing money, why start a new initiative with a layoff?
looneysquash
·vor 2 Monaten·discuss
Would be nice if more people were focus on fixing these issues instead of just a bunch of "we already know", and making fun up the tone of the site.

Thanks op for reminding us of the privacy issues with our browsers. The EFF and others already told us, but the issues remain. Lets hope you're hear to stay and fight for our privacy alongside us.
looneysquash
·vor 2 Monaten·discuss
That sounds like it wouldn't scale. If everyone did it, then it would just delay things.
looneysquash
·vor 2 Monaten·discuss
The number 42 is also a mathematical symbol we can observe. (Or two symbols, depending on how you want to define symbol).

You can observe the symbol. You can observe 42 of some object, 42 sheep for example.

You can observe a pie chart, or an actual pie, with 42% of it missing.

You can observe a plank of wood that is 42 inches or centimeters long.

But you can't observe 42 itself.

It is not like a hill on a map, where there is a symbol, and there's an actual hill.

It is an adjective and not a noun. It's not real unless it is describing something else.

My point being that regular finite numbers are not real either. So what's wrong with infinity? Or the square root of 2, or pi?
looneysquash
·vor 3 Monaten·discuss
Why would you name yourself Warp without any connection to OS/2?
looneysquash
·vor 3 Monaten·discuss
To me, one of the big features of markdown is it's half WYSIWYG.

By that I mean, the basics reuse the way we faked formatting to do real formatting. The input is (usually) perfectly readable on its own.

Even if you don't know (or remember) how to author a markdown file, you can probably still read it just fine. The tables still look like tables. The paragraphs are just paragraphs.

I do still have to look up how to do stuff in markdown sometimes. And that's fine. Your active vocabulary is always smaller than your passive one.

So the way I judge this is by how readable the input is.

I'm not sure how well they succeeded at that. A lot of what they show doesn't really add to or take away from that.

But I didn't see any examples of them formatting math. I only rarely use LaTex. And when I do, it's not because I need a "paged" mode or need to include an author. It's because I need to format something markdown can't do, and that's usually a math equation.

So I am curious how that ends up looking.
looneysquash
·vor 3 Monaten·discuss
Somewhat related, this book is pretty good: https://ethanmarcotte.com/books/you-deserve-a-tech-union/

It answers a lot of the questions I see being asked in this thread.
looneysquash
·vor 3 Monaten·discuss
The company you work for almost always has more power in negotiations than you do. (For some hypothetical "you".)

The bigger the company is, the more power they have typically.

If you want to make more money or get better benefits or otherwise negotiate a better contract, you need more leverage.

Unionizing is one way to gain more negotiation power by negotiating together with your co-workers instead of individually.

It also makes it easier to address cross cutting concerns like safety and fairness.
looneysquash
·vor 3 Monaten·discuss
For a open source project like SDL is, for something like this, it's usually a matter of how invasive it is, and how likely the contributors seem to stick around and maintain it.

Different projects have different policies, and I don't know what SDLs is.

But they already have a lot of ports, so I trust they know what they're getting themselves into.
looneysquash
·vor 3 Monaten·discuss
That's deplorable. We probably need to dig one or more levels deeper though.

What changed to enable and popularized these bad business practices?
looneysquash
·vor 3 Monaten·discuss
But what would have happened if they weren't able to get Microsoft's attention through an outside channel (this site) and had to go through the normal process?

I'm glad it was resolved quickly for WireGuard, but I'm concerned the results won't generalize.

Also, thanks for WireGuard!
looneysquash
·vor 3 Monaten·discuss
> The tough truth is that there already is a cargo for C/C++: Conan2

Is it though?

When I read the tutorial: https://docs.conan.io/2/tutorial/consuming_packages/build_si...

It says to hand write a `CMakeLists.txt` file. This is before it has me create a `conanfile.txt` even.

I have the same complaint about vcpkg.

It seems like it takes: `(conan | vcpkg) + (cmake | autotools) + (ninja | make)` to do the basics what cargo does.
looneysquash
·vor 3 Monaten·discuss
Besides Cargo, you might want to take a look at Python's pyproject.toml standard. https://packaging.python.org/en/latest/guides/writing-pyproj...

It's similar, but designed for an existing ecosystem. Cargo is designed for `cargo`, obviously.

But `pyproject.toml` is designed for the existing tools to all eventually adopt. (As well as new tools, of course.)
looneysquash
·vor 3 Monaten·discuss
Nice. I have been thinking of making something similar. Now hopefully I don't have to!

Not sure how big your plans are.

My thoughts would be to start as a cmake generator but to eventually replace it. Maybe optionally.

And to integrate suppoet for existing package managers like vcpkg.

At the same time, I'd want to remain modular enough that's it's not all or nothing. I also don't like locking.

But right now package management and build system are decoupled completely. And they are not like that in other ecosystems.

For example, Cmake can use vcpkg to install a package but then I still have to write more cmake to actually find and use it.
looneysquash
·vor 4 Monaten·discuss
I've only interacted with him a couple of times, years ago, but he was very helpful and accepted my MR.