Skip to content

Instantly share code, notes, and snippets.

@codingforentrepreneurs
codingforentrepreneurs / README.md
Created September 11, 2026 15:39
Global Hack Week - Workshop 01 - Time Series Data

Sensor Lab — Getting Started with Tiger Data

Workshop 01, Global Hack Week. Justin Mitchel, Coding for Entrepreneurs. With thanks to Tiger Data.

A small FastAPI app that writes machine readings into a TimescaleDB hypertable and buckets them over time. Copy the blocks below in order.

1 · Create the project

@vpnpassi
vpnpassi / basics.html
Last active September 12, 2026 05:52
[HTML5] #html5 #basics
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Titel</title>
</head>
<body>
</body>

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@mikaeldui
mikaeldui / CachyOS Kernel for Fedora with Secure Boot.md
Last active September 12, 2026 05:45
CachyOS Kernel for Fedora with Secure Boot

image

CachyOS Kernel for Fedora with Secure Boot

Did you just install kernel-cachyos and got hit by bad shim signature when booting? Me too. This is how I fixed it.

First, make sure you have Secure Boot with mokutil --sb-state.

Note, there's a second way of doing this by using sbctl, but I didn't want to wipe my Secure Boot keys.

Need help? Feel free to leave a comment below, contact me (@mikaeldui) on the CachyOS Discord, or send me an email.

@zsoumya
zsoumya / snagittrialfix.cmd
Created July 12, 2019 01:30
Reset Snagit Trial
@echo off
echo Deleting HKEY_CLASSES_ROOT\dacdchfile ...
reg delete HKEY_CLASSES_ROOT\dacdchfile /f
echo Deleting HKEY_CLASSES_ROOT\tigans ...
reg delete HKEY_CLASSES_ROOT\tigans /f
@ZEROF
ZEROF / Update MyAddr.tools DNS Entries.md
Created June 23, 2024 21:53
myaddr.tools DNS update script and setting with systemd

myaddr.tools

A minimalist dynamic DNS service

Features

  1. No ads, no tracking, no nonsense
  2. Get a name in seconds, no account required
  3. Easy, forgiving HTTP-based API
  4. Multiple domains (all resolve the same): - your-name.myaddr.tools - your-name.myaddr.dev (on the HSTS preload list)
@remarkablemark
remarkablemark / gb-to-mb-conversion-table.md
Last active September 12, 2026 05:36
GB to MB Conversion Table
Gigabytes (GB) Megabytes (MB) decimal Megabytes (MB) binary
1 GB 1,000 MB 1,024 MB
2 GB 2,000 MB 2,048 MB
3 GB 3,000 MB 3,072 MB
4 GB 4,000 MB 4,096 MB
5 GB 5,000 MB 5,120 MB
6 GB 6,000 MB 6,144 MB
7 GB 7,000 MB 7,168 MB
8 GB 8,000 MB 8,192 MB