Skip Navigation

Posts
47
Comments
391
Joined
1 yr. ago

She/her 🏳️‍⚧️

Professional cow, Linux Nerd, Hardcore Techno enthusiast. The Emporer protects us.

  • I am constantly on how I can allow Uppercase, without significantly reducing the posiible amounts of chars

  • Idk, I just had this funny idea, and thought I could do this as a cool and quick proof of example

  • Ah, thats cool. Did not knew you could that.. Thanks.

  • Did not knew that this existed, but yeah its kinda like that. Except that I only allow 5 characters.

  • Damn, that are setups where you have to get creative.

  • Are you planning on using a separate draw and injection needle?

    That's something I did not have in mind, but its a good idea. I have not bought needles and syringes yet, but will keep that in mind.

    Regarding Location I'm from Germany. For anything else I would say, that its better if you hit me up on Matrix (my Account is in my Bio)

  • Damn, that sucks. The Website is an absolute Masterpiece. I can only recommend it for anyone seriously considering HRT. Their introduction to HRT gives a very good overview over dosages and eventual risks and what to look out for. I gonna start reading some of the other articles too, to get even more info.

  • I'm still annoyed that my endo waitlist took over a year, so good call on starting DIY

    Same here. I still need one document to get onto the waiting list (that is about one year). And then next Month I gonna try to get my bloodworm done and start DIY. I got my plans on what Dosages I want to take and after what period I will get my second blood testing done for knowing where Estrogen alone takes me, so I have an idea on how much Cryptoterane Acetate (I hope I spelled it right xD) I have to take to maximise T suppression. I gonna plan on going with 3mg weekly so that I Am circulating around 160-200 ng/ml (I absolutely love this simulator for estrogen intakes on transfemscience.org)

  • I sure hope you do Not use a non patched Xerox Workstation for it.....

    Explanation: They had a bug a few years ago where the scanners would alter numbers due to their compression algorithm.

  • Of course theres a relevant XKCD

  • My parents live in the countryside and do not have that much time, theres an exactly 0% chance of me being able to get them to go there (assuming theres something like that 8n the next city, which I honestly dont know). Also I am not at their place most of the time, so its not that much of a deal for me. Once I am able to do my coming out at the village, in the middle of Nivember (I already described my situation here), my parents will have to get used to me actually doing stuff like demanding my right name/pronouns. They will probably not like this, and I am not looking forward to this, but it is a necessary step and I am hoping that it shows my parents that I am not rethinking my decision.

  • That's wild. I have the exact same card and didnt encounter a single problem with it. I am currently running a dual monitor setup with different resolutions and refreshing rates and it just works. Sometimes some people are just kind of cursed with their setup.

  • As a person who's been in the closet for the last 4 years

    Damn, that's a lot. I could not even imagine having to live in the closet that long. Even the few weeks when I am with my parents (they know, but they dont know my new name and I Am not comfortable enough wearing skirts and stuff around them) feel like an eternity.

  • I kind of did this to a friend of mine. We both got some 18 year old laptops that still run on x86 and we wanted to install Linux on them (arch specifically). We met at my place, and I started with trying to get it work. He meanwhile realised he needed something so I gave him my key and hopped into a skirt while he was away. When he returned I just turned ti him, made a "gun" with my fingers and said "I lied to you, I dont have Netflix. Take of your shoes, we are installing 32 bit Arch". Funniest shit of my life.

  • I did not knew this existed, so thanks for the tip.

  • Yeah, but I kinda dont want to learn/use C++

  • I found the mistake. Since the country code char array only has a size of 2 it overwrites the \0 char causing the memory to leak.

  • Thanks, I did not knew this. I always appreciate constructive criticism. I am quite new to C so theres a shit ton of stuff I have never done or dont even know about.

  • This is the code I used:

     #include <stdlib.h>
        
    #include <stdio.h>
    #include <string.h>
    
    #define MAX_ACCOUNTS 255
    
    typedef struct
    {
        unsigned int id;
        char account_creation_date [10];
        char first_name [255];
        char last_name [255];
        char country_code [2];
        unsigned int iban;
        char password [255];
        double balance;
    } account;
    
    account accounts_db[MAX_ACCOUNTS];
    unsigned int accounts_created = 0;
    
    account get_account_id (unsigned int id)
    {
        int i = 0;
        while(i < MAX_ACCOUNTS)
        {
            if(accounts_db[i].id == id)
            {
                return accounts_db[i];
            }
            i++;
        }
        account account;
        account.id = -1;
        return account;
    }
    
    void create_account(char first_name [255], char last_name [255], char password [255], char country_code [2])
    {
        account new_account;
        new_account.id = accounts_created;
        strcpy(new_account.first_name, first_name);
        strcpy(new_account.last_name, last_name);
        strcpy(new_account.password, password);
        strcpy(new_account.country_code, country_code);
        strcpy(new_account.account_creation_date, "");
        new_account.balance = 0.0;
        new_account.iban = 0;
        accounts_db[accounts_created] = new_account;
        accounts_created++;
    }
    
    int main()
    {
        char first_name [255]  = "Max";
        char last_name [255] = "Mustermann";
        char country_code [2] = "DE";
        char password [255]= "password";
        create_account(first_name, last_name, password,country_code);
        account account = get_account_id(0);
        printf("Name: %s %s \n", account.first_name, account.last_name);
        printf("Account creation date: %s\n", account.account_creation_date);
        printf("IBAN: %s %d", account.country_code, account.iban);
    }
    
    When you run it you can see, that behind the country code of the IBAN you get the first two letters of the surename