Swizec Teller - a geek with a hatswizec.com

Senior Mindset Book

Get promoted, earn a bigger salary, work for top companies

Senior Engineer Mindset cover
Learn more

    A message from your future self

    About two weeks ago I watched a TED talk on the battle between one's present and future self. The idea being that a lot of our problems can be summed up to this: Your present self is here, he wants cool things, your future self is greatly affected by these decisions, but he can't do anything about it.

    Over the holidays I gave Future Swizec a voice. Every three days he sends me an email to tell me what sort of financial situation he will find himself in after two weeks of Present Swizec doing stupid shit. That's not very far into the future, but it's just enough to do something about it, while not being too far away to think Meh, that's in ten years, I'll deal with it nine years from now.

    If you want to give Future You this kind of voice have a look at my Personal Runway project on github. If you think this is a cool idea, but don't want to set it up yourself - email me! I might just make this proof of concept into a minimum viable product if there is any interest :)

    I first ran it when I had just finished paying all my bills, which was a huge expense, so Future Swizec sent me this email:

    Future Swizec

    Maybe he should be less happy about only having 5euro, but right now he's super every time his balance isn't negative. Perhaps Future Swizec needs a gray area.

    How it works

    Right now the predictions are somewhat rudimentary, for instance I don't take into account the fact money doesn't magically show up in my account after every billable hour. Another thing not taken into account are periodic expenses, super large spikes also throw it off somewhat.

    The basic idea is this:

    1. Smooth out the data with a rolling average to get a curve
    2. Calculate an expected value for the next day after known data
    3. Expand the window for expected value by two (one into the future, one into the past) and calculate the next expected value

    Weights are calculated according to the simplest infinite series I could think of that always sums to one no matter how many elements are needed. But I also split it in half and shuffle it about at the pivot, so the strongest weight is moved back in the data when calculating days. So in a sense, when calculating the 1st unknown value, the last known has highest weight. Then the penultimate known and so forth.

    The algorithm is pretty simple in Haskell

    -- ((n-i)*2)/((n-1)*n)
    weights :: (Num b, Fractional b, Enum b) => b -> [b]
    weights n =
      map (\i -> ((n-i)*2)/((n-1)*n)) [1.0..n]
    
    rotate :: Int -> [a] -> [a]
    rotate n l = t++h
      where (h,t) = splitAt ((length l) - n) l
    
    expected :: (Fractional a, Enum a) => Int -> [a] -> a
    expected pivot xs = sum $ map (\(w,v) -> w*v) $ zip (rotate pivot (weights $ fromIntegral $ length xs)) xs
    

    Of course someone who actually knows Haskell would write it much better.

    And there you have it, a simple way to talk with Future Swizec. There is still some tweaking to do and hopefully I can find more people to run this on and see how it works out for them as well.

    Published on January 6th, 2012 in Functional programming, Haskell, Implementations, Moving average, Programming, Tools, Uncategorized

    Did you enjoy this article?

    Continue reading about A message from your future self

    Semantically similar articles hand-picked by GPT-4

    Senior Mindset Book

    Get promoted, earn a bigger salary, work for top companies

    Learn more

    Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.

    Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.

    Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help 👉 swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.

    Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers 👉 ServerlessHandbook.dev

    Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization

    Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections

    Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog

    Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com

    By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️

    Created by Swizec with ❤️