Skip to content

Instantly share code, notes, and snippets.

View ali2077's full-sized avatar
🏠
Working from home

ali2077 ali2077

🏠
Working from home
View GitHub Profile
@ali2077
ali2077 / init.vim
Created March 19, 2019 14:42 — forked from keiththomps/init.vim
CoderJourney neovim config
call plug#begin('~/.config/nvim/plugged')
function! DoRemote(arg)
UpdateRemotePlugins
endfunction
Plug 'Shougo/deoplete.nvim', { 'do': function('DoRemote'), 'tag': '*' }
let g:deoplete#enable_at_startup = 1
Plug 'AndrewRadev/splitjoin.vim'
@ali2077
ali2077 / systemctl.md
Created January 30, 2019 00:16 — forked from adriacidre/systemctl.md
Systemctl Cheatsheet

Service Management

Starting and Stopping Services

Starting

sudo systemctl start application.service

or simply

sudo systemctl start application
@ali2077
ali2077 / docker-help.md
Created January 28, 2019 19:19 — forked from shihabbinali/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@ali2077
ali2077 / golang_on_rpi.md
Created May 6, 2018 13:02 — forked from konradko/golang_on_rpi.md
Install Golang 1.7 on Raspberry Pi
wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz
tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin