I was taking notes while watching the following video.
Mouseless Development with IdeaVim - Miguel Beltran - Berlindroid
I recommend visiting The repo Miguel Beltran has made for the talk.
I was taking notes while watching the following video.
Mouseless Development with IdeaVim - Miguel Beltran - Berlindroid
I recommend visiting The repo Miguel Beltran has made for the talk.
| #if UNITY_EDITOR | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Reflection; | |
| public class EditorFontSize : EditorWindow | |
| { | |
| // enable resize on launch to set a default font size , using this option will disable the ability to have the window accassible |
If you are an Oh-my-zsh user, see the Laravel 5 plugin
For the rest of us Bash users, all of the Laravel Artisan autocomplete solutions out there require installing a composer package to get a list of artisan commands. Turns out this isn't really necessary. Simply add the provided code in ~/.bash_profile ( or similarly sourced file ) and you'll get artisan command tab completes on any project on your system.
_artisan()
{
COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
COMMANDS=`php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"`
COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)| # ------------------------------------ | |
| # Docker alias and function | |
| # ------------------------------------ | |
| # Get latest container ID | |
| alias dl="docker ps -l -q" | |
| # Get container process | |
| alias dps="docker ps" |
| curl -i https://api.github.com/repos/scrooloose/nerdtree/forks |grep -e "git_url" |awk '{gsub(/,/,"");split($2,a,"/"); system("mkdir "a[4]"; cd "a[4]"; git clone " $2);}' |