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 | |
| env WINEPREFIX="/home/jonathan/.wine" wine C:\\Program\ Files\ \(x86\)\\Evernote\\Evernote\\Evernote.exe $@ |
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
| #lang racket | |
| (define-syntax-rule (something a) | |
| (printf "~a" a)) | |
| ; I'm trying to be able to call (something blah) and get "blah" printed out. |
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
| # For reference, see /etc/sysconfig/network/ifcfg.template. | |
| # Everything not specified is automatically determined. Defaults are described in that file. | |
| IPADDR=192.168.1.53 | |
| NETMASK=255.255.255.0 |
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
| set nocompatible | |
| set modeline | |
| set ttyfast | |
| set backspace=indent,eol,start | |
| set backup | |
| set history=50 | |
| set ruler | |
| set background=dark | |
| set showcmd | |
| set incsearch |
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
| export PATH="$HOME/go/bin:$PATH" | |
| export GOROOT="$HOME/go" | |
| export GOOS="linux" | |
| export GOARCH="amd64" | |
| export PATH="$GOROOT/bin:$PATH" | |
| export GOPATH="$HOME/gocode" |
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
| SSHAGENT=/usr/bin/ssh-agent | |
| SSHAGENTARGS="-s" | |
| if [ -z "$SSH_AUTH_SOCK" -a -x "$SSHAGENT" ]; then | |
| eval `$SSHAGENT $SSHAGENTARGS` | |
| trap "kill $SSH_AGENT_PID" 0 | |
| fi | |
| export PATH="$HOME/go/bin:$PATH" | |
| export GOROOT="$HOME/go" |
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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <Dictionary> | |
| <Words> | |
| <Recognized> | |
| <Word>unmarshall</Word> | |
| <Word>jyc</Word> | |
| </Recognized> | |
| </Words> | |
| </Dictionary> |
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
| <StyleCopSettings Version="105"> | |
| <Analyzers> | |
| <Analyzer AnalyzerId="StyleCop.CSharp.DocumentationRules"> | |
| <Rules> | |
| <Rule Name="ElementsMustBeDocumented"> | |
| <RuleSettings> | |
| <BooleanProperty Name="Enabled">False</BooleanProperty> | |
| </RuleSettings> | |
| </Rule> | |
| <Rule Name="PartialElementsMustBeDocumented"> |
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
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Version=0.9.4 | |
| Type=Application | |
| Name=dropboxd | |
| Comment=Start dropboxd. | |
| Exec=/home/jonathan/.dropbox-dist/dropboxd | |
| StartupNotify=false | |
| Terminal=false | |
| Hidden=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/bash | |
| . common.sh | |
| MEMORY="2048M" | |
| FLAGS="-Xmx$MEMORY -server -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:+UseAdaptiveGCBoundary -XX:SurvivorRatio=16 -XX:ParallelGCThreads=3 -XX:+AggressiveOpts" | |
| screen -dmS $SCREEN_NAME java $FLAGS -jar $JAR_NAME nogui |