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

My Coding Agent Needed Its Own GitHub Identity

In my last post, I wrote that "the typing of code was parallelized and delegated.…

2 weeks ago

Rebuilding My AI Team in Twelve Days β€” And Why

In February, I wrote about the small team I'd stood up instead of hiring humans:…

3 weeks ago

How I Built My Own Team of AI Developers

Assembling a dream team without a single hire I've been making great progress on CVOYA's…

3 months ago

Reflecting on 2025: Building CVOYA’s Future with AI Coding Agents

As 2025 is now behind us, I wanted to share a few reflections from my…

4 months ago

DIY smart home accessory – It all started with a question to ChatGPT

Few months ago, we bought a sculpture from a local art fair for our Palm…

5 months ago

The Beginning of CVOYA

There’s a unique energy that comes with starting something new β€” a blend of excitement,…

7 months ago