Skip to content

Instantly share code, notes, and snippets.

View everton's full-sized avatar

Everton J. Carpes everton

  • http://www.nutrebem.com.br
  • Rio de Janeiro, RJ - Brasil
View GitHub Profile
# by Matias I. Bofarull Oddo - 2022.04.20
# Inspired by Rafael Araujo's post:
# https://twitter.com/rafaela31416/status/1509334444976779264?s=20&t=mswbmkrYcJzZC5_5pbir7A
import matplotlib.pyplot as plt
Φ = (1 + (5 ** (1 / 2))) / 2
X_square = []
@cellularmitosis
cellularmitosis / README.md
Last active March 28, 2024 02:16
Adding question-mark suffixed aliases for Common Lisp predicate functions

Blog 2021/12/12

<- previous | index | next ->

Adding question-mark suffixed aliases for Common Lisp predicate functions

Having come from Scheme, Clojure, and Janet, one of the things which struck me about Common Lisp

@whosaysni
whosaysni / gist:5733660
Created June 8, 2013 02:17
Hello world with Xlib.
/*
hellox -- Hello world with Xlib.
$(CC) -o hellox hellox.c -lX11 -L/usr/X11/lib
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>