Skip to content

Instantly share code, notes, and snippets.

* 937d61b (HEAD -> master, origin/master, origin/HEAD, github/master) Make :Acks handle custom delimiters and options (11 days ago) <Greg Hurrell>
* c6694c0 Merge branch 'pull/19' (12 days ago) <Greg Hurrell>
|\
| * c03cd0d (pull/19) doc: Make handler limitations more explicit (12 days ago) <Greg Hurrell>
| * 013acf1 Remove unnecessary whitespace change (12 days ago) <Greg Hurrell>
| * 7950cce doc: Avoid unwanted syntax highlighting (13 days ago) <Greg Hurrell>
| * cc52164 doc: Correct g:FerretLLHandler default (13 days ago) <Greg Hurrell>
| * bf5236d Only lookup handler settings when needed (13 days ago) <Greg Hurrell>
| * f0a7ca0 doc: Update HISTORY section (13 days ago) <Greg Hurrell>
| * b2e2b08 doc: Apply grammar tweak (13 days ago) <Greg Hurrell>
* vendor/ansible f222539...0603b9c (2242):
> winrm error handling tweaks
> fast winrm put_file without size restrictions
> Version bump for 2.0.0-0.6.rc1
> Submodule pointer update
> Fix include param precedence in variable manager
> Return skipped/failed async results directly
> Merge pull request #13201 from ma82/patch-1
> Merge pull request #13214 from mgedmin/fix-loops
> Don't update job vars too early when getting loop items in TaskExecutor
com.apple.systemuiserver:
@@ -2,7 +2,6 @@
"__NSEnableTSMDocumentWindowLevel" = 1;
"last-messagetrace-stamp" = "471562851.248999";
menuExtras = (
- "/System/Library/CoreServices/Menu Extras/Clock.menu",
"/System/Library/CoreServices/Menu Extras/AirPort.menu"
);
}
defaults -currentHost write com.apple.systemuiserver dontAutoLoad -array \
"/Applications/Utilities/Keychain Access.app/Contents/Resources/Keychain.menu" \
"/System/Library/CoreServices/Menu Extras/Battery.menu" \
"/System/Library/CoreServices/Menu Extras/Clock.menu" \
"/System/Library/CoreServices/Menu Extras/TimeMachine.menu" \
"/System/Library/CoreServices/Menu Extras/Volume.menu"
defaults write com.apple.systemuiserver menuExtras -array \
"/System/Library/CoreServices/Menu Extras/AirPort.menu" \
"/System/Library/CoreServices/Menu Extras/Bluetooth.menu" \
- read: '-currentHost read com.apple.screensaver showClock'
write: '-currentHost write com.apple.screensaver showClock -int 1'
expected: '1'
description: System Preferences -> Desktop & Screen Saver -> Screen Saver -> Show with clock
last_tested: '[10.10.2]'
- name: defaults | System Preferences -> Desktop & Screen Saver -> Screen Saver -> Show with clock
osx_defaults: domain=com.apple.screensaver host=currentHost key=showClock type=int value=0
@wincent
wincent / gist:1b7d97fdc646bbe79eaf
Created February 29, 2016 07:52
Command-T benchmarks
next:
user system total real
pathological 0.200000 0.000000 0.200000 ( 0.197547)
command-t 1.250000 0.010000 1.260000 ( 1.265484)
chromium (subset) 0.960000 0.130000 1.090000 ( 0.217825)
chromium (whole) 3.850000 0.020000 3.870000 ( 0.533365)
3.0.2 (current released version):
Special Parameters
The shell treats several parameters specially. These parameters may only be referenced; assignment to them is not allowed.
* Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, it expands to a single word with the value
of each parameter separated by the first character of the IFS special variable. That is, "$*" is equivalent to "$1c$2c...", where c is the first
character of the value of the IFS variable. If IFS is unset, the parameters are separated by spaces. If IFS is null, the parameters are joined
without intervening separators.
@ Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, each parameter expands to a separate word.
That is, "$@" is equivalent to "$1" "$2" ... If the double-quoted expansion occurs within a word, the expansion of the first parameter is joined
/tmp!$ cabal update 0.35s /tmp
Downloading the latest package list from hackage.haskell.org
/tmp$ cabal get docvim-0.3.1.2 3.39s /tmp
Downloading docvim-0.3.1.2...
Unpacking to docvim-0.3.1.2/
/tmp$ cd docvim-0.3.1.2 0.85s /tmp
. LICENSE.md Setup.hs lib tests
.. README.md docvim.cabal src
docvim-0.3.1.2$ stack --resolver nightly init 0.01s /tmp/docvim-0.3.1.2
Looking for .cabal or package.yaml files to use to init the project.
name: docvim
version: 0.3.1.3
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE.md
copyright: 2015-present Greg Hurrell
maintainer: [email protected]
homepage: https://github.com/wincent/docvim
synopsis: Documentation generator for Vim plug-ins