- Lastpass
- Dash
- Sourcetree or Smartgit for Linux/Windows
- [iTerm2 & Tmux] (https://gitlab.com/gnachman/iterm2/wikis/TmuxIntegration)
- Slack
- CircleCI CCMenu/BuildNotify/CCtray
- Git client
- Heroku Toolbelt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Copyright (c) 2012 Eric Windisch <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
processor : 0 | |
vendor_id : GenuineIntel | |
cpu family : 6 | |
model : 23 | |
model name : Intel(R) Core(TM)2 Duo CPU T6500 @ 2.10GHz | |
stepping : 10 | |
microcode : 0xa0b | |
cpu MHz : 1600.000 | |
cache size : 2048 KB | |
physical id : 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# A simple python script to list duplicate files for a given path | |
# This is useful to find music, videos, pictures etc that may have different names or locations but same content. | |
# Usage: $python find_dupes.py <windows or unix path> | |
# http://www.webmastersupport.com | |
__author__ = 'abhishek.dujari' | |
import os | |
import sys | |
import hashlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolver 8.8.8.8; | |
location /video/ { | |
if ($request_uri ~ "^/video/(.+?)/.+") { | |
set $upstream_host $1.googlevideo.com; | |
add_header Content-Disposition "attachment; filename=video.mp4;"; | |
} | |
rewrite /video/.+?/(.+)$ /$1 break; | |
proxy_buffering off; | |
proxy_pass https://$upstream_host; | |
proxy_set_header Host $upstream_host; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0069.71] Log: === Critical error: === | |
Fatal error! | |
Address = 0xab14736d (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab147c14 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab14bb74 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab168170 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab15ab65 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab168170 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] | |
Address = 0xab15ab65 (filename not found) [in F:\kf2-server\Binaries\win64\KFServer.exe] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assuming you are using rbenv | |
#ensure right ruby version 2.3.0 in my case | |
rbenv version | |
mkdir projects | |
cd projects | |
#create a Gemfile by hand and then bundle install. use the basic template to start | |
wget https://gist.githubusercontent.com/abshkd/92c76ec570d6821dce1ac28c2de8073e/raw/3ea01c79d607d2dd1f370971cd5f57b23cb6d436/Gemfile | |
bundle install | |
rails new my_project --skip-test-unit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#From https://gist.github.com/abshkd/92c76ec570d6821dce1ac28c2de8073e | |
source 'https://rubygems.org' | |
ruby '2.3.0' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.7' | |
# Use sqlite3 as the database for Active Record | |
gem 'sqlite3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.7' | |
# Use sqlite3 as the database for Active Record | |
gem 'sqlite3' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 5.0' | |
# Use Uglifier as compressor for JavaScript assets |
OlderNewer