Skip to content

Instantly share code, notes, and snippets.

View serheang's full-sized avatar

Ser Heang serheang

View GitHub Profile
@caseywatts
caseywatts / 0-self-publishing.md
Last active October 5, 2024 11:27
Self-Publishing via Markdown
@niw
niw / Vagrantfile
Last active October 28, 2024 22:36
A simple Vagrantfile to setup Ubuntu desktop environment with Google Chrome and Japanese input
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.provider :virtualbox do |v|
v.gui = true
v.memory = 2048
end
# Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"`
# to make synced folder works.
@cybercypher
cybercypher / .bashrc
Last active September 14, 2022 11:49
mobaxterm and vagrant ssh
vagrant() {
if [[ $@ == "ssh" ]]; then
command vagrant ssh-config > vagrant-ssh-config && ssh -A -F vagrant-ssh-config default
else
command vagrant "$@"
fi
}