Skip to content

Instantly share code, notes, and snippets.

View canhdoan's full-sized avatar
🏠
ᑕᗩᑎᕼ ᗪOᗩᑎ

Thanh Canh canhdoan

🏠
ᑕᗩᑎᕼ ᗪOᗩᑎ
View GitHub Profile
----
## XFCE Desktop ##
----
# How to install XFCE Desktop Environment in Kali Linux:
Code:
```apt-get install kali-defaults kali-root-login desktop-base xfce4 xfce4-places-plugin xfce4-goodies```
# How to remove XFCE in Kali Linux:
Code:
@canhdoan
canhdoan / API.md
Created December 24, 2018 03:47 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@canhdoan
canhdoan / install-docker.sh
Created August 30, 2018 07:10
Install Docker on WSL
# Updated with stable channel, version and ZSH
# https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly
# Environment variables you need to set so you don't have to edit the script below.
DOCKER_CHANNEL=stable
DOCKER_COMPOSE_VERSION=1.18.1
# Update the apt package index.
sudo apt-get update
# Install packages to allow apt to use a repository over HTTPS.
@canhdoan
canhdoan / bash-cheatsheet.sh
Created February 7, 2017 07:38 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04