| Summary | |
|---|---|
| Range | 2026-08-15 12:38:30 → 2026-08-15 13:44:00 |
| Duration | 1526.64s |
| Cached | 11,089,449 |
| Prompt | 56,807 (290.43 t/s) |
| Generated | 51,260 (40.48 t/s) |
| Drafted | 91.4% 33461/36617 |
Perf (top 10 fastest decode)
| Summary | |
|---|---|
| Range | 2026-08-15 12:38:30 → 2026-08-15 13:44:00 |
| Duration | 1526.64s |
| Cached | 11,089,449 |
| Prompt | 56,807 (290.43 t/s) |
| Generated | 51,260 (40.48 t/s) |
| Drafted | 91.4% 33461/36617 |
Perf (top 10 fastest decode)
| # yaml-language-server: $schema=https://raw.githubusercontent.com/mostlygeek/llama-swap/refs/heads/main/config-schema.json | |
| sendLoadingState: true | |
| models: | |
| "load-1s-A": | |
| cmd: build/fake-model -listen localhost:${PORT} -load 1s -tokens 50 -tps 25 | |
| "load-1s-B": | |
| cmd: build/fake-model -listen localhost:${PORT} -load 1s -tokens 50 -tps 25 | |
| "load-1s-C": | |
| cmd: build/fake-model -listen localhost:${PORT} -load 1s -tokens 50 -tps 25 |
| # ============================================ | |
| # ONE-TIME SETUP | |
| # ============================================ | |
| # --- On sandbox server --- | |
| mkdir -p ~/aperture | |
| cd ~/aperture | |
| git init | |
| git config receive.denyCurrentBranch updateInstead |
| {# ============================================================================ | |
| MACRO: render_extra_keys | |
| Renders any JSON keys not already handled into XML-style tags | |
| Adapted from: https://huggingface.co/ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF/blob/main/qwen3-coder-30b-a3b-instruct-q8_0.gguf | |
| ============================================================================ #} | |
| {% macro render_extra_keys(json_dict, handled_keys) %} | |
| {%- if json_dict is mapping %} | |
| {%- for json_key in json_dict if json_key not in handled_keys %} | |
| {%- if json_dict[json_key] is mapping %} | |
| {{- '\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | tojson | safe) ~ '</' ~ json_key ~ '>' }} |
These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
| tsidp/ | |
| ├── tsidp.go | |
| ├── internal/ | |
| │ ├── app/ // Core application logic and the idpServer struct. | |
| │ ├── crypto/ // Key generation, signing, and management. | |
| │ ├── handlers/ // All HTTP handlers and routing setup. | |
| │ ├── oidc/ // OIDC/OAuth2 specific types and metadata logic. | |
| │ ├── pkce/ // Self-contained PKCE validation logic. | |
| │ └── store/ // Data persistence for clients and tokens. | |
| └── ui/ // (Future) Stub for HTML/CSS/JS assets. |
| // The tsidp command is an OpenID Connect Identity Provider server. | |
| package main | |
| import ( | |
| "context" | |
| "errors" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net" |
| import { KeyboardAvoidingView, TextInput, StyleSheet, View } from "react-native"; | |
| import Animated, { useAnimatedKeyboard, useAnimatedStyle } from "react-native-reanimated"; | |
| import { Text } from "@/themes"; | |
| import { useState } from "react"; | |
| export default function Screen() { | |
| const [content, setContent] = useState(() => { | |
| return Array.from({ length: 100 }, (_, i) => `Line ${i + 1}`).join("\n"); | |
| }); | |
| const keyboard = useAnimatedKeyboard(); |
List all the reasons why supporting a child with a learning disability (or any sort of extra support needs) is so complicated.
Here is the combined list of reasons why supporting a child with a learning disability or extra support needs is complicated:
| # | |
| # Run "write sname game in $lang" with different llama-swap profiles and llama.cpp | |
| # greps logs for latest `eval time` | |
| # | |
| for model in "qwen-coder-32b-q4-nodraft" "qwen-coder-32b-q4" "qwen-coder-32b-q4-w-ctk"; do | |
| for lang in "python" "typescript" "swift"; do | |
| echo "Generating Snake Game in $lang using $model" | |
| curl -s --url http://localhost:8080/v1/chat/completions -d "{\"messages\": [{\"role\": \"system\", \"content\": \"you only write code.\"}, {\"role\": \"user\", \"content\": \"write snake game in $lang\"}], \"temperature\": 0.1, \"top_k\": 1, \"model\":\"$model\"}" > /dev/null | |
| curl -s --url http://localhost:8080/logs | grep 'eval time' | tail -n 2 |