Skip to content

Instantly share code, notes, and snippets.

View SumitBando's full-sized avatar

Sumit Bando SumitBando

View GitHub Profile
@SumitBando
SumitBando / Install python 3.11 on Debian 5
Last active November 23, 2022 16:37
Install python 3.11 on Debian 5
# check current
$ python3 --version
Python 3.9.2
$ sudo apt-get install -y --no-install-recommends software-properties-common wget build-essential pkg-config zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
$ wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz
$ tar -xf Python-3.11.0.tar.xz
$ cd Python-3.11.0
$ ./configure --enable-optimizations
$ make
@SumitBando
SumitBando / AlpineToSvelte.md
Last active February 28, 2024 11:45
Tried to use a web page template in a SvelteKit project, unexpectedly found some Alpine.js embedded. Here was the translation.
Original AlpineJS Svelte Translation Explanation