Skip to content

Instantly share code, notes, and snippets.

View Schm1tz1's full-sized avatar
๐Ÿ‡บ๐Ÿ‡ฆ
#StandWithUkraine

Roman Schmitz Schm1tz1

๐Ÿ‡บ๐Ÿ‡ฆ
#StandWithUkraine
View GitHub Profile
@burhan
burhan / openssl-cheat-sheet.sh
Created July 19, 2020 11:40
OpenSSL Cheat Sheet
# Generate new CSR and private key
openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key
# Generate new self-signed certificate
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout privateKey.key -out certificate.crt
# Generate a new CSR from existing private key
openssl req -out CSR.csr -key privateKey.key -new
# Generate new CSR from certificate (must have private key)
@egg82
egg82 / proxmox_nvidia.md
Last active May 1, 2025 20:08
NVidia Proxmox + LXC

Proxmox

Find the proper driver at the NVidia website.

Note: Make sure to select "Linux 64-bit" as your OS

Hit the "Search" button.

@tomdaley92
tomdaley92 / README.md
Last active April 26, 2025 17:01
Proxmox - SPICE Client setup for MacOS

Proxmox - SPICE client setup for MacOS

  1. Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.

    brew tap jeffreywildman/homebrew-virt-manager
    brew install virt-viewer
  2. Once that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface

@NAR8789
NAR8789 / dnsmasq.conf
Last active September 26, 2024 11:34
wildcard dns for docker-compose using dnsmasq
# explicitly define host-ip mappings
address=/myapp.local/172.16.1.2
# dnsmasq entries are always wildcard entries, so this maps both myapp.local and *.myapp.local
# (yes, it's fine for this to be your entire dnsmasq config. the defaults are pretty sensible)
@DennisFederico
DennisFederico / ksqldb-tutorial.md
Created August 4, 2022 17:06
KSQLDB Simple Tutorial with Confluent Cloud
tags: #ksqldb/tutorial

Provisioning ksqlDB Cluster

Cluster Data

environment=env-0x3135
@Blackshome
Blackshome / bathroom-humidity-exhaust-fan.yaml
Last active April 27, 2025 10:05
bathroom-humidity-exhaust-fan.yaml
blueprint:
name: Bathroom Humidity Exhaust Fan
description: >
# ๐Ÿšฟ Bathroom Humidity Exhaust Fan
**Version: 2.6**
Step into the future of freshness - customize it your way and experience the convenience of automated humidity control! ๐ŸŒฟ๐Ÿšฟ
@JeanOlivier
JeanOlivier / Daikin_PID.py
Created January 6, 2024 01:36
Home Assistant pyscript faikin Daikin PID
# Trying to do a PID for the daikin
#
# This is a WIP prototype. Only heating was tested.
# Using log.error because I can't seem to be able to find how to read other log levels.
from random import choices
ENABLED = True # Disabled if False. If true, the PID takes over when the Daikin is on.
target_temp = 22.5