

Fair enough! The disadvantage is that, as opposed to Dropbox and similar, I have go into a file at the root of the synced folder, rather than keeping that config near to where itcs relevant.
Thanks for the names!


Fair enough! The disadvantage is that, as opposed to Dropbox and similar, I have go into a file at the root of the synced folder, rather than keeping that config near to where itcs relevant.
Thanks for the names!


That’s… a very good idea. I should do that anyway.
Forgejo for projects and syncthing for data is probably perfect, thank you!


I tried with both, but I didn’t figure out how if such an option exists. I did manage to do the opposite (keeping files uploaded but not having them locally), both with and without VFS (with VFS it’s in a context menu in nautilus, without it’s in the desktop app).


it does! I use it to sync my music, but I feel like it’s not the right tool for the job here.
I don’t want to “have the folders connected”, I want to have the ability to sync files easily, while excluding specific folders and files.


I have. It hasn’t worked very well for me, the docs weren’t great (though I’m looking at them now and they do seem better?) and it broke in strange ways.


Is it for sure Microsoft?


Ahh, that makes sense. Powers of two are real convenient. Your math is a little wrong though: X != (X & 0xFF) + (X >> 8), but X = (X & 0xFF) + (X >> 8) << 8
The right half can be removed entirely if you’re doing modulo 16, since the first 4 bits will always be 0. So it simply becomes X & 15! Much cleaner for sure.


Would you happen to remember what the optimization was, mathematically?
https://stackoverflow.com/questions/20036698/subdivide-a-modulo-function-16-bit-but-can-only-do-8-bits-at-a-time#20036828 seems to say that it’s “impossible afaik”, and I can’t seem to optimize it myself (though this kind of math isn’t my forte)


Also, the reason this is a CVE is because Rust itself guarantees that calling commands doesn’t evaluate shell stuff (but this breaks that guarantee). As far as I know C/C++ makes no such guarantee whatsoever.


Having read a significant portion of the base WASM spec, it’s really quite a beautiful format. It’s well designed, clear, and very agnostic.
I particularly like how sectioned it is, which allows different functions to be preloaded/parsed/whatever independently.
It’s not perfect by any means; I personally find it has too many instructions, and the block-based control flow is… strange. But it fills a great niche as a standard low-level isolated programming layer.


Apparently some people are working on it. Defo not usable rn tho


What does “not full functionality” mean here, no head movement or you can’t use the cameras? Cus as long as I can play the games I’e got through steamvr I’m happy


I’m not aware of any word like that


“The ranges experienced by humans” is extremely variable. My friends from hotter countries can barely handle 10°C, but are fine at 40°C, and it’s entirely the opposite for me.
I assure you that for regular use, Celsius works great. I don’t really think either is better than the other in practice (outside of chemistry), but “it’s the range people experience” is kinda bull. A 10 degree F difference from 0 to 10 is very different from 60 to 70.
Also, water freezing at 0°C (and boiling at 100°C, to a lesser degree) is quite convenient in everyday life. Just check for a minus sign and you know if it can freeze.


To be honest, I don’t think it’s worth the bother. This is just an i3-5 something, and I got all the working parts off of it. But it’s good a good idea, thanks!


Well, I fully disassembled it, and I’ve found some components that are heating up a lot and probably making the buzzing noise.
https://files.catbox.moe/6pazjn.jpg
However I have no idea what they are, if they’re the problem or some connected component. The label doesn’t return anything, so I think this 'uns a goner :(


Thank you! I’m not gonna try and fix the box itself, but somebody suggested it might be the power supply.


I… don’t know why I didn’t think of that. I’ll have to check if I have another.


Yes, it’s laptop RAM
They can, but it’s not trivial. The challenge uses a bunch of modern browser features that these scrapers don’t use, regarding metadata and compression and a few other things. Things that are annoying to implement and not worth the effort. Check the recent discussion on lobste.rs if you’re interested in the exact details.