Skip to content

Instantly share code, notes, and snippets.

View nghinv's full-sized avatar

NGUYEN VAN Nghi nghinv

  • ONVN
  • Ha Noi, Viet Nam
View GitHub Profile
@nghinv
nghinv / gitlogxml.sh
Created July 16, 2019 21:09 — forked from rhochreiter/gitlogxml.sh
Shell script to emulate the output of "svn log --verbose --xml" for git based on http://stackoverflow.com/questions/11093911/git-log-pretty-with-list-of-files?answertab=active#tab-top
#!/bin/sh
revlist=$(git rev-list HEAD)
(
echo '<?xml version="1.0"?>'
echo '<log>'
for rev in $revlist
do
echo "$(git log -1 --date=iso --pretty=format:"<logentry revision=\"%h\">%n<author>%an</author>%n<date>%ad</date>%n<msg>%s</msg>%n" $rev)"
files=$(git log -1 --pretty="format:" --name-only $rev)
echo '<paths>'
@nghinv
nghinv / how-to-ssh-agent.md
Created June 5, 2019 08:37 — forked from nepsilon/how-to-ssh-agent.md
Remember passphrases with ssh-agent — First published in fullweb.io issue #31

How to use ssh-agent to cache your SSH credentials?

Contributed by Fabien Loudet, Linux SysAdmin at Rosetta Stone

Tired of always having to enter your SSH key passphrase when logging in to remote machines? Here comes ssh-agent. Enter the passphrase once and it will keep it in memory for you

Using ssh-agent in your shell session:

@nghinv
nghinv / installDockerAndDockerCompose.sh
Created May 26, 2019 22:44 — forked from nghinguyenvan/installDockerAndDockerCompose.sh
Install Docker 1.13 and Docker-compose on ubuntu 16.04
#1.Install packages to allow apt to use a repository over HTTPS:
sudo apt-get install -y --no-install-recommends \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
#2.Add Docker official GPG key:
curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add -
## How to install mcrypt in php7.2
##
## https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
##
#
# Check version php and pecl
#
php -v # if default php is not 7.2 then use /usr/bin/php7.2 instead php
@nghinv
nghinv / self-signed-certificate-with-custom-ca.md
Created March 1, 2019 09:05 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@nghinv
nghinv / System Design.md
Created July 30, 2018 06:01 — forked from duongkai/System Design.md
System Design Cheatsheet

#System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

##Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@nghinv
nghinv / lecture_note.md
Created July 30, 2018 05:57 — forked from duongkai/lecture_note.md
CISSP lectures note

Day 2

Chapter 2. Asset

Change management

  • Change Management

    • Create Change Request
    • Submit to CAB (Change advisory board)
    • Review the CR and impact
    • Create rollback plan
  • Hacking lifecycle

@nghinv
nghinv / Example 1
Created June 15, 2018 15:33 — forked from alexpos/Example 1
Several examples how to use python-wordpress-xmlrpc to post to wordpress
from wordpress_xmlrpc import Client, WordPressPost
from wordpress_xmlrpc.methods.posts import NewPost
#authenticate
wp_url = "http://192.168.50.100:8051/xmlrpc.php"
wp_username = "admin"
wp_password = "12"
wp = Client(wp_url, wp_username, wp_password)
#post and activate new post
@nghinv
nghinv / .gitignore
Created August 23, 2017 05:19 — forked from karmi/.gitignore
Example Nginx configurations for Elasticsearch (https://www.elastic.co/blog/playing-http-tricks-nginx)
nginx/
!nginx/.gitkeep
!nginx/logs/.gitkeep
src/
tmp/
I have run an nginx container...
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
6d67de07731d nginx "nginx -g 'daemon ..." 40 minutes ago Up 40 minutes 80/tcp, 443/tcp epic_goldberg
I want to use Debian for debug:
docker run -it --pid=container:6d67de07731d --net=container:6d67de07731d --cap-add sys_admin debian
I can see the nginx process: