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
| // ==UserScript== | |
| // @name Trello card progress | |
| // @namespace trello | |
| // @author Tuomas Kinnunen | |
| // @description Add a thin progress bar to trello cards that have a checklist | |
| // @include https://trello.com/b/* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| window.addEventListener ("load", Greasemonkey_main, false); |
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
| #!/bin/perl -lp | |
| # -w # Note: throws some warnings about using uninitialized vars | |
| # | |
| # Author: Tuomas Kinnunen | |
| # | |
| # Description: colorizes terminal output of some haskell tools: ghc, cabal, hlint | |
| # This script comes without warranty of any kind. Bugs in this script might hide parts of compiler errors. | |
| # | |
| # | |
| # Usage: pipe stdout and stderr to haskelltool-color |
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
| // ==UserScript== | |
| // @name aalto auto login | |
| // @namespace tkscripts | |
| // @description login with (firefox) remembered aalto account data automatically, also a+ ultimate destination fix | |
| // @include https://idp.aalto.fi/idp/Authn/* | |
| // @include https://noppa.aalto.fi/noppa/app | |
| // @include https://oodi.aalto.fi/a/* | |
| // @include https://plus.cs.hut.fi/ | |
| // @include https://plus.cs.hut.fi/accounts/login/?* | |
| // @include https://plus.cs.aalto.fi/ |
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
| // ==UserScript== | |
| // @name mal_auto_login | |
| // @namespace tkscripts | |
| // @description login with (firefox) remembered mal account data automatically, also ultimate destination for animelist | |
| // @include http://myanimelist.net/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js | |
| // @version 1.1 | |
| // @grant none | |
| // ==/UserScript== |
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/sh | |
| # author: Tuomas Kinnunen | |
| # last update: Mon 22 Sep 17:29:03 EEST 2014 | |
| # ------------------------------------------------------------------------------ | |
| # Generates monospace ascii html file from `remind` reminders. | |
| # usage: just call this script daily to update the static html file, $DESTINATION | |
| # Source of reminders | |
| REMINDERS=$HOME/.reminders |