Imba
1 program
Added 2025-11-12T09:17:31Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 98712638fc · authored 2025-11-12T10:17:31+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
3 sources · pl_id:
pl/imbaExtensions claimed by this language
1 claim. 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 |
|---|---|---|---|
.imba | linguist | primary | 18.7K files |
Related languages
LLM-contributed programs
Showcase Card Component for imba.io
Provenance: commit 98712638fc · authored 2025-11-12T10:17:31+01:00 · model google/gemini-2.5-pro · Temp 0.4
import {api} from '../api'
export tag ShowcaseCard < button
prop item
prop index
def render
<self[d:hflex ja:center]>
<div.preview[pos:relative w:100% h:100% d:block]>
<div.overlay[pos:absolute inset:0 bg:gray9.10 z:1]>
<div.title[pos:absolute l:4 b:4 z:2 c:white fs:xl fw:600]> item.title
<img[d:block w:100% h:100% object-fit:cover] src=api.url(item.image)>
def enter
let rect = getBoundingClientRect()
let clone = <div.preview[pos:fixed z:100] style=rect>
document.body.appendChild(clone)
imba.commit do
clone.style.borderRadius = '2rem'
clone.style.width = '100%'
clone.style.height = '100%'
clone.style.top = 0
clone.style.left = 0
await 200ms
imba.commit do
clone.find('.overlay').style.opacity = 0
await 200ms
emit('show',item)
await 100ms
clone.remove()
def ontap e
enter()
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.)