Right into my veins, please.
  • bi_tux bi_tux Now 100%

    I stay with drinks that go in all seasons, like vodka, whiskey or dark beer

    2
  • Gender
  • bi_tux bi_tux Now 50%

    Here is what I take:

    12.5mg of cypro (at lunch)

    2mg e tablets (sublingual) (one in the morning, one in the evening)

    I recommend you to order from mindnbody (the 2mg estradiol tablets and the 50mg cypro tablets (quarter the cypro tablets))

    unless you want to do monotherapy with injectables, then order from felicitas

    also see a professional as soon as you can (if there are availiable ones where you live) and tell them that you've been taking diy hormones (or are planning to), that way they're more likely to give you your stuff faster

    diy hrt maybe actually the cheapest option for you still (talk about this with the professional)

    here are some sources:

    https://hrtcafe.net/

    https://transfemscience.org/

    https://transfemscience.org/misc/injectable-e2-simulator-advanced/

    0
  • Gender
  • bi_tux bi_tux Now 100%

    that's probably the factory default then? or found on a random disk

    3
  • Deltarule
  • bi_tux bi_tux Now 100%

    oh well, I'm just starting to learn the language and come from java, so I thought: wait, it can't be static

    2
  • Why rule
  • bi_tux bi_tux Now 100%

    I mean testosterone

    6
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPO
    Jump
    For Republicans, truth is... honestly overrated
  • bi_tux bi_tux Now 100%

    as an anarchist I can say one thing: they don't like anarchists

    also they're stateist and all stateists are authoritarian, why do you think they defend russia and china in online arguments?

    6
  • What are some humorous items I could sneak onto my partner's running shopping list?
  • bi_tux bi_tux Now 100%

    very important: you need POTASSIUM fertilizer

    3
  • Why rule
  • bi_tux bi_tux Now 96%

    my ugly masculine body that's been destroyed by t

    28
  • Might as well go cyberpunk, I guess.
  • bi_tux bi_tux Now 80%

    those cool cybernetic implants aren't that cool imo

    3
  • Deltarule
  • bi_tux bi_tux Now 100%

    I like to live unsafe

    3
  • ich👨‍💻iel
  • bi_tux bi_tux Now 100%

    aso, ja, hab ich schon, aber ich mag weder c# noch gdskript, also verwende ich's nicht

    1
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPO
    Jump
    For Republicans, truth is... honestly overrated
  • bi_tux bi_tux Now 100%

    we don't know for a fact, but I've spent some time on a lot of instances and they were the only ones telling me to not vote harris and instead vote trump

    12
  • Deltarule
  • bi_tux bi_tux Now 100%

    RWIIR!!!

    edit: here, I did it for you:

    use std::*;
    
    static mut sucked: bool = false;
    
    fn main() {
            unsafe {
                    check_sucked();
            }
            println!("Kris has been sucked is {}", sucked)
    }
    
    unsafe fn check_sucked() {
            if !sucked {
                    suck();
            }
    }
    
    fn suck() {
            sucked = true;
    }
    

    edit 2: fixed it

    10
  • ich🇩🇪🏫iel
  • bi_tux bi_tux Now 40%

    SPRICH

    -1
  • What are your favorite Firefox extensions?
  • bi_tux bi_tux Now 100%

    besides ublock I only really use darkreader

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPO
    Jump
    For Republicans, truth is... honestly overrated
  • bi_tux bi_tux Now 98%

    I still find the fact that the ultra auth-left instance hexbear.net is the most republican instance on the entire fediverse extremely amusing

    48
  • Packet Loss
  • bi_tux bi_tux Now 100%

    H ll wou d l k o h ar a UDP j ke?

    9
  • ich👨‍💻iel
  • bi_tux bi_tux Now 100%

    falls du GPunkt meinst, nein, leider auch noch nicht, wobei ich die idee eines Umschlags für Gleitkommazahlen für BüchereiC ganz interesant finde

    1
  • This happend to me right noww as I tried to write a gui task manager for the GNU/Linux OS

    289
    28

    also he thought that the CCP wasn't even suppressing free speech, guess who just got banned from a certain tankie cercle jerk instance

    48
    27

    ofc I imediatly upgraded it from winxp to gnu/linux

    530
    114

    I hope memes are okay here

    205
    16

    also ik, I still use neofetch instead of hyfetch

    76
    0

    So I thought about this in the shower amd it makes sense to me, like praying and stuff never worked for most people I know, so a direkt link to god gotta be unlikely. That made me conclude that religion is probably fake, no matter if there's a god or not. Also people speaking to the same god being given a different set of rules sounds stupid, so at least most religions must be fake.

    227
    152

    Why do some cars have their engines in the front and some in the back, what are the advantages and disadvantages of the two builds. And why doesn't every car have full wheel drive?

    45
    20
    aww
    aww bi_tux Now 98%
    doggo
    204
    5

    So I want to update the sprite so my character looks in a different direction each time the player presses left/right, how could I do this? I can't do it in the setup fn, since it's a startup system, appreciate any help EDIT: changed formating here is my code: ``` use bevy::prelude::*; `fn main() { App::new() .add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest())) // prevents blurry sprites .add_systems(Startup, setup) .add_systems(Update, animate_sprite) .add_systems(Update, player_movement_system) .run(); } const BOUNDS: Vec2 = Vec2::new(1200.0, 640.0); static mut FLIP_BOOLEAN: bool = false; fn set_flip_boolean(boolean: bool) { unsafe { FLIP_BOOLEAN = boolean; } } fn get_flip_boolean() -> bool{ unsafe { FLIP_BOOLEAN } } #[derive(Component)] struct Player { movement_speed: f32, } #[derive(Component)] struct AnimationIndices { first: usize, last: usize, } #[derive(Component, Deref, DerefMut)] struct AnimationTimer(Timer); fn animate_sprite( time: Res<Time>, mut query: Query<(&AnimationIndices, &mut AnimationTimer, &mut TextureAtlas)>, ) { for (indices, mut timer, mut atlas) in &mut query { timer.tick(time.delta()); if timer.just_finished() { atlas.index = if atlas.index == indices.last { indices.first } else { atlas.index + 1 }; } } } fn setup( mut commands: Commands, asset_server: Res<AssetServer>, mut texture_atlas_layouts: ResMut<Assets<TextureAtlasLayout>>, ) { let texture = asset_server.load("sprites/Idle01.png"); let layout = TextureAtlasLayout::from_grid(Vec2::new(64.0, 40.0), 5, 1, None, None); let texture_atlas_layout = texture_atlas_layouts.add(layout); let animation_indices = AnimationIndices { first: 0, last: 4 }; let boolean = get_flip_boolean(); commands.spawn(Camera2dBundle::default()); commands.spawn(( SpriteSheetBundle { texture, atlas: TextureAtlas { layout: texture_atlas_layout, index: animation_indices.first, }, ..default() }, Player { movement_speed: 500.0, }, animation_indices, AnimationTimer(Timer::from_seconds(0.1, TimerMode::Repeating)), )); } fn player_movement_system( time: Res<Time>, keyboard_input: Res<ButtonInput<KeyCode>>, mut query: Query<(&Player, &mut Transform)>, ) { let (guy, mut transform) = query.single_mut(); let mut movement_factor = 0.0; let mut movement_direction = Vec3::X; if keyboard_input.pressed(KeyCode::ArrowLeft) { movement_factor -= 1.0; movement_direction = Vec3::X; set_flip_boolean(true); } if keyboard_input.pressed(KeyCode::ArrowRight) { movement_factor += 1.0; movement_direction = Vec3::X; set_flip_boolean(false); } if keyboard_input.pressed(KeyCode::ArrowUp) { movement_factor += 1.0; movement_direction = Vec3::Y; } if keyboard_input.pressed(KeyCode::ArrowDown) { movement_factor -= 1.0; movement_direction = Vec3::Y; } let movement_distance = movement_factor * guy.movement_speed * time.delta_seconds(); let translation_delta = movement_direction * movement_distance; transform.translation += translation_delta; let extents = Vec3::from((BOUNDS / 2.0, 0.0)); transform.translation = transform.translation.min(extents).max(-extents); } ```

    6
    1

    I hope this isn't out of context, also I don't want to "own the libs" or something here, I'm actually interested.

    8
    67

    I don't know where else to post this, so here you go: - How reliable is the yazio kcal counter - Does it use anything - Are there FOSS alternatives the reason I'm asking is because I weighted everything I ate and put it into the app, according to the app I should have eaten 1600kcal, but I feel lile I ate 3000kcal EDIT: I mean the kcal I ate all day, I didn't eat that much at once obviosly would appreciate help and advise

    6
    2

    tbh I did a horrible paint job, but she still liked it EDIT: the parts are 3d printed (not my model tho)

    104
    14
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearUN
    Unixporn bi_tux Now 77%
    avrg Arch btw user (I still use kde on my laptop, I'm to lazy to change it)
    85
    13
    bi_tux Now
    64 574

    bi_tux

    lemmy.world