Apps you download:
- Alfred + dr dev and colors workflows
- Firefox
- adblock
- measure it
- web developer (for delete cookies from this domain)
- greasemonkey + user scripts (only work related ones atm)
- iTerm2
- Sequel Pro
- Dropbox
| function watchtest () { | |
| watchmedo shell-command -W -p "./$1/*;./tests/$1/*" -R -c "phpunit --config tests/phpunit_local.xml tests/$1" | |
| } |
| '.croc', '.dg', '.factor', '.fy', '.fancypack', '.io', '.lua', '.wlua', | |
| '.md', '.moon', '.pl', '.pm', '.py3tb', '.py', '.pyw', '.sc', | |
| 'SConstruct', 'SConscript', '.tac', '.sage', '.pytb', '.rb', '.rbw', | |
| 'Rakefile', '.rake', '.gemspec', '.rbx', '.duby', '.tcl', '.c-objdump', | |
| '.s', '.cpp-objdump', '.c++-objdump', '.cxx-objdump', '.d-objdump', | |
| '.s', '.S', '.ll', '.asm', '.ASM', '.objdump', '.adb', '.ads', '.ada', | |
| '.bmx', '.c', '.h', '.idc', '.cbl', '.CBL', '.cob', '.COB', '.cpy', | |
| '.CPY', '.cpp', '.hpp', '.c++', '.h++', '.cc', '.hh', '.cxx', '.hxx', | |
| '.C', '.H', '.cp', '.CPP', '.cu', '.cuh', '.pyx', '.pxd', '.pxi', '.d', | |
| '.di', '.pas', '.dylan-console', '.dylan', '.dyl', '.intr', '.lid', |
| ;;; init.el --- where all the magic begins | |
| ;; | |
| ;; turn off mouse interface early in startup to avoid momentary display | |
| ;; you really don't need these; trust me. | |
| (if (fboundp 'menu-bar-mode) (menu-bar-mode -1)) | |
| (if (fboundp 'tool-bar-mode) (tool-bar-mode -1)) | |
| (if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) | |
| ;; load path etc. |
| class CssTestGenerator < Hologram::Plugin | |
| attr :output_dir, :tests | |
| HTML_HEADER = <<-eos | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="stylesheet" href="/build/css/screen.css"> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Oh hai</title> | |
| <style> | |
| html { width: 100% } | |
| body { | |
| width: 600px; margin: auto; | |
| font-family: Helvetica, Arial, sans-serif; | |
| font-size: 24px; |
Apps you download:
| #Local dev site functions | |
| #find current directory in our list of sites | |
| function dev-find { | |
| pwd=$(pwd) | |
| for link in $(ls ~/.sites) | |
| do | |
| if [[ $pwd = $(readlink -f ~/.sites/$link) ]]; then | |
| echo $link |
| address=/dev/127.0.0.1 |
| upstream xip_app_server { | |
| server localhost:8080 fail_timeout=0; | |
| } | |
| server { | |
| listen 80; | |
| server_name "~^(?<base_dir>.+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.xip.io$"; | |
| access_log /var/log/nginx/xip.access.log main; | |
| error_log /var/log/nginx/xip.error.log; |
| upstream app_server { | |
| server localhost:8080 fail_timeout=0; | |
| } | |
| server { | |
| listen 80; | |
| server_name "~^(?<base_dir>.+)\.sim\.bz$"; | |
| if ($base_dir = "") { | |
| set $base_dir "."; | |
| } |