Geek alert: making career decisions in Scheme?

You know you are a geek when your notes about your next career move can actually be evaluated in Scheme 🙂 Oh… making career decisions when you love every aspect of technology and the people you work with is so difficult!

; A list of good things
(define (Pros GoodThings)
  (list 'Pros GoodThings))

; A list of bad things
(define (Cons BadThings)
  (list 'Cons BadThings))

; Option 1
(define (Option1)
  (list
    (Pros (list 'GoodThing1 'GoodThing2 'GoodThing3))
    (Cons (list 'BadThing1 'BadThing2 'BadThing3))))

; Option 2
(define (Option2)
  (list
    (Pros (list 'GoodThing1 'GoodThing2 'GoodThing3))
    (Cons (list 'BadThing1 'BadThing2 'BadThing3))))

; Option 3
(define (Option3)
  (list
    (Pros (list 'GoodThing1 'GoodThing2 'GoodThing3))
    (Cons (list 'BadThing1 'BadThing2 'BadThing3))))

; Decision algorithm (unknown at the moment)
(define (CareerChoice Choices) '?)

; Evaluate the options
(CareerChoice (list Option1 Option2 Option3))

; Result is a "?" at the moment

Recent Posts

BrainExpanded – Login State Caching Issue in iOS Share Extension

As part of the BrainExpanded project, I’m building an iOS app that lets users easily…

1 week ago

Is AI Good or Bad?

Artificial Intelligence (AI) has rapidly evolved over the past few decades, becoming an integral part…

2 weeks ago

BrainExpanded – Copilot

Happy New Year everyone! I was planning for my next BrainExpanded post to be a…

2 months ago

BrainExpanded – The Timeline

See "BrainExpanded - Introduction" for context on this post. Notes and links Over the years,…

2 months ago

BrainExpanded – Introduction

This is the first post, in what I think is going to be a series,…

2 months ago

Digital twin follow up

Back in February, I shared the results of some initial experimentation with a digital twin.…

2 months ago