temeela [she/them]

u/temeela@lemmy.blahaj.zone
3 posts · 23 comments

Recent posts

Recent comments

Seems like your USB drive is formatted with a filesystem that doesn't support large files like FAT32, if you are able to, try formatting into exFAT in Linux with:

sudo mkfs.exfat -n LABEL /dev/YOURUSB

or in Windows by right clicking on the USB and clicking format.

As per the arkenfox wiki, you should not touch user.js but rather in user-overrides.js add (or create it) the following:

/* override recipe: enable session restore ***/ user_pref("browser.startup.page", 3); // 0102 // user_pref("browser.privatebrowsing.autostart", false); // 0110 required if you had it set as true // user_pref("browser.sessionstore.privacy_level", 0); // 1003 optional to restore cookies/formdata user_pref("privacy.clearOnShutdown.history", false); // 2811 // user_pref("privacy.cpd.history", false); // 2820 optional to match when you use Ctrl-Shift-Del

See info on overrides and the recipe to enable session restore

on Hexbear defederated from us · c/main · 40 pts · 3y

You cannot leave me because I'm leaving you, well that situation solved itself. That said I am concerned about 196.

on Hi, everyone! · c/howdy · 3 pts · 3y

Hi Funbreaker, welcome! If you do know any conlang community in the fediverse do send it my way, one of my interests too, but I have not been able to find much!

Thanks! For anyone that wants something that will block posts and comments do the following in uBlock Settings -> My Filters:

your.instance##.post-listing:has(*:matches-attr(href=/.*@blockedinstance\.domain/))
your.instance##.comment:has(*:matches-attr(href=/.*@blockedinstance\.domain/))

In this case from blahaj to hexbear:

lemmy.blahaj.zone##.post-listing:has(*:matches-attr(href=/.*@hexbear\.net/))
lemmy.blahaj.zone##.comment:has(*:matches-attr(href=/.*@hexbear\.net/))

Edit to add this will also make sure it doesn't remove posts that just have the instance in the title, just posts from the instance.

on Hexbear Discussion Round 2 · c/main · 8 pts · 3y

If you want my honest opinion, tolerating tankies is not worth whatever kind of project you want to build. I think we should unite forces with trans people on trans issues sure, but giving a platform to tankies ain't it. They'll poison discussions, as they already have, name-call and take-over whatever thread they do not like. They like to put on a nice face to avoid being deferated, but I doubt it'll last.

on Hexbear Discussion Round 2 · c/main · 3 pts · 3y

That is a fair point, though, as a Catalan anarchist, as much as I believe in the unity of the left, I cannot and will not collaborate or tolerate tankies, history knows we tried that in times of need and it did not work out.

on PSA: Use version control · c/gamedev · 10 pts · 3y

I have seen people use Google Drive during a jam, as a team, I was flabbergasted! I was in charge of the git repo and quality control of our code in one of my biggest projects and I cannot begin to praise git enough. Git blame, feature branches and rollbacks have saved our team's bacon a bunch of times. 10/10 advice, do make sure to start using it yesterday.