Skip to content

Instantly share code, notes, and snippets.

View josfam's full-sized avatar
:octocat:
Getting familiar with signals in React

Joseph Amukun josfam

:octocat:
Getting familiar with signals in React
View GitHub Profile
@josfam
josfam / how_to_install_poetry_for_python_on_ubuntu_linux.md
Last active December 23, 2025 17:14
How to install poetry for python on Ubuntu (and other Debian-based distros).

How to install poetry for python on Ubuntu (and other Debian-based distros).

Update the package list

sudo apt update

Install curl

  • Install curl if you don't have it already
@josfam
josfam / how_to_install_node_with_nvm_on_ubuntu_linux.md
Last active December 22, 2025 14:21
How to install nodejs with nvm on Ubuntu (and other Debian-based distros).

How to install nodejs with nvm on Ubuntu (and other Debian-based distros).

update the package list

sudo apt update

Download with curl and run the nvm installation script

  • Install curl if you don't have it already
@josfam
josfam / how_to_install_python_from_source_on_ubuntu_linux.md
Last active December 22, 2025 14:07
How to install python from source on linux (Ubuntu-based example)

How to install python from source on on Ubuntu (and other Debian-based distros).

Note:

  • I will use Python 3.10.19 for this example. Feel free to replace it with your preferred version.
  • Python will be installed alongside the existing version already present in your system (i.e. It will not overwrite the default python3 binary).

Steps

@josfam
josfam / how_to_install_postgresql_on_ubuntu_linux.md
Last active December 22, 2025 14:09
How to install postgresql on linux (Ubuntu example)

How to install postgresql on on Ubuntu (and other Debian-based distros).

  • update the package list
sudo apt update
  • Install development libraries
sudo apt install -y libpq-dev python3-dev
@josfam
josfam / rock_paper_scissors_part1.py
Last active June 8, 2023 13:39
Accompanying code for Advent of Code 2022 Day 2: Rock Paper Scissors Medium article
sample_input = """
A Y
B X
C Z
""".strip().splitlines()
# rock, paper, scissors information from our perspective
stats = {
'X': {'score': 1, 'beats': 'C', 'beaten by': 'B', 'draws with': 'A'},
'Y': {'score': 2, 'beats': 'A', 'beaten by': 'C', 'draws with': 'B'},
@josfam
josfam / calorie_counting_part2.py
Created June 5, 2023 10:40
Accompanying code for Advent of Code 2022 Day 1: Calorie Counting Medium article
sample_input = """
1000
2000
3000
4000
5000
6000
@josfam
josfam / calorie_counting_part1.py
Last active June 5, 2023 10:39
Accompanying code for Advent of Code 2022 Day 1: Calorie Counting Medium article
sample_input = """
1000
2000
3000
4000
5000
6000
@josfam
josfam / ICT-job-fair-2022-notes.md
Last active August 14, 2022 13:04
Makerere ICT Job Fair 2022 event recap

Inaugural ICT job Fair (in partnership with Huawei), held at Makerere University Uganda


Notes taken by student representatives from Cavendish University Uganda


9:30 AM (intro and pre-main event)