- Download MacTex from "here":http://ftp.join.uni-muenster.de/pub/software/CTAN/systems/mac/mactex/MacTeX.pkg (I linked the Uni Münster Mirror directly since)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Requires the following gems: | |
# - prowler (v. 1.2) | |
# - gdata | |
# Also requires prowl on your iPhone | |
# As always: Feel free to use as is, I'm not responsible for anything | |
prowl_api_key = "" | |
fritz_box_host = "" | |
google = { | |
:user => "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on alfred_script(q) | |
tell application "iCal" | |
set newtodo to (make new todo at end of todos of calendar "Reminders") | |
tell newtodo | |
if "!!!" is in q then | |
set priority to high priority | |
else if "!!" is in q then | |
set priority to medium priority | |
else if "!" is in q then | |
set priority to low priority |
- Download MacTex from here (I linked the Uni Münster Mirror directly since this is a Uni Münster specific guide)
- Run the installer
- Install non-free fonts that you will need for the Uni Münster template as follows:
- Download the installer from here
cd
into the directory where you downloaded the file to (you will need to open your Terminal for this):cd ~/Downloads
- Run the installer from the terminal:
sudo texlua install-getnonfreefonts
- Install all fonts (because why not):
getnonfreefonts --all
- Install slashbox as follows:
- Download it here
- Copy it to
/usr/local/texlive/texmf-local/tex/latex/
This installs a patched ruby 1.9.3-p385 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf
using homebrew.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
gem 'tweetstream' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env bash | |
CHRUBY_VERSION=0.3.8 | |
RUBY_INSTALL_VERSION=0.4.1 | |
RUBY_VERSION=2.1.1 | |
set -e | |
set -x | |
apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule TrailingFormatCompatibilityPlug do | |
import Plug.Conn | |
def init(options), do: options | |
def call(conn, opts) do | |
conn.path_info |> List.last |> String.split(".") |> Enum.reverse |> case do | |
[ _ ] -> conn | |
[ format | fragments ] -> | |
new_path = fragments |> Enum.reverse |> Enum.join(".") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for event <- [:before_save, :before_update, :before_delete] do | |
defmacro unquote(event)(function) do | |
quote bind_quoted: [event: event] do | |
Ecto.Model.Callbacks.register_callback(__MODULE__, event, unquote(function)) | |
def __callbacks__(:before_save), do: Keyword.get_values(@ecto_callbacks, :before_save) | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using worker: worker-linux-bc81d502-2.bb.travis-ci.com:travis-linux-18 | |
system_info | |
Build system information | |
Build language: erlang | |
Build image provisioning date and time | |
Wed Feb 4 20:27:35 UTC 2015 | |
Operating System Details | |
Distributor ID: Ubuntu | |
Description: Ubuntu 12.04 LTS | |
Release: 12.04 |
OlderNewer