- Enable MELPA. Add to
~/.emacs
;
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
- Install Elpy. In Erun x package-install elpy .
# Setting up a Raspberry Pi as a bridged wireless access point | |
# https://www.raspberrypi.org/documentation/configuration/wireless/access-point-bridged.md | |
# Update | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Disable bluetooth | |
https://gist.github.com/vicente-gonzalez-ruiz/a330f19fda79d8e4b818204d5224c8f0 |
# Activated device? By default, the RPi has the bluetooth activated. | |
# Activated service? | |
systemctl status bluetooth | |
# Pair a device | |
sudo bluetoothctl | |
scan on | |
pair <the listed device> | |
quit |
sudo apt-get install ssh # Possiblely already done | |
sudo systemctl enable ssh | |
sudo systemctl start ssh |
wget https://downloads.raspberrypi.org/raspbian_lite_latest | |
# Boot and login (pi, raspberry). | |
# Configure keyboard | |
sudo dpkg-reconfigure keyboard-configuration | |
sudo setupcon |
# Compile https://aur.archlinux.org/packages/kindlegen/ | |
# Download and: | |
makepkg -s | |
# Convert | |
kindlegen book.epub -o book.mobi | |
# Send the file using <user>@kindle.com |
~/.emacs
;(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
# https://realpython.com/emacs-the-best-python-editor/ | |
# https://melpa.org/#/getting-started | |
cat > $HOME/.emacs << EOF | |
;; =================================== | |
;; MELPA Package Support | |
;; =================================== | |
;; Enables basic packaging support | |
(require 'package) |
# https://snapcraft.io/install/retroarch/manjaro#install | |
sudo pacman -S snapd | |
sudo systemctl enable --now snapd.socket | |
sudo ln -s /var/lib/snapd/snap /snap | |
sudo snap install retroarch | |
retroarch | |
# Install cores | |
# Remove | |
sudo snap remove retroarch |
retroarch -v -L ./snap/retroarch/current/.config/retroarch/cores/mame2003_libretro.so recalbox/roms/mame/A/atetris.zip |
# mkdir recalbox | |
sudo mount -t cifs //recalbox.local/share recalbox/ -o user=samba,password=password,uid=1000,gid=1001,rw |