Navigation Menu

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 / 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
@ali2077
ali2077 / keybase.md
Created January 25, 2019 19:08
My KeyBase

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:

@ali2077
ali2077 / koding_docker_compose
Created January 28, 2019 14:55
The Simplest Way to Manage Your Entire Dev Infrastructure! AT http://localhost:8090
###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
@ali2077
ali2077 / Boot2Docker_ISO
Last active January 28, 2019 15:28
Boot2Docker is a lightweight Linux distribution made specifically to run Docker containers. It runs completely from RAM, is a ~45MB download and boots quickly.
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
@ali2077
ali2077 / youtube-dl_best_usage.txt
Last active January 28, 2019 15:34
Youtube-dl_best_usage: Productivity Tools
$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.)
@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 / 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 / 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'