for 2016+ see: http://undocumentedmatlab.com/blog/user-defined-tab-completions-take-2 Create local :
functionSignatures.json
For 2015 and below : http://undocumentedmatlab.com/blog/setting-desktop-tab-completions
Edit
for 2016+ see: http://undocumentedmatlab.com/blog/user-defined-tab-completions-take-2 Create local :
functionSignatures.json
For 2015 and below : http://undocumentedmatlab.com/blog/setting-desktop-tab-completions
Edit
Kindle.app downloads DRM'd books to this location
"~/Library/Containers/com.amazon.Kindle/Data/Library/Application Support/Kindle/My Kindle Content/"
Use Metronome for equal not spacing. practice scale, then increase speed 5-20bpm.
Bash: Backspace word ctrl-w
Vim Folding start {{{
end }}}
Vim Folding Open All zR
Vim Folding Close All zM
Vim list current Colorscheme echo g:colors_name
SHELL = /home/lounge/.rvm/bin/rvm-shell | |
# Minute Hour Day Month Day of Week Command | |
# (0-59) (0-23) (1-31) (1-12) (0-6) | |
0,15,30,45 * * * * /bin/bash -l -c 'cd /path/to/script && ./run_script’ |
brew install smartmontools
smartctl -a /dev/disk1
smartctl -t long /dev/disk1
https://www.smartmontools.org/wiki/Download#RunsmartmontoolsfromLive-system
https://userbase.kde.org/Calligra/Download#Mac_OS_X
For KDE Home brew https://github.com/adymo/homebrew-kde edit .bashrc
export KDEDIRS=$KDEDIRS:$HOME/Library/Preferences/KDE:/usr/local/kde4
export PATH=/usr/local/kde4/bin:$PATH
export DYLD_LIBRARY_PATH=/usr/local/kde4/lib:$DYLD_LIBRARY_PATH
launchctl setenv DYLD_LIBRARY_PATH /usr/local/kde4/lib:$DYLD_LIBRARY_PATH
export XDG_DATA_HOME=$HOME/Library/Preferences/KDE/share
export XDG_DATA_DIRS=/usr/local/kde4/share:/usr/local/share:/usr/share
#!/bin/bash | |
# commit | |
# date YYYY-mm-dd HH:MM:SS | |
# http://stackoverflow.com/a/24584976/97073 | |
# git cdc @~ "2014-07-04 20:32:45" | |
#Reset commit before HEAD | |
#commit="$1" datecal="$2" | |
#temp_branch="temp-rebasing-branch" | |
#current_branch="$(git rev-parse --abbrev-ref HEAD)" |
#!/usr/bin/env bash | |
# Remove torrents from Transmission after a set number of days. | |
# Life cylce is: Incomplete -> Completed & Seeding -> Completed & removed for client | |
# In part based on: | |
# https://community.wd.com/t/guide-auto-removal-of-downloads-from-transmission-2-82/93156 | |
SERVER='192.168.0.29' | |
DAYS=21 | |
# Turn Days into Seconds | |
REMOVE_AFTER=`expr $DAYS \* 24 \* 60 \* 60` |