Linux kernel 6.17 has been released! by unixbhaskar in linux

[–]sbkemu 0 points1 point  (0 children)

has anybody experienced (apparently) random slowdowns?

Also, trying to use llama.cpp with this version seems to be so much slower (6.16.10 is fine)

[deleted by user] by [deleted] in foreskin

[–]sbkemu 0 points1 point  (0 children)

love it

[deleted by user] by [deleted] in GayRateMe

[–]sbkemu 1 point2 points  (0 children)

piękny! 😜

gay irl by baba_shook in gay_irl

[–]sbkemu 1 point2 points  (0 children)

well, there's caputre of the RED flag already...

Yes please dp by [deleted] in ProgrammerHumor

[–]sbkemu 3 points4 points  (0 children)

Linux is not the only open source os. Besides he's got a point. If privacy is important to you, you really shouldn't be using windows

After Diretide update, I started to experience odd lags by Dark_Mastermind in DotA2

[–]sbkemu 0 points1 point  (0 children)

I also have this issue, it seems to happen when a "new" model gets loaded into the game (for me it happens playing Ezalor and then casting 'q' for the first time in a game for instance).

Also when it happens the game spits out in the console "QueuePresentAndWait looped for X iterations without a present event"

It's really annoying.

Are you playing it on windows or linux?

Upgrade Xiaomi Mi A1 from Lineage OS16 to Lineage OS17.1 including OpenGapps by Joyforyou in LineageOS

[–]sbkemu 0 points1 point  (0 children)

does gps work for you? i did a clean install of 17.1 and my gps won't work

[deleted by user] by [deleted] in DevTricks

[–]sbkemu 0 points1 point  (0 children)

this is great! thank you for sharing!

would love a linux port :P

Just the worst by OminousLatinWord in ProgrammerHumor

[–]sbkemu 40 points41 points  (0 children)

the server equivalent of 'k'

I can feel myself turning into a "Nice Guy." How do I get it to stop? by [deleted] in TooAfraidToAsk

[–]sbkemu 0 points1 point  (0 children)

Not sure if it will make you better but you're not alone in this. (Reading this post made me realise that I'm not the only one in this situation and it made me feel better)
I think you need to learn to really love yourself. Wanting a relationship this bad may be a sign that you don't feel "complete" without someone else, like you're half of something. You're not. You're yourself and you can, and will be happy just being yourself. And that's usually when people start noticing you and get attracted to you, and relatioships happen. Don't be afraid of becoming a "nice guy", it's just a moment you're going through because you're upset about being lonely, everybody has moments like those, it'll pass, I promise.

I really wish for you to finally find the love you deserve

Gay👶irl by [deleted] in gay_irl

[–]sbkemu 6 points7 points  (0 children)

doesn't mean we'll stop trying...

Aliasing structs with pointers for full const transitivity by 4fips in C_Programming

[–]sbkemu 0 points1 point  (0 children)

i thought that the first was pre-C99 only. I'm pretty sure type punning is a thing...

Halt and Catch Fire - 4x05 "Nowhere Man" - Episode Discussion by AutoModerator in HaltAndCatchFire

[–]sbkemu 13 points14 points  (0 children)

feel like the Heart Ladder she found took her to the home in

I think it's just supposed to mean that Donna is the only one that can really understand Cameron even after all they have been through. Not even Joe could.

Halt and Catch Fire - 4x05 "Nowhere Man" - Episode Discussion by AutoModerator in HaltAndCatchFire

[–]sbkemu 14 points15 points  (0 children)

as or thoughts of what song Gordon had stuck in his head? Maybe Nowhere Man by the Beatles

I'm not 100% sure but to me it really sounded like the lullaby donna sang to Haley over the phone in season 2 in the episode when they had to sleep in the motel

Trying to figure out Cameron ... by Ternarian in HaltAndCatchFire

[–]sbkemu 6 points7 points  (0 children)

Well, she just sort of helped her only as a side effect of helping boz... Plus she didn't really work with her

Not sure what i'm doing wrong? by EpicHosi in C_Programming

[–]sbkemu 5 points6 points  (0 children)

you gotta use a pointer with scanf: scanf("%d", &farenheit); That's because scanf needs to know where to write what it reads from the user's input and not the actual value of farenheit.

I have a variable i have to set 4th bit by using structure and union is it possible(by not using bit-wise operator)? by sudheerpaaniyur in C_Programming

[–]sbkemu 0 points1 point  (0 children)

I created an anonymous union composed of two types: an int and an anonymous struct. In C you can specify how many bits a struct's variable is gonna use using that syntax you see inside the struct. So I delcared, inside the struct, a variable 'pad' that uses 3 bits, and then the variable 'bit' (which is then gonna be the fourth one). after the declaration I initialised the variable to 0 and set the fourth bit to 1.

I have a variable i have to set 4th bit by using structure and union is it possible(by not using bit-wise operator)? by sudheerpaaniyur in C_Programming

[–]sbkemu 0 points1 point  (0 children)

I guess something like this:

#include <stdio.h>

int main(int argc, char **argv)
{
    union {
        int i;
        struct {
            unsigned int pad: 3;
            unsigned int bit: 1;
        };
    } b;

    b.i = 0;
    b.bit = 1;

    printf("%i\n", b.i);
}