How I can turn off HyperV Container features so that I can use Virtual Box and then turn them back on to use Docker for Windows
You can do below to disable:
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype off
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Lampel-Ziv 78 (LZ78) | |
# Théorie de l'information et du codage | |
# Etudiant: Boubakr NOUR <[email protected]> | |
# Universite Djilali Liabes (UDL) de Sidi Bel Abbes | |
def compress(data): | |
dictionary, word = {0: ''}, 0 |
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.)
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.