White Paper - Draft v1.0
Date: October 2025
Status: Concept Proposal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| JSON with Comments editor - Edit JSON files with comments | |
| Usage: | |
| ./jsonc <file> - Edit JSON with comments in your editor | |
| cat <file> - View clean JSON without comments | |
| The tool stores comments in a .jsonc file and maintains clean JSON in the original file. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## Play one random movie from before 2008 | |
| #./play_random_movie_by_year.sh 2008 | |
| ## Play ALL movies from before 2008 in random order | |
| #./play_random_movie_by_year.sh 2008 --playlist=true | |
| # Default configuration | |
| MOVIE_DIR="HD" |
Niniejszy dokument proponuje wprowadzenie nowego słowa "lingua" do polskiej lingui jako alternatywy dla dwuznacznego słowa "język". Zmiana ta ma na celu uporządkowanie terminologii i zwiększenie precyzji komunikacji w kontekście systemów lingualnych.
W polskiej lingui słowo "język" posiada dwa fundamentalnie różne znaczenia:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import FFT from "fft.js"; | |
| function hzToMel(hz: number): number { | |
| return 2595 * Math.log10(1 + hz / 700); | |
| } | |
| function melToHz(mel: number): number { | |
| return 700 * (Math.pow(10, mel / 2595) - 1); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # chmod +x /usr/local/bin/yayc | |
| # Config | |
| CONTAINER_NAME="aur-builder" | |
| CONTAINER_DIR="/var/lib/machines/$CONTAINER_NAME" | |
| PKG_OUT="/var/cache/aur-builder" # here are .zst packages | |
| HOST_USER="$(id -un)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const AppAiTest = () => { | |
| const generateAI = async (prompt) => { | |
| const res = await fetch("http://localhost:11434/api/generate", { | |
| method: "POST", | |
| headers: { | |
| "Content-Type": "application/json", | |
| }, | |
| body: JSON.stringify({ | |
| model: "gemma3:latest", | |
| prompt: prompt, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| # Make this file executable: chmod +x .git/hooks/prepare-commit-msg | |
| echo "Running prepare-commit-msg hook" | |
| COMMIT_MSG_FILE="$1" | |
| # Get the staged diff | |
| DIFF=$(git diff --cached) | |
| # Generate a summary with ollama CLI and gemma3 model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ping -c 1 ipv4.google.com | grep -oP 'time=\K[0-9.]+ ms' |
NewerOlder