One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| ## update homebrew | |
| $ brew update | |
| ## install duti | |
| brew install duti | |
| ## sublimetext 3 default editor for plain text files | |
| duti -s com.sublimetext.3 public.plain-text all | |
| ## sublimetext 3 default editor for executable scripts |
| # Load NVM | |
| export NVM_DIR="$HOME/.nvm" | |
| . "/usr/local/opt/nvm/nvm.sh" | |
| # ls coloring etc. | |
| alias ls='ls -Ga' | |
| # Fix Perl locale | |
| export LC_CTYPE=en_US.UTF-8 | |
| export LC_ALL=en_US.UTF-8 |
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family: woman, woman, girl, girl", "shortname": ":woman_woman_girl_girl:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F467", "html": "👩‍👩‍👧‍👧", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family: woman, woman, girl, boy", "shortname": ":woman_woman_girl_boy:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F466", "html": "👩‍👩‍👧‍👦", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family: woman, woman, boy, boy", "shortname": ":woman_woman_boy_boy:", "unicode": "1F469 200D 1F469 200D 1F466 200D 1F466", "html": "👩‍👩‍👦‍👦", "category": "People & Body (family)", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family: man, woman, girl, girl", "shortname": ":man_woman_girl_girl:", "unicode": "1F468 200D 1F469 200D 1F467 200D 1F467", "html": "👨‍👩&z |
| #!/usr/local/bin/python | |
| # encoding: utf-8 | |
| """ | |
| *Tidy up Pinboard Tags* | |
| :Author: | |
| David Young | |
| :Date Created: | |
| November 8, 2017 |
| (* | |
| "DJ Jonny F's iTunes Repair" for iTunes | |
| written by Jonathan Feeke | |
| [email protected] | |
| *) | |
| --===========LIST OF DEFAULT VARIABLES===========-- | |
| property my_title : "DJ Jonny F's iTunes Repair" | |
| property myFileName : "" | |
| property newName : "" |
| javascript:location.href='bear://x-callback-url/add-text?title=URL-Grabber&mode=prepend&text='+encodeURIComponent('['+document.title+']('+location.href+")") |
git branch | grep feature/ | xargs git branch -D
Source: https://stackoverflow.com/questions/10610327/delete-all-local-git-branches
| function applicationWatcher(appName, eventType, appObject) | |
| if (eventType == hs.application.watcher.activated) then | |
| if (appName == "Finder") then | |
| -- Bring all Finder windows forward when one gets activated | |
| appObject:selectMenuItem({"Window", "Bring All to Front"}) | |
| end | |
| end | |
| end | |
| local appWatcher = hs.application.watcher.new(applicationWatcher) |