Install packaged versions of Pandoc and TexLive
wget https://mirrors.creativecommons.org/presskit/icons/cc.png
sudo apt-get install \
pandoc \
texlive-latex-extra texlive-fonts-recommended \
"""A caseless dictionary implementation.""" | |
from collections import MutableMapping | |
class CaselessDictionary(MutableMapping): | |
""" | |
A dictionary-like object which ignores but preserves the case of strings. |
#!/bin/bash | |
function actual_path() { | |
if [ [ -z "$1" ] -a [ -d $1 ] ]; then | |
echo $(cd $1 && test `pwd` = `pwd -P`) | |
return 0 | |
else | |
return 1 | |
fi | |
} |
# -*- coding: utf-8 -*- | |
""" | |
Python logging tuned to extreme. | |
""" | |
__author__ = "Mikko Ohtamaa <[email protected]>" | |
__license__ = "MIT" |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <random> | |
namespace sftrabbit { | |
template <typename RealType = double> | |
class beta_distribution | |
{ |
#! /bin/bash | |
if [[ -z $1 ]] | |
then | |
if [[ -z $VIMRUNTIME ]] | |
then | |
VIMRUNTIME=$HOME/.vim | |
fi | |
else | |
VIMRUNTIME="$1" |