Skip to content

Instantly share code, notes, and snippets.

View zzj0402's full-sized avatar

张梓径 zzj0402

  • University of Waikato
  • Hamilton, New Zealand
View GitHub Profile
@lorenadl
lorenadl / enabling-disabling-hyper-v-docker.md
Last active October 26, 2021 17:15
Enabling and disabling Hyper V Docker
@nboubakr
nboubakr / LZ78.py
Created December 30, 2014 23:15
Lampel-Ziv 78 (LZ78) implementation in Python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Lampel-Ziv 78 (LZ78)
# Théorie de l'information et du codage
# Etudiant: Boubakr NOUR <n.boubakr@gmail.com>
# Universite Djilali Liabes (UDL) de Sidi Bel Abbes
def compress(data):
dictionary, word = {0: ''}, 0
@jxson
jxson / README.md
Created February 10, 2012 00:18
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation