Skip to content

Instantly share code, notes, and snippets.

@zoqaeski
zoqaeski / grammar.tex
Created September 15, 2011 06:04
grammar.tex preamble
%\listfiles
% !TEX TS-program = xelatex
% !TEX encoding = UTF-8
\documentclass{scrreprt}
% I use KOMA-script as I find it gives much easier control than a mishmash of different packages.
%% KOMA options
\KOMAoptions{
appendixprefix=false,
chapterprefix=false,
@zoqaeski
zoqaeski / abbreviations.tex
Created September 14, 2011 15:42
Linguistics Abbreviations
\documentclass[grammar]{subfiles}
\begin{document}
\chapter{List of Glossing Abbreviations}
\label{ch:glossing_abbreviations}
The following abbreviations have been used in the linguistics glosses throughout this document.
\begin{multicols*}{2}\small
\begin{description}[font=\normalfont\scshape,labelindent=12pt,leftmargin=60pt,style=sameline]
@zoqaeski
zoqaeski / Qevesa lexical mapping.sql
Created February 12, 2011 08:28
A brief explanation and set of data for my project to create a lexical database of Qevesa.
-- TBL_ROOTS example data:
-- -----------------------
--
INSERT INTO tbl_roots (root_id, root, length, semantic_meaning, date_added) VALUES
(1, ARRAY['n','t','l'], 3, 'thinking, thought, ideas', 2011-02-11),
(2, ARRAY['s','ş','m'], 3, 'female', 2011-02-11),
(3, ARRAY['p','l','t'], 3, 'to beautify, to adorn', 2011-02-11),
(4, ARRAY['t','m','s'], 3, 'to grow, to be tall', 2011-02-11);
(5, ARRAY['s','q'], 2, 'love, emotions', 2011-02-12);
(6, ARRAY['s','z','r'], 3, 'to rule; lord, master', 2011-02-20);
!--------------------------------------------------------------------------------
! File: ~/.xmodmap
! vim:ft=xmodmap:
!--------------------------------------------------------------------------------
!--------------------------------------------------------------------------------
! Modifier keys
!--------------------------------------------------------------------------------
! clear the modifiers and locks
!----------------------------------------------
!! Colours
!----------------------------------------------
! Testing "Zork" colour theme.
*foreground: #B6B7B8
*background: #202426
! Black
*color0: #202426
*color8: #555753
#!/bin/bash
# Moves images into folders based on their dimensions
cd ~/wallpapers
for image in *;
do
dims=$(feh -ls $image | cut -f3,4 --output-delimiter=x | sed 's/WIDTHxHEIGHT//')
echo $dims
mkdir $dims &> /dev/null
mv $image $dims
"
" MAIN CUSTOMIZATION FILE
"
""""""""""""""""""""""""""""""""
"
" DISPLAY
"
""""""""""""""""""""""""""""""""