$ pacman -S rsync
$ cargo install cargo-remote
$ nano ~/.config/cargo-remote/cargo-remote.toml [[remote]]
name = "remote-server"
host = "mod@ml"| #!/bin/bash | |
| UNIT_NAME="antigravity-$(date +%s)" | |
| APP_BIN="/usr/bin/antigravity" | |
| TRIGGER="Extension host with pid" | |
| echo "[*] Start as: $UNIT_NAME" | |
| # Build the command with all arguments properly quoted | |
| if [ $# -eq 0 ]; then | |
| # No arguments provided |
$ pacman -S rsync
$ cargo install cargo-remote
$ nano ~/.config/cargo-remote/cargo-remote.toml [[remote]]
name = "remote-server"
host = "mod@ml"| import json | |
| import random | |
| import string | |
| from faker import Faker | |
| fake = Faker() | |
| # Configuration | |
| OUTPUT_FILE = "json_password_train.jsonl" | |
| NUM_SAMPLES = 10000 # Higher count helps the model learn the JSON structure perfectly |
| #!/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. | |
| """ |
| #!/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:
| 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); | |
| } |
| #!/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)" |