Skip to content

Instantly share code, notes, and snippets.

@nishanthprakash
nishanthprakash / list.md
Created August 6, 2021 03:02 — forked from ih2502mk/list.md
Quantopian Lectures Saved
HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008
Compiled by Eric Pement - eric [at] pement.org version 0.27
Latest version of this file (in English) is usually at:
http://www.pement.org/awk/awk1line.txt
This file will also be available in other languages:
Chinese - http://ximix.org/translation/awk1line_zh-CN.txt
USAGE:
@nishanthprakash
nishanthprakash / begin.rkt
Created October 20, 2016 23:04 — forked from EmmanuelOga/begin.rkt
Desugaring sequencing (begin ...) over lambdas.
#lang racket
; Desugaring sequencing (begin ...) over lambdas.
(define (h _) (print "hello"))
(define (w _) (print "world"))
(define (seq x)
(λ (y)
(y (x null))))