Skip Navigation

Posts
14
Comments
5148
Joined
2 yr. ago

  • see this is the setting i want. modern urban fantasy with none of the grimdark that seems to plague the genre.

  • oh i thought it was a yoga thing

  • i have no idea what this means

  • of course theyre both evil, but only one of them is using their monopoly-like position to gradually close the market so that no other browser engine can ever be compliant again.

    out of curiosity, what do you encounter that doesn't work?

  • sure, i'll ping you when they arrive, i'm assuming it's either friday next week or the monday after. shoot me a dm if i forget.

  • i don't even know a frank

  • oh they're that understocked huh? i can help you out then.

  • didn't mean for it to come across like that, completely honestly. this was the first thread about this i stumbled over after getting home, so i chimed in on how my experience worked out. it's only now that i've checked around the other threads that i see that this apparently overwhelmed them and people aren't getting through.

  • i got gifted the entirety of the "super granny" collection once. that taught me to actually look at the games i got gifted, and that in turn resulted in the same copy of "bad rats" being gifted back and forth between five people for like seven years.

  • they're saying 10 days of shipping minimum, and to expect delays. so if you want it for the eighth i'm afraid i can't help you...

  • i can see how it can be read as bragging, perhaps? i could probably have been a bit more sensitive about it. honestly i just jumped on the steam store after a friend told me they had released, and i got no lag or anything. could just add to cart. i thought they must have stocked plenty of them and beefed up their infra.

  • ...from europe?

    i think that's the reason it worked, honestly. they probably had them shipped out pre-launch.

  • i didn't even have an issue buying two. it just worked.

  • for free?!

  • it took until ethan peck's spock for me to realize they're just normal eyebrow prostheses put on upside-down.

  • ah fun! have you checked out ben eater's ongoing youtube series of building a breadboard computer? he's selling kits that allow you to follow along from hardware through binary, assembly, to BASIC and C. well worth a look imo.

  • firefox is implementing the standard. google, with something like fifteen times the devs and control of the WHATWG, modifies the standard so that their stuff is in there. in that situation it's impossible to do anything but play catch-up. and right now they're the only other browser that matters.

    like, imagine if the same company sold 50% of all cars on the road as well as 70% of gas stations, then suddenly switched to a new proprietary nozzle that only works in their cars, leaving everyone else scrambling to try and design something compatible. would you say the remaining 30% of gas stations were doing it wrong?

  • i hope you get something out of it! C is a rabbithole.

  • you can absolutely save history in an array, but depending on how you want to do it, it can get very complex for a beginner.

    the absolutely easiest way to go about it with how you've structured the program so far is making global arrays of just numbers, one for C->F conversions and one for the other way round. you also need to keep track of where in each array you are so you don't go out of bounds. this requires minimal changes.

     c
        
    float c_to_f[5] ={0,0,0,0,0};
    int c_to_f_length = 5;
    int c_to_f_index = 0;
    
      

    and update your input handler:

     c
        
    scanf("%d", &c_value);
    c_to_f[c_to_f_index] = c_value;
    c_to_f_index++;
    if (c_to_f_index >= c_to_f_length) c_to_f_index = 0;
    
      

    and then when you want to see the list results, you do

     c
        
    for (int i = 0; i < c_to_f_length; i++) {
        printf("%d\n", c_to_f[i];
    }
    
    
      

    this will of course not be in order of insertion, and if you want to show more than just the numbers you need to do some tinkering.

    this is however a great jumping-off point to talk about many different concepts:

    • do you feel like you're just writing the same thing over and over? look into encapsulation and refactoring your program to minimise repetition.
    • do you want to store more information about each entry? time to learn about structs.
    • do you want to store as many entries as you want, without having to specify? go learn about linked lists.
    • do you want to be able to step back and forward through your history? check out the readline library, and learn how to do imports generally.

    sorry if my formatting is off, i did this on my phone...

  • 3DPrinting @lemmy.world

    can somebody help me figure out what the hell is going on with my petg prints?

  • Voyager @lemmy.world

    the latest update has a big gap below the bottom menu

  • 3DPrinting @lemmy.world

    how do i fix top surface bulging in orcaslicer?

  • Casual Conversation @piefed.social

    i just realised i might have an instinctive need to "yes, and".

  • Selfhosted @lemmy.world

    What's the security situation when opening a jellyfin server up for casting?

  • Feddit.nu @feddit.nu

    Angående bilder på lemmy

  • Lemmy Shitpost @lemmy.world

    asked and answered

  • Casual Conversation @piefed.social

    got laid off

  • Ask Lemmy @lemmy.world

    what's your ringtone?

  • Asklemmy @lemmy.ml

    what's your ringtone?

  • Buy European @feddit.uk

    Playing card sleeves?

  • Map Enthusiasts @sopuli.xyz

    Original name of the Sony Walkman

  • Citybuilders @sh.itjust.works

    I want a citybuilder with less building.

  • KDE @lemmy.kde.social

    Any ideas? My desktop always ends up like this on login, i don't even know where to begin to fix.