Skip to content

Instantly share code, notes, and snippets.

@DrTom
DrTom / MacPort PostgreSQL setup.md
Last active December 28, 2023 09:35
MacPort PostgreSQL setup

PostgreSQL Server Setup on Mac OS with MacPorts

export VERSION=15

Install

port info postgresql${VERSION}-server
port install postgresql${VERSION}-server
@tachoknight
tachoknight / build-swift-from-master.sh
Created June 12, 2018 19:40
Bash script to build Apple's Swift Programming Language on Linux
#!/bin/bash
BASE_DIR=/home/tachoknight/apple-swift
BUILDS_DIR=$BASE_DIR/builds
rm -rf $BASE_DIR
mkdir -p $BUILDS_DIR
cd $BASE_DIR
git clone https://github.com/apple/swift.git swift
./swift/utils/update-checkout --clone --scheme master