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/kixtartWikipedia 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 by | Ruud van Velsen |
|---|---|
| First appeared | 1991 |
| License | Closed source Careware |
| Homepage | http://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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.kix | wikidata | primary | 598 files |
Related languages
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
; 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.)