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
| /*! | |
| * Hack typeface https://github.com/source-foundry/Hack | |
| * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md | |
| */ | |
| /* FONT PATHS | |
| * -------------------------- */ | |
| @font-face { | |
| font-family: 'Hack Nerd Font Mono'; | |
| src: url('https://raw.githubusercontent.com/ryanoasis/nerd-fonts/master/patched-fonts/Hack/Regular/complete/Hack%20Regular%20Nerd%20Font%20Complete%20Mono.ttf') format('truetype'); | |
| font-weight: 400; |
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/bash | |
| set -e | |
| if [[ -z $NODEJS_VERSION ]]; then | |
| echo "You must set the NODEJS_VERSION environment variable." 1>&2 | |
| fi | |
| mkdir -p /scratch/hudson/nodejs | |
| ARCH=`uname -m` |
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
| property WebService : "http://www.whatismyip.com/automation/n09230945.asp" | |
| set response to do shell script "/usr/bin/curl " & WebService | |
| -- uncomment to copy the ip address to the clipboard | |
| -- set the clipboard to response | |
| tell application "LaunchBar" | |
| display in large type response | |
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
| tell application "System Events" to if exists process "Adium" then | |
| tell application "Adium" | |
| set pomodoro to the first status where title is "Pomodoro" | |
| set status message of pomodoro to "I'll respond in $time minutes" | |
| set autoreply of pomodoro to "I'll respond in $time minutes" | |
| end tell | |
| end if |
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
| # Author:: Adam Jacob <adam@opscode.com> | |
| # Author:: Joshua Timberman <joshua@opscode.com> | |
| # | |
| # Copyright 2009-2010, Opscode, Inc | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 |