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/sh | |
| [ ! -d package ] && mkdir package | |
| for splitpk in `tar tf 00-index.tar.gz | cut -d/ -f 1,2`; do | |
| pk=`echo $splitpk | sed 's|/|-|'` | |
| name=$pk.tar.gz | |
| if [ ! -a package/$name ]; then | |
| wget http://hackage.haskell.org/package/$pk/$name -O package/$name | |
| 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
| module Main where | |
| import Data.List | |
| import System.Environment | |
| import Github.Issues | |
| import Github.Repos | |
| import Text.Printf | |
| handleError :: String -> [String] -> Either Error a -> IO a | |
| handleError action args (Left err) = |
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
| /* | |
| * Copyright (C) 2012 Vincent Hanquez | |
| * | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright |
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
| #xmodmap -e "keycode 192 = XF86Launch1" | |
| xmodmap -e "keycode 192 = XF86Launch6" | |
| #xmodmap -e "keycode 193 = XF86Launch2" | |
| xmodmap -e "keycode 193 = XF86Calendar" | |
| xmodmap -e "keycode 194 = XF86Launch3" | |
| xmodmap -e "keycode 195 = XF86Launch4" | |
| xmodmap -e "keycode 196 = XF86Launch5" | |
| xset b off |
NewerOlder