View init.vim
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
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' |
View systemctl.md
Service Management
Starting and Stopping Services
Starting
sudo systemctl start application.service
or simply
sudo systemctl start application
View docker-help.md
Docker Commands, Help & Tips
Show commands & management commands
$ docker
Docker version info
View youtube-dl_best_usage.txt
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
$youtube-dl ....... | |
--prefer-ffmpeg | |
--skip-download | |
--embed-thumbnail | |
--skip-download Do not download the video | |
Download only the videos uploaded in the last 6 months | |
$youtube-dl --dateafter now-6months --add-metadata (https://soundcloud. youtube. etc.) |
View Boot2Docker_ISO
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
Boot2Docker | |
Build Status | |
################ | |
## | |
## | |
## The ISO can be downloaded here. | |
## https://github.com/boot2docker/boot2docker/releases | |
Features | |
Recent Linux Kernel, Docker pre-installed and ready-to-use |
View koding_docker_compose
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
###https://github.com/koding/koding | |
#Koding | |
#Docker Pulls | |
#The Simplest Way to Manage Your Entire Dev Infrastructure! | |
#Koding is a development platform that orchestrates your dev environment. Developers get everything they need to spin up full-stack, project-specific environments in seconds. Share them, update them, and manage infrastructure from a simple interface. | |
#Quick Start with Docker-Compose |
View keybase.md
Keybase proof
I hereby claim:
- I am ali2077 on github.
- I am ahmedali1 (https://keybase.io/ahmedali1) on keybase.
- I have a public key whose fingerprint is F3B6 2818 7EED 0A4F 626C F21A C8B0 29D9 F52D 289F
To claim this, I am signing this object:
View golang_on_rpi.md
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