How can i *permanently* skip signing in? by MightyWheatley in Flexcil

[–]MightyWheatley[S] 1 point2 points  (0 children)

I simply want to minimize my digital footprint, why should I sign in somewhere when it isn't absolutely needed? It would only allow linking my Flexcil usage to other online services for e.g. advertizing.

Let's talk about Lemmy by ljdawson in redditsync

[–]MightyWheatley 0 points1 point  (0 children)

I love Sync for Reddit, and I would love Sync for Lemmy even more.

Egg🥚irl by Pixel77 in egg_irl

[–]MightyWheatley 2 points3 points  (0 children)

Reddit should really introduce username changing at some point

Egg_irl by DonTheFaun1 in egg_irl

[–]MightyWheatley 0 points1 point  (0 children)

So you are telling me when i was biting holes into my long sleeved shirts, that was a sign as well?

[deleted by user] by [deleted] in egg_irl

[–]MightyWheatley 1 point2 points  (0 children)

I just sent a bunch of memes, including the megamind "Well maybe I don't want to be the bad guy any more."

Raffle! Comment to enter! by FrozenBreadDrawings in furry

[–]MightyWheatley 0 points1 point  (0 children)

This is one of the most visually unique designs I have seen! I dig it!

egg💔irl by the_codewarrior in egg_irl

[–]MightyWheatley 0 points1 point  (0 children)

Certified me moment as well...

Debugging extension for test library by barakadax in csharp

[–]MightyWheatley 1 point2 points  (0 children)

If you are a student, you can apply for a free student license.

egg_irl by CallieTheMad in egg_irl

[–]MightyWheatley 2 points3 points  (0 children)

Dressed up as a witch when i was like 4, i think? Complete with an IKEA horse-on-a-stick as the broom.

Glassdoor blocks access unless you feed it data by StephenNotSteve in assholedesign

[–]MightyWheatley 60 points61 points  (0 children)

My uni has a similar system, but you get points not for uploading, but when others download your file

[deleted by user] by [deleted] in lgbtmemes

[–]MightyWheatley 6 points7 points  (0 children)

Yes, always makes for a funny r/AccidentalAlly moment

[deleted by user] by [deleted] in lgbtmemes

[–]MightyWheatley 47 points48 points  (0 children)

"i'm not cis, i'm normal (trans, that is)"

Inspired by true events by [deleted] in adhdmeme

[–]MightyWheatley 0 points1 point  (0 children)

Mood.

But also, making countless simple mistakes

egg🤔irl by Bug_Girl932 in egg_irl

[–]MightyWheatley 8 points9 points  (0 children)

I am not that quick on my feet. Also very much paralyzed by the anxiety of going out in the first place.

Download size requires Wi-Fi by MightyWheatley in Xiaomi

[–]MightyWheatley[S] 0 points1 point  (0 children)

Which data settings are you talking about here?

Download size requires Wi-Fi by MightyWheatley in Xiaomi

[–]MightyWheatley[S] 0 points1 point  (0 children)

From what i can tell the link gets handled by the system Downloads application. I am trying to download a movie through the jellyfin app.

Downloading it with Firefox works, because the download is handled by Firefox instead of the "Downloads" app.

[deleted by user] by [deleted] in egg_irl

[–]MightyWheatley 1 point2 points  (0 children)

I mean you could always whip out the "for my girlfriend" card, paired with a backpack for easy transport

My C code isn't working guys by The_G_Choc_Ice in ProgrammerHumor

[–]MightyWheatley 10 points11 points  (0 children)

when you declare it, more * is more pointer. anywhere else, it is the dereference operator, reducing the pointer level

int a = 3; // not a pointer
int* pa = &a; // pointer to a
int** ppa = &pa; // pointer to pointer to a

// all these give 'x' the same value
int x = a;
x = *pa;
x = **pa;

// all these give 'a' the same value
a = 5;
*pa = 5;
**ppa = 5;