Skip to content

Instantly share code, notes, and snippets.

#install libnfc
brew install libtool
brew install automake
brew install autoconf
brew install libusb
brew install pkg-config
brew install glib
@whhsw
whhsw / phabricator_readme.md
Last active August 10, 2018 13:08 — forked from sparrc/phabricator_readme.md
Phabricator Ubuntu Installation Guide

Phabricator Ubuntu Installation Guide

This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.

Ubuntu Version:

Till 2018 August, requires ubuntu 16+.

Install bonus packages(unverfired):

apt install software-properties-common

@whhsw
whhsw / mirror.conf
Created March 2, 2016 07:22 — forked from ctrlaltdylan/mirror.conf
The nginx server configuration file needed to host the MirrorMirror application
server {
listen 80;
server_name localhost;
root /home/pi/projects/MirrorMirror/public;
index index.html index.htm index.php;
charset utf-8;
location / {
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install python (& pip)
brew install python;
pip install virtualenv;
#clone the repo
cd ~;
git clone git@github.com:Geniushjs/LintCode.git;
cd LintCode;
#update package list
sudo apt-get update
# install git
sudo apt-get install g++ curl libssl-dev apache2-utils make
sudo apt-get install git-core
# download the Node source, compile and install it
git clone https://github.com/joyent/node.git
cd node
./configure
make