Skip to content

Instantly share code, notes, and snippets.

var amazon_assoc_ir_f_call_associates_ads = function(d) {
var b = "", c, a;
if (typeof JSON !== "undefined") {
a = JSON.stringify(d);
} else {
if (typeof amzn_assoc_utils !== "undefined") {
a = amzn_assoc_utils.stringify(d);
} else {
return;
}
@FlyTechVideos
FlyTechVideos / fontkiller.py
Created March 25, 2026 23:39
Script which modifies all fonts inside a given directory according to your desires. I can't think of any reasonable use cases for this.
#!/usr/bin/env python3
# The only requirement: fontTools (create venv, then pip install fontTools)
import os
from fontTools.ttLib import TTFont
from fontTools.pens.ttGlyphPen import TTGlyphPen
SOURCE_DIR = './fonts'
TARGET_DIR = './fonts_modified'

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:

竟0

淨零碳規劃管理師-初級能力鑑定 題庫整理

更新日期 2026/07/13

說明

本文彙整了「淨零碳規劃管理師-初級能力鑑定」113-115 年度的 782 題考古題,內容僅供參考,考試命題不一定會相同,請考生留意。

  • 使用方法:Ctrl + F 直接輸入題目關鍵字搜尋即可
@primaryobjects
primaryobjects / hotspot-keep-alive.ps1
Last active September 5, 2026 09:05
Script to Enable Windows 10 Mobile Hotspot Automatically After Reboot
# https://superuser.com/a/1434648
Add-Type -AssemblyName System.Runtime.WindowsRuntime
$asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0]
Function Await($WinRtTask, $ResultType) {
$asTask = $asTaskGeneric.MakeGenericMethod($ResultType)
$netTask = $asTask.Invoke($null, @($WinRtTask))
$netTask.Wait(-1) | Out-Null
$netTask.Result

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.

@emschwartz
emschwartz / README.md
Last active September 5, 2026 08:59
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@dmitry-osin
dmitry-osin / git-cheatsheet-rus.md
Created April 30, 2025 07:37
Шпаргалка по Git

Шпаргалка по Git

Git - это распределённая система контроля версий, которая позволяет отслеживать изменения в файлах, сотрудничать с другими разработчиками и управлять историей проекта.

Основные концепции Git

Репозиторий

Репозиторий (repository) - это хранилище вашего проекта вместе с историей изменений.

package ui_playground
import k2 "karl2d"
import "core:strings"
import "core:unicode/utf8"
COLOR_MAIN_BG :: k2.Color { 22, 22, 22, 255 }
COLOR_PANEL_BG :: k2.Color { 44, 44, 44, 255 }
COLOR_LINES :: k2.Color { 144, 144, 144, 255 }
COLOR_CONTROL_BG :: k2.Color { 44, 44, 44, 255 }