Skip to content

Instantly share code, notes, and snippets.

@sleeptillseven
sleeptillseven / erlang_vm.md
Last active July 18, 2016 13:44
Collection of interesting resources for studying the Erlang VM

List of Interesting Resources Describing the Erlang VM

Hitchhiker's guide to the Erlang VM

Author: Robert Virding (Co-inventor of Erlang)

Slides: pdf

Video: youtube

@diegopacheco
diegopacheco / FRP.md
Last active August 8, 2017 12:26
Functional Reactive Streams | FRP | Akka | Streams

How Clojure's documentation can leapfrog other languages

Summary

I made a documentation generator that cashes in on Clojure's dynamism. See the play-cljs docs (a ClojureScript game library) for an example of its output.

The Problem

Like many of you, I've often wondered what my final regret will be on my deathbed. My best guess came to me in a dream recently. I was walking across the charred earth of an apocalyptic future world, maneuvering around the remains of the less fortunate. I was startled to find a young girl, barely holding onto her life. She murmured something to me. I asked her to repeat it, and she said more loudly: "I...wish your Clojure projects didn't have such crappy documentation."

@SkyaTura
SkyaTura / SCP.md
Last active January 29, 2024 11:20
SCP - João Carvalho

Item SCP #: SCP-████

Classe do Objeto: Euclídeo

Procedimentos Especiais de Contenção: SCP-████, conhecido como João Carvalho, deve ser mantido em um ambiente de contenção simulado localizado no Site ██. Este ambiente deve replicar uma casa e um estúdio de gravação confortáveis, onde SCP-████ acredita viver com sua família e trabalhar como produtor de conteúdo na internet. A família e todos os indivíduos com quem SCP-████ interage devem ser agentes treinados da Fundação, disfarçados e dedicados a monitorar e coletar informações sobre as previsões de SCP-████.

SCP-████ deve ser incentivado a continuar produzindo conteúdo sobre história e comunismo, a fim de estimular o uso de suas habilidades anômalas. Qualquer previsão feita por SCP-████ deve ser registrada e analisada por pesquisadores da Fundação.

Descrição: SCP-████, também conhecido como João Rafael Chió Serra Carvalho, é um indivíduo humano adulto do sexo masculino, nascido em 10 de junho de 1984, em Belo Horizonte, Brasil. SCP-████ a

@jyurek
jyurek / tm.sh
Last active February 12, 2024 10:37
Create and switch sessions in tmux quickly
#!/bin/sh
tm() {
if [ -z $1 ]; then
tmux switch-client -l
else
if [ -z "$TMUX" ]; then
tmux new-session -As $1
else
if ! tmux has-session -t $1 2>/dev/null; then
TMUX= tmux new-session -ds $1
@reborg
reborg / rich-already-answered-that.md
Last active February 23, 2024 13:09
A curated collection of answers that Rich gave throughout the history of Clojure

Rich Already Answered That!

A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.

How to use:

  • The link in the table of content jumps at the copy of the answer on this page.
  • The link on the answer itself points back at the original post.

Table of Content

@yogthos
yogthos / clojure-beginner.md
Last active April 15, 2024 17:11
Clojure beginner resources

Introductory resources