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

The Beginning of CVOYA

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

1 month ago

Enhancements in Graph Model: Dynamic Entities & Full-Text Search

As I continued work on BrainExpanded and its MCP service, I came to realize that…

4 months ago

GraphModel: A .NET Abstraction for Graphs

Just over a month ago, I published "Playing with graphs and Neo4j". Back then, it…

5 months ago

Playing with graphs and neo4j

After my initial implementation of some BrainExpanded-related ideas on top of dgraph using its GraphQL…

6 months ago

A Graph Model DSL

Say hello to the Graph Model Domain Specific Language (GMDSL), created with the help of…

7 months ago

BrainExpanded – Web app and Data Sources

As I wrote in previous posts, the manual recording of memories for BrainExpanded is just…

7 months ago