%title: Command Line Productivity %author: @onlurking %date: 2020-07-24
-> # Terminal <-
a.k.a. terminal emulator.
It's a program that opens a window and lets you interact with the shell. There are a bunch of
%title: Command Line Productivity %author: @onlurking %date: 2020-07-24
-> # Terminal <-
a.k.a. terminal emulator.
It's a program that opens a window and lets you interact with the shell. There are a bunch of
By Phillip G. Armour
Communications of the ACM, October 2000, Vol. 43 No. 10, Pages 17-20
10.1145/352183.352194
In my first column (Aug. 2000, p. 19), I argued that software is not a product, but rather a medium for the storage of knowledge. In fact, it is the fifth such medium that has existed since the beginning of time. The other knowledge storage media being, in historical order: DNA, brains, hardware, and books. The reason software has become the storage medium of choice is that knowledge in software has been made active. It has escaped the confinement and volatility of knowledge in brains; it avoids the passivity of knowledge in books; it has the flexibility and speed of change missing from knowledge in DNA or hardware.
If software is not a product, then what is the product of our efforts to produce software? It is the knowledge contained in the software. It's rather easy to produce software. It's much more difficult to produce software that works, because we ha
# build stage | |
FROM node:12.16.1-alpine as build-stage | |
WORKDIR /app | |
# add `/app/node_modules/.bin` to $PATH | |
ENV PATH /app/node_modules/.bin:$PATH | |
COPY package.json package-lock.json* ./ | |
RUN npm install |
# Mouse support | |
set-option -g mouse on | |
set -g @scroll-speed-num-lines-per-scroll "1" | |
# make tmux display things in 256 colors | |
set -g default-terminal "tmux-256color" | |
set -ga terminal-overrides ",*256col*:Tc" | |
# set scrollback history to 10000 (10k) |
Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct
# -*- mode: conf -*- | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
# Set the Super key as Mod | |
set $mod Mod4 | |
# Font for window titles. Will also be used by the bar unless a different font | |
# is used in the bar {} block below. |
server { | |
listen 9000 default_server; | |
server_name localhost; | |
location / { | |
root /var/www/html; | |
try_files $uri $uri/ /index.html; | |
} | |
} |
# Mouse support | |
set-option -g mouse on | |
set -g @scroll-speed-num-lines-per-scroll "1" | |
# make tmux display things in 256 colors | |
set -g default-terminal "screen-256color" | |
# set scrollback history to 10000 (10k) | |
set -g history-limit 10000 |