Just a blog to share my tricks, code snippets

Just a blog to share my tricks, code snippets

Saturday, December 23, 2017

Shamir's secret sharing scheme


Shamir's secret sharing is a threshold secret sharing scheme invented by Adi Shamir in his paper "How to share a secret" in 1979. In this scheme, a secret S is divided into n pieces in such a way that S is easily reconstructed from any k pieces (k < n) but even complete knowledge...

Thursday, November 9, 2017

An example of Github Rest API using Python


Suppose I want a python script to get some information of Customer IO's Github: How many total open issues are there across all repositories? Sort the repositories by date updated in descending order. Which repository has the most watchers? Github has an official REST API v3 document at HERE Here are some notes before jumping into the script. They are all stated in Github API's document but I...

Tuesday, September 26, 2017

Friday, September 22, 2017

Write a simple zip file password cracker with Python


In order to extract a zip file, Python provides a zipfile library which help us create, read write, append and list a zip file. However, It only supports ZipCrypto encryption. A complete guide about it is HERE So the idea is: - Read a file pw.txt that contains all passwords. -...

Thursday, August 31, 2017

Friday, June 30, 2017

Thursday, June 15, 2017

Enable SSH service for ESXi server


Login to the server using vShphere client Select the host --> Configuration tab --> Security Profile --> Properties in the Services part In the Services Properties dialog, select SSH and then click to Options In SSH (TSM-SSH) Options dialog, select...

Friday, June 2, 2017

Thursday, June 1, 2017

How to show the size of all folders on Mac OSX


Finder list view only shows size of the files, not folders by default. Below trick will help show all the size of folders: 1. Open Finder and change to list view ( View > as List) 2. Right click on the any empty space in the finder view and select Show View Options. 3....