Skip to content

Instantly share code, notes, and snippets.

View gbraad's full-sized avatar
🇳🇱
Working from home

Gerard Braad gbraad

🇳🇱
Working from home
View GitHub Profile
@gbraad
gbraad / README.md
Last active June 7, 2025 12:31
Buy Me a Coffee

Buy Me a Coffee

Using inlined HTML

Buy Me A Coffee

<a href="https://www.buymeacoffee.com/gbraad" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
@gbraad
gbraad / README.md
Last active May 28, 2025 17:09
Proxy-ing requests in Go

Go HTTP Proxy

Run

$ ./proxy -proto http

Test

@gbraad
gbraad / README.md
Last active May 18, 2025 13:11
Compiling `crc` using a notebook

Compiling crc using a notebook

This is just an insightful gist that shows how I automate some tasks.

More information can be found in the repository gbraad-dotfiles/notebooks.

@gbraad
gbraad / README.md
Last active May 18, 2025 06:27
my environment

My environment using notebooks

@gbraad
gbraad / README.md
Last active May 18, 2025 05:41
PsNee, an open source stealth modchip for the Sony Playstation 1

Installation of the 12c508/9 "Stealth" Mod

for a PU-18 PlayStation


This document is applicable to the stealth mod chip available from PS-Mod Solutions after 99.1.25. It is not guaranteed to work on chips currently available from any other vendor.



@gbraad
gbraad / README.md
Last active April 20, 2025 10:31
Tailscale + RDP on GitHub Windows runners

Tailscale + RDP on GitHub Windows runners

Since tailscale/github-action#157 (comment) it should be possible to use a Windows runner with Tailscale. To test, I'll try to set up an RDP environment.

name: Window RDP
@gbraad
gbraad / README.md
Last active March 27, 2025 11:44
Test shared configuration
name: 'Shared Configuration'
description: 'Fetch configuration parameters from a shared .ini file and export as environment variables'
author: 'gbraad'
inputs:
  config_repo:
    description: 'URL of the repository containing the configuration file'
    required: true
  config_file:
    description: 'Path to the configuration file in the repository'

HTML support

<h1 align="center">HTML support</h1>

MarkDown with HTML support?

Check for available port

port=8006;
while grep -q :${port} <<< $(ss -tunalp); do
  port=$(( port + 1 ))
done
echo "Using Port: ${port}"