Jump to content
Banner by ~ Ice Princess Silky

Ganaram Inukshuk

User
  • Posts

    471
  • Joined

  • Last visited

Posts posted by Ganaram Inukshuk

  1. 38 minutes ago, CypherHoof said:

    I don't really like any of the offal meats - kidneys, liver, tripe, sweetbreads...

    I find those awful. If I smell tripe, it'll be too soon...

     

    Ocellus: So, can you name a book that made you cry?

    Silverstream (The Fault in our Stars): I-i... I just can't myself to read any further!!

    Gem Inukshuk (my blue pony OC) (Software Engineering): This book is the third-biggest reason why I have trust issues.

    Nova Astrum (my green pony OC) (Organic Chemistry): Opening this again would be too soon.

    Sandbar (a custom-made potty training book with Sandbar on the cover): It fell on my head when I was, like, five!!

  2. I could go on about an algorithm that does one extremely specific task because the theory behind it encompasses multiple fields, and the algorithm in question is basically a text generator or a population simulator, and they'd be a small part of an even larger whole.

    All that for a drop of blood.

  3. Would Ocellus have a hard time programming, and if so, is it because of all the bugs?

    Yona -> Brute force.

    Sandbar -> Using "0x0F" instead of "oof".

    Gallus -> Having to take a memory leak.

    Silverstream -> ???

    Smolder -> ?!!

  4. 1 minute ago, CypherHoof said:

    Maybe just don't write any drivers that use it?

    and clearly you forgot about the memory leak... oh wait :)

    When you're so far down in programmingland that you have to take a memory leak.

    Wait... Do not install drivers or operate heavy machinery.

  5. 17 minutes ago, CypherHoof said:

    Forgot to note one should not drive while using this function :)

    Something tells me if I added "memory leak" to the list of side effects...

    I already have "don't drink and derive"...

  6. 13 minutes ago, CypherHoof said:

    If Silverstream and Gallus are a "thing" though, She is entitled to know....

    The original plan was the other way around: Silvy-birb hospitalized and Gally-birb worrying a lot and doing his best to hide his concern.

    Meanwhile, I'm being quite cheeky.

                /// <summary>
                /// This functions returns the result of f multiplied by n factorial. Using this naively may quickly result in overflow, precision loss, segmentation faults, constipation, dizziness, urinary incontinence, headache, dry mouth, insomnia, infernal bleeding, depressive thoughts, dry eyes, coma, and/or defenestration.
                /// </summary>
                public static float MultiplyByFactorial(float f, int n) {
                    if      (n == 0) return f;
                    else if (n <  0) return 0;
                    else {
                        float result = f;
                        for (int i = 0; i < n; i++) result *= (n+1);
                        return result;
                    }
                }

    On one side of me is me being extremely hard on myself when it comes to art. On another side, it's me being cheeky about the documentation I write.

  7. I have this idea right now of Gallus being hospitalised with Sandbar not only being the one to comfort Gally-birb but the only one who knows what's happening to the birb because birdie doesn't want the baroo-baroo, firecracker, other birb, or bug to know.

    If Silvy-birb finded out...

  8. So I settled on probably the funkiest function I've ever conceived so far: a population growth function where it's a logistic curve whenever it increases and exponential decay when it decreases. And the carrying capacity also changes over time.

×
×
  • Create New...