Skip to content

Instantly share code, notes, and snippets.

;; Configure package manager
(require 'package)
;; Add Marmalade repo
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
;; ... and melpa. Melpa packages that exist on marmalade will have
;; precendence.
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
@Egget
Egget / Lecture.md
Last active November 24, 2017 08:05

Lecture by Kivra - Terminal and git

Terminal basics

  • Start the terminal
  • Filesystem (cd, pwd, ls, tree) How does paths work!?
  • Create files (mkdir, touch)
  • Remove files (rm)
  • Move and copy (mv, cp)

Keybase proof

I hereby claim:

  • I am Egget on github.
  • I am egget (https://keybase.io/egget) on keybase.
  • I have a public key whose fingerprint is 2369 E598 6776 7AC1 7855 0CDA 9CF7 8380 35E8 8763

To claim this, I am signing this object:

-module(vincent_gen_tcp).
-behaviour(gen_server).
-export([start_link/1]).
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
code_change/3, terminate/2]).
-record(state, {host,
port,