Skip to content

Instantly share code, notes, and snippets.

View iketiunn's full-sized avatar

ike iketiunn

View GitHub Profile
@iketiunn
iketiunn / no-ip-setting.md
Last active July 3, 2024 15:13
no-ip on Linux machine

After create a account on no-ip.com

Dynamic DNS Update Client (DUC) for Linux

wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
tar vzxf noip-duc-linux.tar.gz
cd noip-2.1.9-1
make
sudo make install
@iketiunn
iketiunn / commands.md
Last active June 30, 2016 08:56
Some useful cli commands

Parse json with python

λ curl http://somewhere/data.json | python -m json.tool

Search file by content

Search dir . with conetent partten abc and files with *.php

λ grep --include=\*.php -rnw . -e "abc" 
@iketiunn
iketiunn / .gitconfig
Last active July 8, 2024 05:39
git/git-snippet/git-flow/
[color]
ui = true
[core]
editor = vim
excludesfile = ~/.gitignore_global
[alias]
cm = commit -m
co = checkout
st = status
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit