Skip to content

Instantly share code, notes, and snippets.

View periface's full-sized avatar

Alan Torres periface

View GitHub Profile
@periface
periface / Ionic Android Development on WSL2.md
Created August 19, 2025 18:05 — forked from samuelyee/Ionic Android Development on WSL2.md
Ionic Android Development on WSL2 (Windows Subsystem for Linux)

Ionic Android Development on WSL2

This setup is assuming that GUI Linux apps can run in your WSL2.

Installing the required software

Execute the following commands to install Node, npm, git, Java, Ionic CLI:

cd ~
sudo apt update
sudo apt upgrade
@periface
periface / Ionic Android Development on WSL2.md
Created August 19, 2025 18:05 — forked from samuelyee/Ionic Android Development on WSL2.md
Ionic Android Development on WSL2 (Windows Subsystem for Linux)

Ionic Android Development on WSL2

This setup is assuming that GUI Linux apps can run in your WSL2.

Installing the required software

Execute the following commands to install Node, npm, git, Java, Ionic CLI:

cd ~
sudo apt update
sudo apt upgrade
@periface
periface / Build VIM with python3
Created November 25, 2023 23:42 — forked from lv10/Build VIM with python3
Install Vim 8 with Python, Python 3 support on Ubuntu 20.04
# make sure you don't have any soon to be forgotten version of vim installed
$ sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-gui-common
# Install Deps
$ sudo apt-get install build-essential cmake
$ sudo apt-get install python3-dev
#Optional: so vim can be uninstalled again via `dpkg -r vim`
$ sudo apt-get install checkinstall