- 8 Posts
- 12 Comments
VegOwOtenks@lemmy.worldto
People Twitter@sh.itjust.works•US Military never really trained for these types of dog and pony showsEnglish
3·6 months agoI think this is what they are referring to: https://en.wikipedia.org/wiki/Broughton_Suspension_Bridge.
TL;DR: The bridge collapsed because soldiers marching on it created force they hadn’t anticipated, soldiers breaking step supposedly don’t have as much of an impact.
VegOwOtenks@lemmy.worldto
196@lemmy.blahaj.zone•Don't mind me, I've just been watching a lot of Doctor RuleEnglish
7·9 months agoI also like watching Doctor Who, how did you manage to make a cute dalek? :d
VegOwOtenks@lemmy.worldOPto
linuxmemes@lemmy.world•When I try to go on a ricing journey again
3·9 months agoThe extension is called Burn-My-Windows and I always look forward to it when booting into GNOME because it feels so ✨fancy✨
VegOwOtenks@lemmy.worldOPto
linuxmemes@lemmy.world•When I try to go on a ricing journey againEnglish
1·9 months agoI stumbled over Gradience just yesterday but I tought it was archived sometime last year, is it still working accordingly?
VegOwOtenks@lemmy.worldOPto
linuxmemes@lemmy.world•When I try to go on a ricing journey again
10·9 months agoUnfortunately not :/ But I do have rainbow-gradient window borders.
VegOwOtenks@lemmy.worldOPto
linuxmemes@lemmy.world•When I try to go on a ricing journey again
5·9 months agoI suppose you’re mainly concerned about LibAdwaita-Apps?
VegOwOtenks@lemmy.worldOPto
linuxmemes@lemmy.world•When I try to go on a ricing journey again
17·9 months agoI was surprised to learn that
- a) macOS only recently added Left/Right-tiling natively (without extensions, just like GNOME does)
- b) they leave gaps when you tile them so that it looks like you messed up the tiling somehow
VegOwOtenks@lemmy.worldOPto
No Stupid Questions@lemmy.world•Is there any security in the communication with Voyager I?
3·1 year agoThanks a lot for the recommendation, I did enjoy the read!
VegOwOtenks@lemmy.worldOPto
No Stupid Questions@lemmy.world•Is there any security in the communication with Voyager I?
2·1 year agoI was wondering about encryption (is this what you’re talking about?) because these algorithms change so frequently I’d be surprised if they had anything back then considered ‘secure’ by now.
VegOwOtenks@lemmy.worldto
Rust@programming.dev•[Help] Is there a way to detect all structs in the current crate that implement a certain trait?
1·1 year agoYou could wrap the entirety of your file in a monster macro but you’d still have to assign the macro result to a variable you need to register, which doesn’t sound viable to me at least.
Maybe you can use a script that would extract all the trait implementations and create the boilerplate glue code for you, something like this:
grep --recursive --only-matching "impl PluginFunction for \w*" functions/ | sed --quiet "s/functions\/\(.*\)\.rs:impl PluginFunction for \(\w*\)/crate::functions::\1::\2{}.register(\&mut functions_map)/p"I tried to recreate your situation locally but it may not match perfectly, maybe you’ll have to adjust it a little. When I run it on my file tree which looks like this
functions ├── attr.rs ├── export.rs └── render.rs 1 directory, 3 fileswhere every file has a content like this
// comment pub struct MyAttrStructName {} impl PluginFunction for MyAttrStructName { }Then I receive the following output:
crate::functions::attr::MyAttrStructName{}.register(&mut functions_map) crate::functions::export::MyExportStructName{}.register(&mut functions_map) crate::functions::render::MyRenderStructName{}.register(&mut functions_map)
Love seeing a GNOME rice, I tried some GNOME ricing on a Fedora myself, however I was unable to get any further than installing Extensions ‘Just Perfection’ to hide some elements or using ‘Burn my Windows’, which I loved.
What did you use to style your GNOME-Shell Components?






Thanks for posting it! It’s probably exactly what I was searching for.