Hobbyist developer, Linux enthusiast, and Arch Linux user.

“The only things constant in this world are death and taxes, I’ve got both!”Skeleton Merchant, Terraria

  • 5 Posts
  • 90 Comments
Joined 3 years ago
cake
Cake day: June 29th, 2023

help-circle


  • Math can help solve this:

    m = 0.5 # human
    h = 0.5 # horse
    
    C = m + h # Centaur
    

    So Centaur is 50% human, 50% horse. Half human, half Centaur would be:

    # Expand
    C / 2 + m
    m + h / 2 + m
    
    # Combine
    (m + h / 2) + (2m / 2)
    3m + h / 2
    
    # Solve
    3(0.5)[m] + 0.5[h] / 2
    1.5[m] + 0.5[h] / 2
    0.75[m] + 0.25[h]
    

    Which is 0.75 human, 0.25 horse

    Therefore, this hybrid is 75% human, 25% horse

    To answer your question: This would probably be a human with a horse tail, and 2 horse legs.














  • One of my main projects (framed_text) is pretty much complete and now has entered maintenance mode, where I’ll mainly fix bugs and only add something if I need it.

    However, I’ve started work on a Logging Python package that allows for full customization of the log text (How its structured), whether to log it to the console, a file, or both. Plus a timer for timing code execution (TBD).

    Mainly making it for my sake, but I’ll upload it anyway in case someone else wants to use it. (That’s basically my programming philosophy)