Skip to content

Instantly share code, notes, and snippets.

View karsai5's full-sized avatar

Linus Karsai karsai5

View GitHub Profile
@karsai5
karsai5 / wrapper.py
Created January 5, 2015 00:31
Gcalcli i3 status bar
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This script is a simple wrapper which prefixes each i3status line with custom
# information. It is a python reimplementation of:
# http://code.stapelberg.de/git/i3status/tree/contrib/wrapper.pl
#
# To use it, ensure your ~/.i3status.conf contains this line:
# output_format = "i3bar"
# in the 'general' section.

Keybase proof

I hereby claim:

  • I am karsai5 on github.
  • I am karsai5 (https://keybase.io/karsai5) on keybase.
  • I have a public key whose fingerprint is B37C E899 DEF0 FBAA FED0 4E9A 3DFF 42ED 8A79 1 CC0

To claim this, I am signing this object:

@karsai5
karsai5 / Empty line remover
Created August 10, 2013 00:29
Removes blank lines from all html, php and css files in a directory. Sometimes when uploading multiple files to a server I find blank lines are inserted between each line of code; this script is to remove those unnecessary lines of whitespace.
#! /bin/bash
for file in $(find . -name '*.html' -o -name '*.php' -o '*.css');
do
sed '/^$/d' $file > tt
mv tt $file
echo "Removing empty lines from file - $file"
done
% Week 2 Tutorial, PhotoVide-Shop
%
% Shows the parent child relationship between categories
% category(parent, child)
%
% Represents how many items are available in a category
% category_entries(category, number_of_items)
category(catalog, video).
category(catalog, photography).
father(james, patrick).
father(patrick,pjk).
father(pjk, joseph).
father(joseph, jfk).
father(joseph, bobby).
father(joseph, eunice).
father(jfk, caroline).
father(jfk, jfk_jr).
mother(maria, patrick).
mother(bridget, pjk).
Slides w6: https://www.dropbox.com/s/i1sgt6i52rhg888/06adv_RecursiveSQL.pdf?dl=0
Case study: https://www.dropbox.com/s/xh6jbgjmpgwa1zn/StudReg%20Case%20Study.pdf?dl=0
Video Tutorial on wk8 Web Application: https://www.dropbox.com/s/eva3xe0r94os6j4/Week8Tutorial.mp4?dl=0
Sample Exam: https://www.dropbox.com/s/esr8udwwix2xo21/example_exam_info2x20_2016s1-handout.pdf?dl=0
Linus' Tutor Survey: http://goo.gl/forms/bS1QzNjggedpa5uj2
EOS Survey: https://www.itl.usyd.edu.au/feedback/survey