Skip to content

Instantly share code, notes, and snippets.

View gmichokostas's full-sized avatar

Yiorgos Michokostas gmichokostas

View GitHub Profile
@gmichokostas
gmichokostas / gist:a4ae08d7cb16cfba8c9d694e3675d2c0
Created October 16, 2024 19:05 — forked from jackrusher/gist:5139396
Hofstadter on Lisp: Atoms and Lists, re-printed in Metamagical Themas.

Hofstadter on Lisp

In the mid-80s, while reading through my roommate's collection of Scientific American back issues, I encountered this introduction to Lisp written by Douglas Hofstadter. I found it very charming at the time, and provide it here (somewhat illegally) for the edification of a new generation of Lispers.

In a testament to the timelessness of Lisp, you can still run all the examples below in emacs if you install these aliases:

(defalias 'plus #'+)
(defalias 'quotient #'/)
(defalias 'times #'*)
(defalias 'difference #'-)
@gmichokostas
gmichokostas / pgstore.rb
Created July 6, 2023 18:36 — forked from noteflakes/pgstore.rb
A lightweight PostgreSQL ORM using JSONB. Provides an API for retreiving documents by arbitrary key, and performing queries on arbitrary keys and sub-keys.
require 'pg'
PGDB = PG.connect(host: '/tmp', dbname: 'mydb')
PGDB.type_map_for_results = PG::BasicTypeMapForResults.new(PGDB)
class Hash
def symbolize_keys
inject({}) { |m, kv| v = kv[1];
m[kv[0].to_sym] = v.is_a?(Hash) ? v.symbolize_keys : v; m }
end
end
#include <iostream>
using namespace std;
auto upto(int& beg, int& end) -> decltype(std::function<int()>()) {
return [&]() {
if (beg <= end) {
return beg++;
}
return 0;
@gmichokostas
gmichokostas / stack.go
Last active August 15, 2017 19:04
LIFO Stack implemented with Go
package stack
import "fmt"
// Stack is a LIFO data structure
type Stack struct {
len int
top *node
}
module GuessTheNumber where
import System.Random
startGame :: IO ()
startGame = do
let tries = 5
num <- randomRIO (0, 9) :: IO Int
makeGuess num tries