Skip to content

Instantly share code, notes, and snippets.

View fresheed's full-sized avatar

Egor Namakonov fresheed

View GitHub Profile
@niw
niw / Vagrantfile
Last active May 19, 2024 18:06
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.
@aizquier
aizquier / emacs24.5_build_intructions.txt
Created April 14, 2016 00:14
Build emacs 24.5 in linux Mint
sudo apt-get remove \
emacs emacs24 emacs24-bin-common \
emacs24-common emacs24-common-non-dfsg emacsen-common
wget -c http://gnu.mirror.vexxhost.com/emacs/emacs-24.5.tar.xz
tar vxf emacs-24.5.tar.xz
cd emacs-24.5/
sudo apt-get install libxml2-dev libgtk-3-dev \
libtiff5-dev libgif-dev libXpm-dev libncurses-dev
./configure
make