Skip to content

Instantly share code, notes, and snippets.

View andersonaguiar's full-sized avatar
🎯

Anderson Aguiar andersonaguiar

🎯
View GitHub Profile
@andersonaguiar
andersonaguiar / Custom.css
Created October 17, 2012 02:12 — forked from bentruyman/Custom.css
IR_Black Theme for Chrome Developer Tools
/**********************************************/
/*
/* IR_Black Skin by Ben Truyman - 2011
/*
/* Based on Todd Werth's IR_Black:
/* http://blog.toddwerth.com/entries/2
/*
/* Inspired by Darcy Clarke's blog post:
/* http://darcyclarke.me/design/skin-your-chrome-inspector/
/*
@andersonaguiar
andersonaguiar / gulpfile.js
Created June 30, 2016 02:41 — forked from ahmadawais/gulpfile.js
Gulp: Useing ngrok with BrowserSync
// first run npm install ngrok - then put var ngrok = require('ngrok'); at the top of your gulpfile
var ngrok = require('ngrok');
var browserSync = require('browser-sync')
browserSync({
server: "./app"
}, function (err, bs) {
ngrok.connect(bs.options.get('port'), function (err, url) {
// https://757c1652.ngrok.com -> 127.0.0.1:8080
});
});
@andersonaguiar
andersonaguiar / .zshrc
Created February 13, 2018 13:05 — forked from dimitardanailov/.zshrc
My personal zsh and tmux configurations
# Path to your oh-my-zsh installation.
export ZSH=/Users/dimitar.danailov/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
# ZSH_THEME="robbyrussell"
ZSH_THEME="agnoster"

Java Multi-versions

This tutorial is specific to OSX users currently. I haven't tested it anywhere else. If you can help in writing for other environments, please do contribute.

Install Homebrew cask

brew update
brew tap caskroom/cask
brew install brew-cask-completion
brew tap caskroom/versions