Skip to content

Instantly share code, notes, and snippets.

View sionleroux's full-sized avatar

Siôn le Roux sionleroux

View GitHub Profile
@sionleroux
sionleroux / todo.css
Created January 31, 2013 11:26
A CSS TODO class for marking TODOs in WIP files. To use it, include the css in the header and create a div.todo containing the text message describing what you need to do. The CSS will prepend the word "TODO" and highlight the element to make it easy to find on the page, it also highlights the next element, assuming that whatever is after the TO…
/* CSS for adding TODO notes on WIP pages */
div.todo { /* style the text in a bright box */
color: red;
font-size: large;
background-color: yellow;
text-align: center;
border: 3px solid red;
border-bottom: 1px solid red;
margin-bottom: 0;
padding: 1px;
@sionleroux
sionleroux / PKGBUILD
Last active December 17, 2015 21:39
PKGBUILD for the tomboy-reminder package in AUR.
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Giorgio Lando <patroclo7@gmail.com>
# Maintainer: Siôn Le Roux <sinisterstuf@gmail.com>
pkgname=tomboy-reminder
pkgver=0.9.2
pkgrel=1
pkgdesc="A tomboy plugin to tell Tomboy to pop up a note when you want to be reminded"
url="http://flukkost.nu/blog/tomboy-reminder/"
depends=('tomboy')
@sionleroux
sionleroux / PKGBUILD
Created June 8, 2013 10:30
PKGBUILD for the tomboy-todo package in AUR.
# Maintainer: Siôn Le Roux <sinisterstuf@gmail.com>
pkgname=tomboy-todo
pkgver=1.0.0
pkgrel=1
pkgdesc="A tomboy plugin to highlight markers such as FIXME, TODO and XXX."
url="http://romain.blogreen.org/projects/tomboy-todo/"
depends=('tomboy')
arch=(any)
license=(Apache)
@sionleroux
sionleroux / .SRCINFO
Last active September 26, 2017 22:06
PKGBUILD for the tomboy-toc package in AUR.
pkgbase = tomboy-toc
pkgdesc = A tomboy plugin to generate a Table of Contents menu item.
pkgver = 0.6
pkgrel = 1
url = http://oluc.blogspot.com.ar/2011/04/tomboy-add-in-table-of-content.html
arch = any
license = LGPL
depends = tomboy
source = http://oluc.github.io/tomboy/bin/TableOfContent.dll-0.6
md5sums = 460db27280e3991396c87789aeebf11c
@sionleroux
sionleroux / .SRCINFO
Last active September 26, 2017 22:02
PKGBUILD for the tomboy-calc package in AUR.
pkgbase = tomboy-calc
pkgdesc = A tomboy plugin to compute mathematical equations in notes.
pkgver = 0.40
pkgrel = 1
url = http://www.robpvn.net/calcaddin/
arch = any
license = GPL
depends = tomboy
source = https://github.com/downloads/robpvn/Tomboy-Calculator-Addin/tomboy_calculatoraddin.zip
md5sums = 9c9163cb6d1c0cda18a7844b1af53a47
@sionleroux
sionleroux / .SRCINFO
Last active September 26, 2017 22:05
PKGBUILD for the tomboy-pastebinit package in AUR.
pkgbase = tomboy-pastebinit
pkgdesc = A tomboy plugin to send notes to a Pastebin service
pkgver = 0.1
pkgrel = 1
url = https://launchpad.net/tomboy-pastebinit/
arch = any
license = LGPL
depends = tomboy
source = https://launchpad.net/tomboy-pastebinit/trunk/0.1/+download/PasteBinIt.dll
md5sums = e683cea2d3691007d55ca4866db88165
@sionleroux
sionleroux / .SRCINFO
Last active September 26, 2017 22:04
PKGBUILD for the tomboy-dragndrop package in AUR.
pkgbase = tomboy-dragndrop
pkgdesc = A tomboy plugin to create links between Tomboy notes via Drag-n-Drop
pkgver = 0.1
pkgrel = 1
url = https://sites.google.com/site/paginadisalvo/tools/tomboy-drag-n-drop
arch = any
license = LGPL
depends = tomboy
source = https://sites.google.com/site/paginadisalvo/tools/tomboy-drag-n-drop/DnDLinking.dll
md5sums = ea43bf3a412d7750918b75f3134c256e
@sionleroux
sionleroux / .SRCINFO
Last active September 26, 2017 22:05
PKGBUILD for the tomboy-notepreview package in AUR.
pkgbase = tomboy-notepreview
pkgdesc = A Tomboy plugin to show a tooltip containing a preview when you hold the mouse over a link in a note.
pkgver = 0.10
pkgrel = 1
url = http://www.robpvn.net/notepreview/
arch = any
license = LGPL
depends = tomboy
source = https://github.com/downloads/robpvn/Tomboy-Note-Preview-Addin/tomboy_notepreviewaddin.zip
md5sums = 40633eee15cd50794f44f3afb1559e6f
@sionleroux
sionleroux / steam-key-popup.sh
Created June 17, 2013 07:34
A bash script which displays a pop-up showing a Steam activation key piped to it by a MUA.
#/bin/bash
# Displays a pop-up showing a Steam activation key piped to it by a MUA.
# In the e-mail the steam key is wrapped in <h2> tags
# Author: Siôn Le Roux <sinisterstuf@gmail.com>
# read e-mail from pipe
while read -r line; do
# find <h2>
buffer=$(echo $line | grep 'h2')
@sionleroux
sionleroux / GeoBookmark.log
Created May 14, 2014 12:50
Log of GeoBookmark crash on Android version 8
05-14 14:27:39.995: D/dalvikvm(251): GC_EXPLICIT freed 916 objects / 64704 bytes in 109ms
05-14 14:28:15.884: D/AndroidRuntime(251): Shutting down VM
05-14 14:28:15.884: W/dalvikvm(251): threadid=1: thread exiting with uncaught exception (group=0x4001d800)
05-14 14:28:15.904: E/AndroidRuntime(251): FATAL EXCEPTION: main
05-14 14:28:15.904: E/AndroidRuntime(251): java.lang.IllegalArgumentException: contentIntent required: pkg=de.onyxbits.geobookmark id=0 notification=Notification(vibrate=null,sound=null,defaults=0x0)
05-14 14:28:15.904: E/AndroidRuntime(251): at android.os.Parcel.readException(Parcel.java:1251)
05-14 14:28:15.904: E/AndroidRuntime(251): at android.os.Parcel.readException(Parcel.java:1235)
05-14 14:28:15.904: E/AndroidRuntime(251): at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:274)
05-14 14:28:15.904: E/AndroidRuntime(251): at android.app.NotificationManager.notify(NotificationManager.java:110)
05-14 14:28:15.904: E/AndroidRuntime(251):