This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
complete -o default -o nospace -W "$(/usr/bin/env ruby -ne 'puts $_.split(/[,\s]+/)[1..-1].reject{|host| host.match(/\*|\?/)} if $_.match(/^\s*Host\s+/);' < $HOME/.ssh/config)" scp sftp ssh | |
export PATH=$PATH:/Applications/MAMP/Library/bin | |
export PATH=$PATH:/Applications/sshfs/bin | |
export PATH=$PATH:/home/josh/bin | |
export CLICOLOR=cons25 | |
## | |
# Your previous /Users/joshbeauregard/.profile file was backed up as /Users/joshbeauregard/.profile.macports-saved_2011-01-26_at_16:11:54 | |
## |
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
SILENT = ENV['SL_SILENT'] =~ /false/i ? false : true || true | |
VERSION = '2.2.23' | |
# SearchLink by Brett Terpstra 2015 <http://brettterpstra.com/projects/searchlink/> | |
# MIT License, please maintain attribution | |
require 'net/https' | |
require 'uri' |
#!/usr/bin/ruby | |
# encoding: utf-8 | |
# | |
# Updated 2017-10-25: | |
# - Defaults to large size (512) | |
# - If ImageMagick is installed: | |
# - rounds the corners (copped from @bradjasper, https://github.com/bradjasper/Download-iTunes-Icon/blob/master/itunesicon.rb) | |
# - replace original with rounded version, converting to png if necessary | |
# | |
# Retrieve an iOS app icon at the highest available resolution |
# Load DSL and Setup Up Stages | |
require 'capistrano/setup' | |
# Includes default deployment tasks | |
require 'capistrano/deploy' | |
# Custom tasks | |
require 'capistrano/composer' | |
require 'capistrano/npm' |
(* Instant Search for LaunchBar by Brett Terpstra | |
Requires SearchLink installed in ~/Library/Services (http://brettterpstra.com/projects/searchlink/) | |
Load the service in LaunchBar and type Space. Enter text, optionally starting with a SearchLink !arg | |
to define the desired search engine. (You do not need the "!!" at the end to specify only url). | |
The link will be returned, pressing Enter will open it. ⌘C will copy. | |
*) | |
on handle_string(message) | |
set _chars to reverse of characters of message |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
/home/username
..bashrc
file in same directory by adding alias composer='/usr/local/php56/bin/php-cli ~/composer.phar'
line. Update php56
part to current relevant version, if necessary.source ~/.bashrc
to reload config.composer
command!