Skip to content

Instantly share code, notes, and snippets.

View michael-pisman's full-sized avatar

Michael Pisman michael-pisman

View GitHub Profile
@michael-pisman
michael-pisman / Angular-Nextjs.md
Created March 11, 2025 08:18
This is a quick overview of 1-to-1 mapping of Angular's core and widely used third-party tools to their Next.js counterparts. This overview will cover aspects, including state management, API communication, authentication, testing, SSR, PWA support, and more.

Angular vs Next.js: Tooling and Features Comparison

This is a quick overview of 1-to-1 mapping of Angular's core and widely used third-party tools to their Next.js counterparts. This overview will cover aspects, including state management, API communication, authentication, testing, SSR, PWA support, and more.

State Management

Angular: Angular uses dependency injection and services to handle state. Components can share state via injectable services, often avoiding the need for a separate state library for simple cases (Angular & React - Diff of Services & Context API | ITNEXT). For more complex global state, Angular developers turn to NgRx (inspired by Redux), which leverages RxJS to manage a centralized store of state with actions and reducers. Other Angular state libraries like NGXS o

@michael-pisman
michael-pisman / microk8s_in_lxc.md
Last active June 11, 2023 09:07 — forked from acj/microk8s_in_lxc.md
Installing microk8s in an LXC container

Installing microk8s in an LXC container

I wanted to run Microk8s on a Proxmox 6 host inside of an LXC container. These are my notes from the journey.

  1. Create a privileged LXC container through the Proxmox web interface
  • Enable nesting and FUSE
    • In Proxmox UI, select container, then Options > Features > Check nesting and FUSE boxes
  1. SSH into the Proxmox host and edit the container's config in /etc/pve/lxc/.conf
    • Add the following lines
  • lxc.apparmor.profile: unconfined
@michael-pisman
michael-pisman / debian_migrate_pkglist.sh
Last active October 20, 2022 10:41
A few command to help migrate from old Ubuntu/Debian machine to a new one and reinstall all of the aptitude packages.
# On the old machine, create a list of all installed packages
apt list --installed 2>/dev/null | sed 's/\/.*//g > pkglist'
# On the new machine, Filter packages for those available
while read package; do apt show "$package" 2>/dev/null | grep -qvz 'State:.*(virtual)' && echo "$package" >>packages-valid && echo -ne "\r\033[K$package"; done <packages
# Install the available packages all at once
sudo apt install $(tr '\n' ' ' <packages-valid)
/* ==UserStyle==
@name 9/7/2022, 4:55:08 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Dracula theme for Debian Kernel Handbook.
@author mpisman
==/UserStyle== */
@-moz-document url-prefix("https://kernel-team.pages.debian.net/kernel-handbook/") {
/* Dracula Colors */
firewall {
all-ping enable
name LAN-LOCAL {
default-action accept
}
name LAN-WAN {
default-action accept
}
name LOCAL-LAN {
default-action accept
@michael-pisman
michael-pisman / pulseaudio_volume.py
Last active May 23, 2022 04:47
A Qtile widget to control volume of the default pulseaudio sink
#!/usr/bin/python3
from os import system
from os import path
import sys, subprocess
from libqtile.widget import base
from pulsectl import Pulse, PulseVolumeInfo
# Path to config file
DEFAULT_DEVICE = '/home/mpisman/.screenlayout/'
@michael-pisman
michael-pisman / xrandr_brightness.py
Last active March 18, 2025 08:23
A simple Qtile widget for controling display brightness with Xrandr
#!/usr/bin/env python3
"""
Brightness Control Widget for Qtile
This module provides a reusable brightness control widget for the Qtile window manager.
It uses the 'xrandr' command to adjust the screen brightness and stores the brightness level
in a configuration file. This file is located under the user's home directory in a folder
named ".screenlayout".
Requirements: