HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bombela

1,783 karmajoined 14 lat temu
{username}@gmail.com

comments

bombela
·10 godzin temu·discuss
And before any major change, add a `--v2` for early adopters and `--v1` as default. Nobody should notice anything on `--v1`, any regression must be fixed imediately. Flip `--v2` as default, leaving `--v1` for the unforseen. Until you can finally get rid of them.

This helps being as invisible as possible.
bombela
·5 dni temu·discuss
I have always found the term "capacitance multiplier" misleading. I see it as a voltage regulator with a filtered input.
bombela
·13 dni temu·discuss
Very similar experience for me. Also no faces, but a feeling of who the person is relative to my self anyways.
bombela
·13 dni temu·discuss
Not yet perhaps.
bombela
·20 dni temu·discuss
plus the filter search is very slow. plus the async race conditions if you click or keyboard enter too quickly.
bombela
·20 dni temu·discuss
Click on the picture to open the full size version. Click history back to get back to the text.

I noticed I am afraid of clicking without opening new tab today because so many times the UX is broken and loses it's spatial position.
bombela
·w zeszłym miesiącu·discuss
This is great. But this doesn't cover the general expectation of a desktop application.

I want application to know the screens, send windows to know positions etc etc. And this is now compositor specific. So some applications will know how to talk to the kde compositor to share the screen, or place a window at a specific position (very useful for so many things).
bombela
·w zeszłym miesiącu·discuss
I use pinned (always above + on all workspace/desktop) quite often.

And to make it ergonomic I scripted kwin and set some shortcuts.

So yes, you can have any window PiP the way you like. But it requires you to do a long sequence of actions. Versus a single click for very specific PiP behavior.

Consider a window in a web browser tab. You could click the PiP button, which will pop out a tiny window, most likely already in a corner of the screen. This window is a mini video player. Your original browser tab stays untoucher, still at the same place in your web browser tab list, the rest of the tab still readable and scrollable etc etc.

Or, you could clone the tab. Move it to its own window. Locate the video. Put it in full screen. Un-fullscreen the window. Click on the pin button. Resize the window to the corner.

Same result, but not the same effort.
bombela
·2 miesiące temu·discuss
Indeed, Linux allows anything but "/" and "\0" in filenames. Those days its reasonable to refuse utf8 filenames. But one must always validate first!
bombela
·2 miesiące temu·discuss
Don't know what you are being down voted (or my grand parent comment for that matter). You are very correct.
bombela
·2 miesiące temu·discuss
If you are going to be pedantic, go all the way. 2^21 is 0 to 2_097_151. Unicode codepoint range is 0 to 1_114_111, slightly more than 2^20 (0 to 1_048_575).

I would argue that Unicode v2 onward; circa 1991 (Unicode Consortium and the ISO/IEC working together); is what anybody knows as Unicode with the 0 to 1_114_111 codepoints easily manipulated as a 32 bit value.

I meant variable length encoding, RLE encodes a number of successive repetition indeed.
bombela
·2 miesiące temu·discuss
In summary, Unicode code points (characters) are 32 bit. JavaScript manipulates Unicode in utf-16 for historical reasons, because at some point before Unicode, 16 bit was deemed enough (ucs-2). utf-16 run length encodes Unicode 32 codepoints into one or two code units. Splitting in a middle of a codepoints produces one invalid half string, and one semantically different half string.

emojies are a sequence of Unicode codepoints producing a single grapheme. Splitting in the middle of a grapheme will produce two valid strings, but with some funky half baked emoji. So for a text editor it makes sense to split between grapheme boundaries.
bombela
·2 miesiące temu·discuss
Ah, only a single column for me. No ad blocker. The html source doesn't even include the word price! I must be getting a different page than you somehow.

I can click on the picture to get the details and volume pricing. The 300W model has no price and a minimum order of 30 units. So I thought it ended there.

But it recommends to check out https://www.powerstream.com/DC-PC-24V-400.htm where I ultimately found the add to cart for $300.
bombela
·2 miesiące temu·discuss
How much does it cost and where to buy? If I have to call, I cannot afford it.
bombela
·2 miesiące temu·discuss
I find SMD the easiest. Using a pinecil soldering iron, or a cheap hot air station. Then through hole, because it's annoying to hold and flip the PCB around without everything falling. And finally soldering two wires is just an exercise in frustration. Helping hands or not, it's just plain annoying.
bombela
·2 miesiące temu·discuss
Another option for simplicity in dual stack is to assign visually similar addresses:

    - ipv4: 192.168.0.42
    - ipv6: prefix:192:168:0:42
I only do this for static/server machines, configuring Linux with a fixed ipv4, and append the fixed ipv6 host to the Router Advertisement prefix.
bombela
·3 miesiące temu·discuss
The almost imperceptible sliding took me w while to find out too. My phone was always on the floor any time I wasn't watching it. And if it vibrated, it was all of a sudden in a hurry to plung off tables. Active obsolescence I am telling ya!

Every morning I had to wakeup fast enough before the vibrating alarm would have it jump off my bedside table.

Of course the back cracked quickly with the constant falling. It eventually met its demise during a bike accident. I landed on a tiny rock that pushed through my pocket, exploded the glass, and ultimately broke the charging circuitry. You could see the hole through the front glass! And it was still playing music. At least until the battery died.
bombela
·3 miesiące temu·discuss
> Typography pet peeve, how do I disambiguate that dot?

I have resorted to "0.0.0.0".
bombela
·3 miesiące temu·discuss
I still got corrupted metadata with metadata raid1c3 on btrfs on a power loss. I never had this happen with ext4 alone or atop Linux raid.

I want to be clear that losing (meta)data in flight during a power loss is expected. But a broken filesystem after that is definitely not acceptable.

Some postgresql db endedup soft corrupted. Postgresql could not replay its log because btrfs threw IO errors on fsync. That's just plain not acceptable.
bombela
·3 miesiące temu·discuss
I had a metadata corruption in metadata raid1c3 (raid1, 3 copies) over 4 disks. It happened after an unplanned power loss during a simulated disk failure replacement. Since manual cleanup of the filesystem metadata (list all files, get IO errors, delete IO errored files), the btrfs kernel driver segfaults in kernel space on any scrub or device replacment attenpt.

Honestly the code of btrfs is a bit scary to read too. I have lost all trust in this filesystem.

Too bad because btrfs has pretty compelling features.