Magic words:
psql -U postgresIf run with -E flag, it will describe the underlaying queries of the \ commands (cool for learning!).
Most \d commands support additional param of __schema__.name__ and accept wildcards like *.*
| defmodule Tcprpc.Server do | |
| use GenServer.Behaviour | |
| defrecord State, port: nil, lsock: nil, request_count: 0 | |
| def start_link(port) do | |
| :gen_server.start_link({ :local, :tcprcp }, __MODULE__, port, []) | |
| end | |
| def start_link() do |
| ############################################################################## | |
| # CMake | |
| ############################################################################## | |
| cmake_minimum_required(VERSION 2.8.0) | |
| project(show_laser) | |
| ############################################################################## | |
| # Catkin | |
| ############################################################################## |
| #!/bin/sh | |
| ## | |
| sed -i -e 's/\(us.\)\?archive.ubuntu.com/ftp.daumkakao.com/g' -e 's/security.ubuntu.com/ftp.daumkakao.com/g' /etc/apt/sources.list | |
| ## check | |
| apt update |
| ## | |
| ## LeoFS' Erlang | |
| ## | |
| FROM gliderlabs/alpine:3.4 | |
| MAINTAINER LeoFS <leo-project.net/leofs/> | |
| ENV LANG=en_US.UTF-8 \ | |
| HOME=/var/local/erlang/ \ | |
| TERM=xterm |
Guide to setting up a new Ubuntu 18.04 dev environment with Ruby and Elixir installed with the asdf version management tool.
Some of these packages may already be installed
sudo apt-get install make binutils gcc build-essential \
git curl zlib1g-dev openssl libssl-dev libreadline-dev \