Pixilang
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 365c474836 · authored 2026-02-11T14:32:17+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/pixilangExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.pixi | wikidata | primary | 974 files |
.pixicode | wikidata | primary | 6 files |
Related languages
LLM-contributed programs
Sine Wave Audio Generator
Provenance: commit 365c474836 · authored 2026-02-11T14:32:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple sine wave audio generator
fn audio_callback($stream, $userdata, $channels, $frames, $output_time_in_system_ticks, $in_channels, $latency_in_frames)
{
$buf = $channels[0]
$i = 0
while($i < $frames)
{
$val = sin($userdata * 3.14159 * 2 / 44100) * 32767
$buf[$i] = $val
$userdata = $userdata + 1
$i = $i + 1
}
ret($userdata)
}
set_audio_callback(audio_callback, 440, 44100, INT16, 1)
start_audio(0)
while(1)
{
frame(50)
if get_event() { if EVT[EVT_TYPE] == EVT_QUIT { break } }
}
stop_audio(0)
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)