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
| { | |
| "auto_complete_triggers": | |
| [ | |
| { | |
| "characters": ".", | |
| "selector": "source.python - string - comment - constant.numeric" | |
| } | |
| ], | |
| "caret_style": "phase", | |
| "close_windows_when_empty": 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
| #!/usr/bin/env python | |
| import sys | |
| from django import VERSION | |
| from django.conf import settings | |
| from django.conf.urls import include, patterns | |
| from django.core.management import execute_from_command_line | |
| if not settings.configured: | |
| test_runners_args = {} | |
| if VERSION < (1, 6): |
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
| XferCommand = /usr/bin/aria2c --allow-overwrite=true -c --file-allocation=none --log-level=error -m2 -x2 --max-file-not-found=5 -k5M --no-conf -Rtrue --summary-interval=60 -t5 -d / -o %o %u |
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
| wget https://aur.archlinux.org/packages/br/broadcom-wl/broadcom-wl.tar.gz | |
| tar xf broadcom-wl.tar.gz | |
| cd broadcom-wl/ | |
| makepkg -s |
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
| wget --keep-session-cookies --save-cookies cookies.txt http://www.tokutek.com/download/?file=mysql-5.5.41-tokudb-7.5.5-linux-x86_64.tar.gz && wget --load-cookies cookies.txt --content-disposition http://www.tokutek.com/download.php?df=1 && rm -f download.php* cookies.txt |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am zkanda on github. | |
| * I am zkanda (https://keybase.io/zkanda) on keybase. | |
| * I have a public key whose fingerprint is FA93 3F51 3816 312B 9A82 9BB3 5997 3FE5 973B BB17 | |
| To claim this, I am signing this object: |
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
| !------------------------------------------------------------------------------- | |
| ! Xft settings | |
| !------------------------------------------------------------------------------- | |
| Xft.dpi: 96 | |
| Xft.antialias: true | |
| Xft.hinting: true | |
| Xft.rgba: rgb | |
| Xft.autohint: false | |
| Xft.hintstyle: hintslight |
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
| version: '2' | |
| services: | |
| ci: | |
| image: jenkins | |
| volumes: | |
| - ./data:/var/jenkins_home | |
| - /var/run/docker.sock:/var/run/docker.sock | |
| - $(which docker):/usr/bin/docker | |
| groupadd: | |
| - $(stat -c %g /var/run/docker.sock) |
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
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; Author: fwompner gmail com | |
| #InstallKeybdHook | |
| SetCapsLockState, alwaysoff | |
| Capslock:: | |
| Send {LControl Down} | |
| KeyWait, CapsLock |
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
| local alert = require("hs.alert") | |
| local timer = require("hs.timer") | |
| local eventtap = require("hs.eventtap") | |
| local events = eventtap.event.types | |
| local module = {} | |
| -- timeout for ctrol key | |
| module.timeFrame = .25 |