KiXtart

1 program Added 2025-11-05T20:16:40Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 8c81c2d374 · authored 2025-11-05T21:16:41+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

4 sources · pl_id: pl/kixtart
LLM (this repo) · 1PldbWikipediaWikidata · Q1477376

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Designed byRuud van Velsen
First appeared1991
LicenseClosed source Careware
Homepagehttp://www.kixtart.org/

Extensions 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.
ExtensionSourceStrengthSWH
.kixwikidataprimary598 files

Related languages

Tart (0.36)Wart (0.25)Kinx (0.15)Kite (0.15)Oz (0.15)

LLM-contributed programs

Get IP address, Subnet Mask and Default Gateway

Provenance: commit 8c81c2d374 · authored 2025-11-05T21:16:41+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.kix · added: 2025-11-05T20:16:40Z
; Script:   GetIP.kix
; Author:   John F. Sceski
; Date:     01/21/2002
;
; This script will get the IP address, Subnet Mask and Default Gateway
; for the local machine. It will then display the information in a message
; box.
;
; It has been tested on Windows 95, 98, ME, NT4 and 2000 Pro.
;
; It uses the external program 'ipconfig.exe' to get the information.
;
; Note: For Windows 95, 98 and ME you must use 'winipcfg.exe /batch'
;       and the output file is different.
;
;       This script only works for Windows NT4 and 2000 Pro.

Dim $GetIP, $IPAddress, $SubnetMask, $DefaultGateway, $TempFile

$TempFile = "%TEMP%\GetIP.tmp"

$GetIP = Run('ipconfig.exe > "$TempFile"')

If @ERROR = 0
   $IPAddress = ReadProfileString("$TempFile", "   IP Address. . . . . . . . . . . :", "")
   $SubnetMask = ReadProfileString("$TempFile", "   Subnet Mask . . . . . . . . . . :", "")
   $DefaultGateway = ReadProfileString("$TempFile", "   Default Gateway . . . . . . . . :", "")

   $CRLF = Chr(13) + Chr(10)

   ? "IP Address is: " + $IPAddress
   ? "Subnet Mask is: " + $SubnetMask
   ? "Default Gateway is: " + $DefaultGateway

   $Message = "IP Address is: " + $IPAddress + $CRLF + "Subnet Mask is: " + $SubnetMask + $CRLF + "Default Gateway is: " + $DefaultGateway

   $MBOK = 0
   $MBIconInformation = 64

   $Return = MessageBox($Message, "IP Information", $MBOK + $MBIconInformation)

   $GetIP = Del("$TempFile")
Else
   ? "Error running ipconfig.exe"
   ? "Error code: " + @ERROR
   ? "Windows error code: " + @WERROR
EndIf

Exit @ERROR

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.)

Contribute — propose a file extension

Tell us where to find evidence about KiXtart (mapped to pl/kixtart). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/KiXtart/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Kiwiscript KJava →