Yup. Gentoo people are working on it as well. This is only a problem on 32-bit Linux too, right?
Yup. Gentoo people are working on it as well. This is only a problem on 32-bit Linux too, right?
I wasn’t able to edit a hunk (like the e key in git add -p) which I use a lot to split debug statements from real work
I don’t think the builtin diff editor can do this, but you can set a different diff editor than the builtin one: https://github.com/martinvonz/jj/blob/main/docs/config.md#editing-diffs
edit: but wait, debug statements? Are they mixed in on the same line as the real code? The builtin diff editor can pick changes per line.
I found no way to show the original diff
jj evolog to show how a single change evolved including the previous commit that didn’t have the conflict yet, if that’s what you mean.
jj undo did not worked (I have not been able to undo the jj squash that introduced the conflict
If you did something afterwards, the operation you undo will no longer be the squash. Look at jj op log to see which one is the correct one to undo.
When I’m living somewhere where I control my home network again, I’m definitely setting this up.
Last time I got as far as setting up DNS64/NAT64 and then Steam stopped working so I reluctantly enabled IPv4 again. CLAT seems like a great solution for that that I didn’t know about (or didn’t try)
It would be so funny if Apple actually enforced their rule about every app having to work in an IPv6-only environment. Maybe if some of the worst offenders got kicked off the holy App Store all at once to whose every whim they usually answer, they’d actually finally bother fixing their shit.
The ones used for English? Sure. When it comes to other languages I certainly don’t know all of them though.
Though, that is at least partially due to me learning English as a second language so I’ve looked at these a lot in dictionaries.
https://en.wikipedia.org/wiki/Help:IPA/English
This is phonetic1 spelling. The only good one.
1 Actually phonemic. Don’t kill me
The bingo one actually uses crossbeam channels instead of mutexes, so that’s nice. I haven’t looked too closely at it though.
I don’t think you can do too much about the Spectrum one if you want to keep the two threads, but here’s what I would change related to thread synchronization. Lemmy doesn’t seem to allow me to attach patch files for whatever reason so have an archive instead… https://dblsaiko.net/pub/tmp/patches.tar.bz2 (I wrote a few notes in the commit messages)
Just to give the reason for Rc<RefCell> in the current project. I’m reading in a M3U file and I’m going to be referencing it against an Excel file. So in the structure for the m3u file, I have two BtreeMaps, one for order by channel number and one by name. Each containing references to the same Channel object.
So basically it’s channels indexed by channel number and name? That one is actually one of the easy cases. Store indices instead:
struct Channels {
data: Vec<Channel>,
by_number: BTreeMap<u32 /* or whatever */, usize>,
by_name: BTreeMap<String, usize>,
}
// untested but I think it should compile
fn get_channel_by_name(ch: &Channels, name: &str) -> Option<&Channel> {
Some(&self.data[*ch.by_name.get(name)?])
}
Not for the built-in Eq derive macro. But you can write your own derive macros that do allow you to take options, yeah.
Do you have some public code you could link to that you’re having this issue with? There isn’t a one-size-fits-all solution for Rc/RefCell, I think.
Whoa nice, I need to keep this in mind.
Yes, it even uses BitTorrent to distribute videos.
I think in this case I would translate “Lager” as “warehouse”
Polylux, with a custom theme. Tbh, I wasn’t aware there were others until now!
This is a great project. The way it handles mixing markup and code is on point. Also, for drawing its CeTZ is so much nicer than TiKZ, the LaTeX equivalent. I made some great graphics with it for a seminar presentation and paper that I couldn’t have done anywhere near as easily with LaTeX. (The presentation slides I made entirely with Typst, the paper had a LaTeX template that I didn’t feel like remaking because it was huge so I just embedded the graphics I made with Typst)
Meh. WebKit is Blink as much as it is KHTML. It’s also not controlled by Google.
Rotten to the core. The pigs are even arresting children here now: https://www.tumblr.com/heritageposts/762278495163383808/this-is-not-the-first-time-this-has-happened?source=share
You have to do more than say “wrong, no u” at a Wikipedia article with sources.
What else are they supposed to say so they don’t get zero content responses like yours? Are you the China expert which can disprove what they’re saying?
I’m certainly not so I have no idea what the actual reality here is, it’s essentially someone’s word against someone else’s.