Comment on
Very clever...
Reply in thread
Comment on
Very clever...
Reply in thread
Comment on
Don't know if this counts as a rice
Just started learning C++ :)
my condolences
Comment on
Anon causes a broken home
clearly needs a green top
Comment on
Who cares to touch the grass?
to make things as not confusing as possible, my rule of thumb is:
Comment on
if you could standardise a file format for a specific task what would you pick and why
Reply in thread
oh it's x, not x... i hate our timeline
Comment on
Combining two different internet debates
i still can't believe people think it's A
Comment on
"why would i change my passwords?"
wait untill you hear "if i remember correctly my email password was {name} {surname} something @ gmail.com... what do you mean that's not it? why do i even need a password?"...
Comment on
Wholesome announcer
Reply in thread
why do i understand this
even tho it doesn't make sense, he sounds too happy for a british person
Comment on
Good job pedestrianing
i would personaly advise against running thru crossings (you become less predictable if you run)
Comment on
Why use VIM/Nano/Emacs over VS Code?
Reply in thread
you don't need visual mode for that, use _f(ci(foo
Comment on
Microsoft Word document after you move an image:
Reply in thread
yes; people that are complaining simply have a skill issue
Comment on
Why are scammers so extra?
Reply in thread
i never thought about that, it makes a lot of sense
Comment on
Priorities
had that at work (they specifically requested to delete this feature before so i put it behind a developer flag in settings' file)
Comment on
Duck
everything is a bucket
Comment on
🤡🛞🤔
i should've watched the race...
Comment on
Toggle title bar option not available
Reply in thread
if you need to do something more fancy with the look of firefox (e.g. having url bar in the titlebar) look up styling with userChrome.css
currently im using it to not have duplicated tabs at top when using vertical tabs extension
Comment on
Who cares to touch the grass?
Reply in thread
if i write a date on paper i tend to go with 2, but yes
Comment on
Lemmy PERFORMANCE CRISIS: popular instances with many remote instances following big communities could stop federating outbound for Votes on comments/posts - code path identified
Reply in thread
more "correct" way would be this:
match activity {
AnnouncableActivities::UndoVote(_) => warn!("zebratrace310 SKIP UndoVote"),
AnnouncableActivities::Vote(_) => warn!("zebratrace310A SKIP Vote"),
_ => {
warn!("zebratrace311 send");
AnnounceActivity::send(activity.clone().try_into()?, community, context).await?;
},
}
here it is in the rust book: https://doc.rust-lang.org/stable/book/ch06-02-match.html
Comment on
Lemmy PERFORMANCE CRISIS: popular instances with many remote instances following big communities could stop federating outbound for Votes on comments/posts - code path identified
Reply in thread