Skip to content

Instantly share code, notes, and snippets.

View binalfew's full-sized avatar

Binalfew Kassa binalfew

  • Vintage Solutions
  • Addis Ababa, Ethiopia
  • X @binalfew
View GitHub Profile
@binalfew
binalfew / WindowsTerminal.md
Created January 17, 2021 17:51 — forked from dahlsailrunner/WindowsTerminal.md
Customization and Setup notes for Windows Terminal
@binalfew
binalfew / t.sh
Created April 8, 2016 14:59 — forked from wesbos/t.sh
# Put this in your .zshrc or .bashrc file
# Install `tree` first — brew install tree
function t() {
# Defaults to 3 levels deep, do more with `t 5` or `t 1`
# pass additional args after
tree -I '.git|node_modules|bower_components|.DS_Store' --dirsfirst --filelimit 15 -L ${1:-3} -aC $2
}
@binalfew
binalfew / material.vim
Created January 25, 2016 14:27
Vim color scheme, base on Material Theme
" Add this to .vimrc :
" ====================
" set nocompatible
" set t_Co=256
" set background=dark
" colorscheme material
" ====================
"
" Material Theme (https://github.com/equinusocio/material-theme)
" Scheme: Mattia Astorino
<?php
namespace App\Http\Controllers\Auth;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class AuthController extends Controller