GNUkko Sauvage (eris-ng)
@eris@p.enes.lv
latvian, in their 25s, monogam, straight, he/him lesbian, ace-spec, slut. anarcho-monarchist. A theymab transtrender. I speak lv/en/ru but can pretend to understand other languages sometimes.
admin of this instance, don't ask for an invite unless you're a frien :3
the sadistic playful puppy you’ve been warned about.
Ionizing particles, true Ukkos, fake Erises, and Disqordians DNI
Minors: please consult with your parent(s)/guardian before following and/or interacting; and please do not interact with lewd and/or sexual content unless you are of the age of majority
Current PFP is Senjougahara Hitagi, specifically from https://www.tumblr.com/manimarough/785249534734417921
Previous PFP was dead Marsey
Previous² PFP was A.B.A. from Guilty Gear Strive
Previous³ PFP was some image 40 sent me
Previous⁴ PFP was https://www.kotobukiya.co.jp/en/product/detail/p4934054034673/
Previous⁵ PFP was https://www.furaffinity.net/view/47773488/
My ducal court:
Wife Mother: @wife@p.enes.lv
The cheetah sitting in the corner of the court room: @f_o_u_r_t_y@shrine.moe
The messenger to the realms: @meso@the.asbestos.cafe
Translator: [Insert une's goreslut username]
Found my unfunny quotes
"@ukko what" — @ezio@akko.wtf
'I thought "ukko" was a Indonesian gal?' — Cent
"@Ukko did you have to post this?" - Jade Disarray
"@Ukko ukko." - @mia@void.rehab
CC @une@cawfee.club
eriscon is not happening
...
...
...
...
...
...
...
...
...
...
...
...
...

...
...
...
...
i have decided to not listen to the new justin bieber album bc he is a zionist
...
...
@apophis saw someone qting a justin bieber album announcement with “reminder he is a zionist” and oomf rted it onto my timeline and like, i wouldn’t have known he was releasing an album otherwise
...
...
CC: @lz@shrimptest.bedwetting.club @apophis@kill-corporations.enterprises
about posts marked as horny/lewed [SENSITIVE CONTENT]
there are two options if you click on a post cwed as horny or lewed: "i like kissing girls/boys" and "I wanna get railed by thomas the tank engine I have a [SEX TOY] and im about to use it while i phantasize about thomas the tank engine railing me"
@waifu@mai.waifuism.life my Pleroma-tan submission.
Also now that I have the opportunity, I'd like to ask: I've been drawing an image before fedizine. It may not be a fair game to submit it as I didn't draw it specifically for this event, so I want to clarify this. Do I draw another image or can I finish that one and submit it?#fedizine
...
@ledocool@abyss.cafe I mean the idea is to "show what we have drawn on September" you could have just sent me the finished drawing without context and I would have accepted, but the intention is to make us draw, not just to show some of our old drawings.
...
@waifu@mai.waifuism.life it's not an old one - I'm still in production. I was wondering though if I have to create an image specifically for fedizine.
...
@ledocool@abyss.cafe yeah that's fine then, to give you some context, I'm thinking of posting a comic series I've left without a continuation for months, but also just a random 3d render with some ocs
always remember that 1.0 + 2.0 != 3.0
...
🌸 I like foods that are trianmgles
...
we know some of the AI industry folks are literal æthercultists with such fucked up ambitions they make it hard for us cyberpunk authors to even keep up anymore
but at least some of them have to be just regular grifters who know damn well LLMs will never write viable code and are just conning investors out of millions of dollars, right?
...
...
@persephone I’m probably giving the enemy too much intellectual credit again
...
...
CC: @persephone@translunar.academy @winter@translunar.academy
...
...
...
any musicians of fedi? preferably those who are queer and trans.
it feels really lonely to be one of the few musicians here in a platform where people talk about linux all the time.
#music #musicians #musiciansofmastodon #transMusician #transartist
...
...
In 2023, the authors of the Zed text editor announced a GPUI framework that draws all UI elements using the GPU at 120 fps
i am sorry but why do they need to render a text editor at 120 frames per second?
any gui program for that matter, 120fps is just, so unnecessary for something that is mostly static and at most scrolls text
...
>see "You can't miss this chance" from an asian sender name
>"oh you've gotta be fucking kidding me are they *already* sending me spam?"
>open the email
>"oh"
like enums were an ANSI C thing so no k&r era backwards compat retartedness as an excuse
...
@meeper wdym.
i tried scoping some enums and got this, not sure if this is what you mean
#include <stdio.h>
enum Day { Monday = 30, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday };
int main(void){
enum Day { Monday = 20, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday };
enum Day mainscope = Monday;
printf("main scope: %d\n", mainscope);
// we scope it now
{
enum Day { Monday = 15, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday };
enum Day noscope = Monday;
printf("scoped: %d\n", noscope);
}
printf("main scope: %d\n", mainscope);
}
~ $ cproc meep.c
~ $ ./a.out
main scope: 20
scoped: 15
main scope: 20
~ $
...
...
...
In C++ however this is different. Chances are you are experiencing something GCC specific.
...
...
You can get the same output from multiple compilers you stupid retard. Just because something is implementation dependent doesn't mean all implementations won't just do the same thing.
...
then "chances are" its not GCC specific, you fucking tumor. you continue to just pull bullshit out of your fucking ass and hoping it sticks, none of which is relevant.
in any case, i get it now, thanks that someone else actually knows that they're talking about, and that i can just use a compiler myself and check. thanks for wasting my time with your miserable drivel, you worthless cocksucker.
...
> then "chances are" its not GCC specific
What do you think a "chance" is. I didn't go and verify every other compiler at the spot of a moment, but I know for certain it's not a C thing. It is up to the compiler.
If you were to actually open a compiler, not use the same name for an enum you would see that Meeper was correct that it's global.
https://godbolt.org/z/orxaeG839
But when scoped in a function, the behavior is different. This is LITERALLY up to the compiler developers, read the C standard if you want to verify it then. This also extends to stuff like functions defined in blocks. All these things are not defined until later versions, so compiler developers all agreed upon design decisions and all implemented them similarly.
#define Monday 30
, they aren't scoped/namespaced to the enum itself. Like if you wrote struct { int a; int b; };
and now anything.b
always works. (Which is how ancient pre-standard C actually worked which is why you have fields in UNIX structures prefixed to make them unique, st_
for struct stat
, tv_
for struct timeval
, etc.)...
Idiot Happiness Spiral (unsobriety arc) »
@prettygood@socially.drinkingatmy.computer
...

@prettygood@socially.drinkingatmy.computer @nyanide@lab.nyanide.com what I post when I'm losing an arguement:
...
@sam@froth.zone write a short story about this soulless elf Wizard anime girl
...
...
@earthling@tsundere.love @sam@froth.zone Arcaena Krislee
...
@earthling@tsundere.love @sam@froth.zone she's a bookworm dnd character I play sometimes, though not at her full power, the friends I play with are too normies to understand a "I'm killing myself on Friday #wow" joke
...
...
@earthling@tsundere.love @sam@froth.zone of course, if your want more context:
Arcaena is a short 1.5m high elf, her vibe is empty, she reads books out of habit, not passion. Usually just wanders into situations, and then she asks herself, " why am I in this mess?".
If you wanted to think of her in terms of others, think of her as a combination of Lain, Shimeji-chan and an empty 4th wall breaking smoker anime girl.
She's incredibly intelligent (+5 int) and useful but non talkative, never eager and just plain weird (-1 charisma).
"Do I really have to go to the quest?"
Proceeds to loot the body of a bandit in the middle of the battle
Skips her turn
CC: @sam@froth.zone
...
...
Morosexuals uses WAFRN.
...
The fact that I remember this, from Tumblr history…
#yeah-i-am-replying-to-myself-technically.-a-morosexual-move.
...

...
...
...
i cannot compete.
...
@schappi i’m french, idk how people that don’t write in cursive even keep up with dictation speed
...
...
@eris @schappi I didn’t start using a laptop for notes until I was in uni, is that a boomer moment that I expect kids to not use a laptop until maybe the end of high school (except in dysgraphia/dyslexia cases (tho I had dysgraphia and they beat that out of me (with proper orthographic help (not corporal punishment))))
Finally solved the #Degoogling debate. Anyone who finds fault with this list = Skill issue.
...
@art i love that post because i feel technically, the only thing Emacs wouldnt be good for is :
- Maps
- Authenticator app (and even then, i didnt look into that)
- Google Photos and the drive??
definitely keeping that post somewhere, to entertain my emacs brainrot 😈
...
@arni@veganism.social @art@mastodon.sdf.org
the only thing Emacs wouldnt be good for is: MapsWrong. https://elpa.gnu.org/packages/doc/osm.html
overslept again -w- guess I'm working from home today
hope everyone has a great rest of their day !!! don't forget that you're loved <3
...
...
if the weather is good it's a good time to go trout fishing

...
History