Skip to content

Instantly share code, notes, and snippets.

View F1LT3R's full-sized avatar
🌱
Growing Things

Alistair MacDonald F1LT3R

🌱
Growing Things
View GitHub Profile
@F1LT3R
F1LT3R / os-x-setup-alistair.md
Last active August 29, 2015 14:10
Alistair's OS X Setup

##Alistair's OS X Setup

###OS X Interaction Setup

####Setup Trackpad

Goto: Apple > System Preferences > TrackPad > Point & Click

  • [✘] Swipe between pages
  • [✔] Tap to click
  • [✔] Three finger drag
@F1LT3R
F1LT3R / self-hosted-email-server.md
Last active June 20, 2023 03:27
Self-Hosted Email Server

#Self-Hosted Email Server

This guide shows you how to set up a self-hosted email server.

##The Stack

Stack Diagram

###At The Core

@F1LT3R
F1LT3R / .gitconfig
Last active August 29, 2015 14:11 — forked from alexrinass/.gitconfig
[user]
name = Alexander Rinass
email = alex@rinass.net
[core]
editor = mate -w
[github]
user = alexrinass
[color]
branch = auto
diff = auto
@F1LT3R
F1LT3R / Monokai.tmTheme.xml
Created December 12, 2014 21:32
Monokai.tmTheme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Monokai</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
@F1LT3R
F1LT3R / bh_core.sublime-settings.json
Created December 12, 2014 21:33
bh_core.sublime-settings
{
"high_visibility_enabled_by_default": false,
"align_content_highlight_bar": true,
"content_highlight_bar": true,
"align_content_highlight_bar": true,
// "high_visibility_style": "solid",
"bracket_styles": {
"default": {
"icon": "dot",
@F1LT3R
F1LT3R / Preferences.sublime-settings.json
Created December 12, 2014 21:34
Preferences.sublime-settings
{
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "Source Code Pro Light",
"font_size": 18,
"highlight_line": true,
"ignored_packages":
[
"Markdown",
"Vintage"
@F1LT3R
F1LT3R / Default (OSX).sublime-keymap.json
Created December 12, 2014 21:35
Default (OSX).sublime-keymap
[
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}
]
@F1LT3R
F1LT3R / PlainTasks.sublime-settings
Created December 12, 2014 21:36
PlainTasks.sublime-settings
{
// "color_scheme": "Packages/PlainTasks/tasks-dark.hidden-tmTheme"
"color_scheme": "Packages/PlainTasks/tasks-solarized-dark.hidden-tmTheme",
"font_face": "Source Code Pro Light",
"font_size": 16
}
@F1LT3R
F1LT3R / Markdown.sublime-settings
Created December 12, 2014 21:36
Markdown.sublime-settings
{
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme",
// "draw_centered": true,
// "word_wrap": true,
"draw_centered": false,
"word_wrap": false,
"wrap_width": 60,
"rulers": [100],
// "font_face": "Josefin Slab Light",
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.zshrc
. ~/.zshrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh