kkard2

joined 1 year ago
[–] [email protected] 2 points 1 year ago

if i write a date on paper i tend to go with 2, but yes

[–] [email protected] 13 points 1 year ago* (last edited 1 year ago) (5 children)

to make things as not confusing as possible, my rule of thumb is:

  • yyyy-mm-dd (yyyy instead of yy ensures that it's not mistaken for dd-mm-yy) (hyphens can be replaced with underscores)
  • dd.mm.yyyy (yyyy same as above) (really dislike using for filenames, sorting doesn't work)
  • mm/dd/yyyy (only if there is no other choice) edit: mm/dd/yyyy vs mm/dd/yy doesn't matter because both make 0 sense already edit2: i forgor to say that yyyy also avoids y2.1k and subsequent issues
[–] [email protected] 9 points 1 year ago (1 children)

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?"...

[–] [email protected] 2 points 1 year ago

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

[–] [email protected] 4 points 1 year ago

yes; people that are complaining simply have a skill issue

[–] [email protected] 2 points 1 year ago (1 children)

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

[–] [email protected] 1 points 1 year ago

had that at work (they specifically requested to delete this feature before so i put it behind a developer flag in settings' file)

view more: ‹ prev next ›