<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://w96.wiki/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Utf</id>
	<title>Wiki96 - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://w96.wiki/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Utf"/>
	<link rel="alternate" type="text/html" href="https://w96.wiki/wiki/Special:Contributions/Utf"/>
	<updated>2026-05-03T07:03:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User_talk:Nolanwhy&amp;diff=1217</id>
		<title>User talk:Nolanwhy</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User_talk:Nolanwhy&amp;diff=1217"/>
		<updated>2023-12-02T16:10:58Z</updated>

		<summary type="html">&lt;p&gt;Utf: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''Wiki96''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Utf|Utf]] ([[User talk:Utf|talk]]) 17:10, 2 December 2023 (CET)&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=P3&amp;diff=1192</id>
		<title>P3</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=P3&amp;diff=1192"/>
		<updated>2023-07-03T11:35:23Z</updated>

		<summary type="html">&lt;p&gt;Utf: Remove dead link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:P3 Settings.png|thumb|The P3 settings program.]]&lt;br /&gt;
P3, also known as '''Pseudo Peer-to-Peer''' or '''PPP''', is a communication protocol and program that was introduced in Windows96 v2.34 ([[Windows 96 v2]] Service Pack 2). Its purpose is to allow developers to have intercommunication between programs, without having to rely on hosting a server themselves.&lt;br /&gt;
&lt;br /&gt;
P3 has been marked as obsolete since [[Windows 96 v3]] release 3.0.1, with no replacement being officially announced.&lt;br /&gt;
&lt;br /&gt;
== Network function ==&lt;br /&gt;
In order to initiate a connection with a peer, the system must first connect to a P3 relay server (by default, this server is &amp;lt;code&amp;gt;wss://p3.windows96.net&amp;lt;/code&amp;gt;) using Socket.IO. The relay handles address assignment, authentication, message exchange and peer discovery.&lt;br /&gt;
&lt;br /&gt;
=== HELLO ===&lt;br /&gt;
Logging in on the relay is accomplished by sending a &amp;lt;code&amp;gt;hello&amp;lt;/code&amp;gt; packet containing the address secret as well as the desired subdomain in a JSON-encoded, semicolon-separated string.&lt;br /&gt;
 [&amp;quot;sub=hello;mySecret&amp;quot;]&lt;br /&gt;
If the user does not wish to use  a subdomain, the &amp;lt;code&amp;gt;sub&amp;lt;/code&amp;gt; argument can be omitted:&lt;br /&gt;
 [&amp;quot;mySecret&amp;quot;]&lt;br /&gt;
If the user has a [[Windows 96 Product Key]], the secret is ignored, and the key's domain is used instead. Product key authentication is done by sending the &amp;lt;code&amp;gt;Authorization&amp;lt;/code&amp;gt; HTTP header before connecting:&lt;br /&gt;
 Authorization: Bearer &amp;lt;product-key&amp;gt;&lt;br /&gt;
Successful authentication will result in a &amp;lt;code&amp;gt;hello&amp;lt;/code&amp;gt; response, indicating the user's address, secret and MOTD if the server has one:&lt;br /&gt;
 [{ &amp;quot;success&amp;quot;: true, &amp;quot;address&amp;quot;: &amp;quot;hello.kyblozsdhc.ppp&amp;quot;, &amp;quot;secret&amp;quot;: &amp;quot;mySecret&amp;quot;, &amp;quot;message&amp;quot;: &amp;quot;example MOTD&amp;quot; }]&lt;br /&gt;
Invalid parameters will result in a message containing the error:&lt;br /&gt;
 [{ &amp;quot;success&amp;quot;: false, &amp;quot;message&amp;quot;: &amp;quot;PPP Server Error: Subdomain is invalid&amp;quot; }]&lt;br /&gt;
&lt;br /&gt;
=== PACKET ===&lt;br /&gt;
Messages can be exchanged between peers using the &amp;lt;code&amp;gt;packet&amp;lt;/code&amp;gt; message. A &amp;lt;code&amp;gt;packet&amp;lt;/code&amp;gt; message must contain the destination address, n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt; and data.&lt;br /&gt;
&lt;br /&gt;
The destination address can be any valid &amp;lt;code&amp;gt;.ppp&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;.vip&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.sys&amp;lt;/code&amp;gt; address, optinally with a port added as a suffix, such as &amp;lt;code&amp;gt;lo.sys:1234&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt; component is a single number that increases on each packet sent. This can allow for error detection and prevents old packets from being received twice.&lt;br /&gt;
&lt;br /&gt;
Example &amp;lt;code&amp;gt;packet&amp;lt;/code&amp;gt; message:&lt;br /&gt;
 [{ &amp;quot;dest&amp;quot;: &amp;quot;1424vqhvtu.ppp:28067&amp;quot;, &amp;quot;nonce&amp;quot;: 77, &amp;quot;data&amp;quot;: &amp;quot;hello, world&amp;quot; }]&lt;br /&gt;
If the message was sent successfully, the relay server replies with &amp;lt;code&amp;gt;packet.ok&amp;lt;/code&amp;gt; and the n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt;:&lt;br /&gt;
 [ { &amp;quot;nonce&amp;quot;: 77 } ]&lt;br /&gt;
If the peer is offline, the &amp;lt;code&amp;gt;packet.err&amp;lt;/code&amp;gt; message is sent with the error message and n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt;:&lt;br /&gt;
 [ { &amp;quot;nonce&amp;quot;: 77, &amp;quot;message&amp;quot;: &amp;quot;Peer offline&amp;quot; } ]&lt;br /&gt;
&lt;br /&gt;
=== PORT.PUBLISH ===&lt;br /&gt;
The &amp;lt;code&amp;gt;port.publish&amp;lt;/code&amp;gt; message registers a peer's port on network discovery. The message must contain the port that the peer wants to publish, and the identifier flags that other peers can search for with the &amp;lt;code&amp;gt;discover&amp;lt;/code&amp;gt; message.&lt;br /&gt;
&lt;br /&gt;
Example &amp;lt;code&amp;gt;port.publish&amp;lt;/code&amp;gt; message for port 1234, with the flags &amp;lt;code&amp;gt;foo&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;bar&amp;lt;/code&amp;gt;:&lt;br /&gt;
 [ 1234, [&amp;quot;foo&amp;quot;, &amp;quot;bar&amp;quot;]]&lt;br /&gt;
'''No reply is sent on success or error.'''&lt;br /&gt;
&lt;br /&gt;
=== PORT.REMOVE ===&lt;br /&gt;
The &amp;lt;code&amp;gt;port.remove&amp;lt;/code&amp;gt; message removes the specified port from network discovery.&lt;br /&gt;
&lt;br /&gt;
Example &amp;lt;code&amp;gt;port.remove&amp;lt;/code&amp;gt; message to remove port 1234:&lt;br /&gt;
 [ 1234 ]&lt;br /&gt;
'''No reply is sent on success or error.'''&lt;br /&gt;
&lt;br /&gt;
=== DISCOVER ===&lt;br /&gt;
The &amp;lt;code&amp;gt;discover&amp;lt;/code&amp;gt; message allows peers to automatically find each other on the network. Programs can use this packet to find peers on the network running the same protocol and contact them.&lt;br /&gt;
&lt;br /&gt;
The message must contain the flags to look for, the peer limit, and n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt;.&lt;br /&gt;
 [ [&amp;quot;flag1&amp;quot;, &amp;quot;flag2&amp;quot;], limit, nonce ]&lt;br /&gt;
Example packet to find all peers with the &amp;lt;code&amp;gt;foo&amp;lt;/code&amp;gt; flag:&lt;br /&gt;
 [ [&amp;quot;foo&amp;quot;], 0, 8 ]&lt;br /&gt;
Example packet to find at max 10 peers with the &amp;lt;code&amp;gt;foo&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;bar&amp;lt;/code&amp;gt; flag:&lt;br /&gt;
 [ [&amp;quot;foo&amp;quot;, &amp;quot;bar&amp;quot;], 10, 9 ]&lt;br /&gt;
Successful replies are sent with the &amp;lt;code&amp;gt;discover&amp;lt;/code&amp;gt; message, containing a list of peer addresses, ports, flags, and the n&amp;lt;sub&amp;gt;once&amp;lt;/sub&amp;gt;:&lt;br /&gt;
 [ [ { &amp;quot;port&amp;quot;: &amp;quot;1234&amp;quot;, &amp;quot;address&amp;quot;: &amp;quot;1424vqhvtu.ppp&amp;quot;, &amp;quot;flags&amp;quot;: [&amp;quot;foo&amp;quot;] ], 9 ]&lt;br /&gt;
If an error occurred, the &amp;lt;code&amp;gt;discover.err&amp;lt;/code&amp;gt; message is sent instead:&lt;br /&gt;
 [ &amp;quot;Invalid limit&amp;quot;, 9 ]&lt;br /&gt;
&lt;br /&gt;
== Use ==&lt;br /&gt;
&lt;br /&gt;
* [[SuperTerm]] uses the Rich Text over P3 (RToP) protocol with 121 as default port.&lt;br /&gt;
* [[Remote Console]] uses RToP on port 140.&lt;br /&gt;
* [[P3FS]] uses P3 on port 737.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/socketio/socket.io Socket.IO on GitHub]&lt;br /&gt;
* [https://github.com/themirrazzalt/p3protocol Unofficial P3 documentation]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=April_10th&amp;diff=1186</id>
		<title>April 10th</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=April_10th&amp;diff=1186"/>
		<updated>2023-05-19T11:15:05Z</updated>

		<summary type="html">&lt;p&gt;Utf: Add citations for 2023&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;April 10th is the official anniversary day of Windows 96. The OS is currently 4 years old as of last anniversary.&lt;br /&gt;
&lt;br /&gt;
== 2020 ==&lt;br /&gt;
Nothing special occurred during 2020, mainly due to the 2020 pandemic and lack of motivation during such crippling times.&lt;br /&gt;
&lt;br /&gt;
== 2021 ==&lt;br /&gt;
[[File:Service Pack 1 Upgrade Screenshot.png|thumb|Service Pack 1 welcome screen (triggered on startup)]]&lt;br /&gt;
A special anniversary welcome screen was added during the anniversary, which included numerous apps, features, and bug fixes.&lt;br /&gt;
&lt;br /&gt;
An open sourcing of Windows 96 was (and still is to some extent) planned, but this was delayed indefinitely.&lt;br /&gt;
&lt;br /&gt;
== 2022 ==&lt;br /&gt;
V3 was initially planned to be released on the third anniversary of Windows 96. This didn't happen due to a multitude of development roadblocks.&lt;br /&gt;
&lt;br /&gt;
Instead, an anarchy Minecraft server event was held in the Windows 96 Discord, where a player could win a prize for the best looking base.&lt;br /&gt;
&lt;br /&gt;
== 2023 ==&lt;br /&gt;
For the 2023 Anniversary of Windows 96, Userland was opensourced&amp;lt;ref&amp;gt;https://git.sys36.net/windows-96/sys-userland&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;:0&amp;quot;&amp;gt;https://discord.com/channels/619868741395546117/1028718357442220042/1095071929863512094&amp;lt;/ref&amp;gt;. Some of the changes includes a new [[Monaco]] release and the complete rework of [[MsgRoom]].&amp;lt;ref name=&amp;quot;:0&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Utf&amp;diff=1182</id>
		<title>User:Utf</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Utf&amp;diff=1182"/>
		<updated>2023-05-16T19:56:21Z</updated>

		<summary type="html">&lt;p&gt;Utf: Protected &amp;quot;User:Utf&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sup&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Dan&amp;diff=1181</id>
		<title>Dan</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Dan&amp;diff=1181"/>
		<updated>2023-05-16T19:39:38Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Ctrl&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Epic memer (please finish this page bro)&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=JS_Certified_Developer_Wallpaper&amp;diff=1180</id>
		<title>JS Certified Developer Wallpaper</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=JS_Certified_Developer_Wallpaper&amp;diff=1180"/>
		<updated>2023-05-16T19:39:26Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Themirrazz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The JS Certified &amp;quot;Developer&amp;quot; Wallpaper is one of the oldest wallpapers on Windows 96, along with the [[Harold Wallpaper]]. It features a yellow background, a giant &amp;quot;JS&amp;quot; in the font of the JavaScript logo, and pixelated text stacked on top of each other saying &amp;quot;Certified 'Developer'&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
It has been included in Windows &lt;br /&gt;
96 since the release of [[Windows 96 v0.1|V0.1]] and can still be found in the [[Windows 96 v3|current version]] of Windows 96.&lt;br /&gt;
[[File:Certified dev js v3.png|thumb|The wallpaper applied on a V3 installation]]&lt;br /&gt;
[[File:Dev certified js v0.1.png|thumb|The wallpaper applied on a v0.1 installation]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Test_Page&amp;diff=1179</id>
		<title>Test Page</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Test_Page&amp;diff=1179"/>
		<updated>2023-05-16T16:41:20Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Test}}&lt;br /&gt;
{{NoW96}}&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Version_Browser&amp;diff=1178</id>
		<title>Version Browser</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Version_Browser&amp;diff=1178"/>
		<updated>2023-05-16T16:41:16Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Versionbrowser.png|thumb|Version Browser in v3.]]&lt;br /&gt;
''For the v2 version of this program, see [[Virtual Machine]].''&lt;br /&gt;
&lt;br /&gt;
'''Version Browser''' (in v2 known as Virtual Machine) is a program that allows users to launch old versions of [[Windows 96]] and use them as you would back then. The earliest version is [[Windows 96 v0.1|version 0.1]] and the newest is [[Windows 96 v2|version 2.0 (SP2)]].&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Theming&amp;diff=1177</id>
		<title>Theming</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Theming&amp;diff=1177"/>
		<updated>2023-05-16T16:41:14Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Kelbaz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Legoman longhorn theme preview.png|alt=An example of a transformative theme. Based on Windows Longhorn, created by Legoman|thumb|An example of a custom theme. Based on Windows Longhorn, created by trabis.]]&lt;br /&gt;
Windows 96 includes a powerful theming engine to allow you to create incredibly complex and beautiful themes.&lt;br /&gt;
&lt;br /&gt;
Themes are made up of stylesheets, scripts, images, and other resources. They can optionally provide a custom sound pack or icon theme, to further customize the user experience.&lt;br /&gt;
&lt;br /&gt;
=== Acquiring Themes ===&lt;br /&gt;
Users can acquire new themes and customizations for their system by searching through the package store, checking the preinstalled collection, or importing them from an external source (such as a forum or community).&lt;br /&gt;
&lt;br /&gt;
New themes can also be created within the Windows 96 environment. Read more [[Creating a theme|here]].&lt;br /&gt;
&lt;br /&gt;
==== Preinstalled Examples ====&lt;br /&gt;
Windows 96 includes a few themes by default, namely&lt;br /&gt;
&lt;br /&gt;
* Windows 96 (the default theme)&lt;br /&gt;
* Base (a remix of the default theme using free icons)&lt;br /&gt;
* Dev (a development theme to use to check icon sizes, etc.)&lt;br /&gt;
* Windows 98 (a theme mimicking Windows 98)&lt;br /&gt;
* Windows 2000 (a theme mimicking Windows 2000)&lt;br /&gt;
*OS X Snow Leopard (icon theme using OS X icons)&lt;br /&gt;
*Utopia (sound scheme)&lt;br /&gt;
*XP (a Windows XP theme including 4 variants)&lt;br /&gt;
&lt;br /&gt;
=== Theme Structure ===&lt;br /&gt;
Each theme has its own directory, and is usually saved at &amp;lt;code&amp;gt;C:/system/resource/themes/&amp;lt;theme_id&amp;gt;&amp;lt;/code&amp;gt; (where &amp;lt;code&amp;gt;&amp;lt;theme_id&amp;gt;&amp;lt;/code&amp;gt; is a user defined identifier for the theme). The theme identifier may not include spaces, must not start with a number, and must be alphanumeric.&lt;br /&gt;
&lt;br /&gt;
==== Example setup ====&lt;br /&gt;
A typical (minimal) theme setup looks as follows&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
c:/system/resource/themes/sample&lt;br /&gt;
├─ manifest.json&lt;br /&gt;
└─ theme.css&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;where&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;manifest.json&amp;lt;/code&amp;gt; is a theme manifest telling the theme engine how the theme should behave and what content to load to render the theme properly.&lt;br /&gt;
* &amp;lt;code&amp;gt;theme.css&amp;lt;/code&amp;gt; is the stylesheet specifying which styles to modify.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_V3_Beta&amp;diff=1176</id>
		<title>Windows 96 V3 Beta</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_V3_Beta&amp;diff=1176"/>
		<updated>2023-05-16T16:41:12Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 178.34.163.32&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Delete|Spam}}&lt;br /&gt;
This page, Windows 96 V3 Beta, has been nominated for deletion for the following reason: Unrelated.&lt;br /&gt;
You can contest this deletion by posting on this article's talk page.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v2&amp;diff=1175</id>
		<title>Windows 96 v2</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v2&amp;diff=1175"/>
		<updated>2023-05-16T16:41:10Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 168.196.136.144&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NoSupport}}&lt;br /&gt;
[[File:Windows 96 v2 screenshot.png|thumb|Windows 96 version 2.0 default desktop. Note that this is an older build and might not have the latest features.]]&lt;br /&gt;
Windows 96 v2 is a version of Windows 96 and was completely rewritten from scratch. Therefore, it only bears visual similarity to its [[Windows 96 v1|predecessor]].&lt;br /&gt;
&lt;br /&gt;
You can visit this release at [https://rel2.windows96.net https://rel2.windows96.net].&lt;br /&gt;
&lt;br /&gt;
== Why the rewrite? ==&lt;br /&gt;
&lt;br /&gt;
* The code was not well optimized and it was impossible to do so due to the inefficient source code structure.&lt;br /&gt;
* It became spaghetti code due to all the OS logic being fitted into one file.&lt;br /&gt;
* As a result of this, it became near impossible to make the code modular and the effort would be better spent rewriting the OS from scratch.&lt;br /&gt;
* Windows 96 v1 had a synchronous design all round, which meant that any async operations would not fit in well and make the spaghetti code situation even worse.&lt;br /&gt;
* WebFS's mixed asynchronous model still imposed annoying file limits often reached by regular users, and also generally made the experience feel much slower.&lt;br /&gt;
* Cross browser support was not 1:1 due to the lack of CSS normalization/use of browser specific functionality. This meant that Windows 96 would not have a consistent look across browsers.&lt;br /&gt;
* A more efficient OS architecture was proposed, where the pros of rewriting the OS eventually outweighed the cons of not rewriting it.&lt;br /&gt;
* To allow more than 1 developer to work on the source code without losing their mind.&lt;br /&gt;
*And because the ES6 (ECMAScript v6).Most people and browsers cannot support them.&lt;br /&gt;
&lt;br /&gt;
== Version Highlights ==&lt;br /&gt;
&lt;br /&gt;
* Too many to count (TODO)&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
* The rewrite took around 6 months to be somewhat useable. During this time, the original Windows 96 community died out completely and many fans left without a trace.&lt;br /&gt;
* The COVID-19 pandemic also made it a pain to stay motivated to keep developing Windows 96.&lt;br /&gt;
* The project reached an extent were more than 1 developer was needed.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=YouAreAnIdiot&amp;diff=1174</id>
		<title>YouAreAnIdiot</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=YouAreAnIdiot&amp;diff=1174"/>
		<updated>2023-05-16T16:41:07Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Kelbaz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The YouAreAnIdiot app is meant to create the youareanidiot trojan virus, which spawns windows with the [https://youareanidiot.cc/youare.mp4 YouAreAnIdiot Flash Video] (in MP4 format) that bounce around your screen. In Windows 96, trying to close the windows or even use [[Task Manager]] to kill the task will spawn more windows. The only way to get rid of the YouAreAnIdiot virus is to reboot your system.&lt;br /&gt;
[[Category:Apps]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_Lite&amp;diff=1173</id>
		<title>Windows 96 Lite</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_Lite&amp;diff=1173"/>
		<updated>2023-05-16T16:41:01Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 78.62.216.210&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NoSupport/Lite}}&lt;br /&gt;
Windows 96 Lite is a low-bandwidth version of [[Windows 96 v2|Windows 96 V2]] that doesn't require as much system resources or network usage as the regular version. In [[Windows 96 v3|V3]], Windows 96 Lite was moved and can be installed through the Installation Wizard.&lt;br /&gt;
&lt;br /&gt;
Although Windows 96 Lite is a stripped-down version of V2, it is also (sometimes) considered to be early V3, because the latest version of Windows 96 Lite is early V3.&lt;br /&gt;
[[File:Windows 96 lite desktop.png|thumb|alt=A fresh install of Windows 96 Lite|A fresh install of Windows 96 Lite]]&lt;br /&gt;
&lt;br /&gt;
Windows 96 Lite only has Explorer, Terminal, Package Manager, and Textpad preinstalled on it. However, it has the ability to host a Remote Console and mount P3FS filesystems. It is also the first known version to publicly use the Reset Wizard instead of the reinstall prompt.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v3_Cut_Content&amp;diff=1172</id>
		<title>Windows 96 v3 Cut Content</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v3_Cut_Content&amp;diff=1172"/>
		<updated>2023-05-16T16:40:59Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Utf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub|Not enough content.}}&lt;br /&gt;
This is a list of features that were supposed to release for [[Windows 96 v3]], but were cut from the final version.&lt;br /&gt;
=== Bell ===&lt;br /&gt;
[[File:Railway.png|thumb|Railway status page]]Bell was the intended successor to [[P3]]. It was briefly included in the [[Windows 96 V3 Beta|V3 private beta]], but was removed in the final release version.&lt;br /&gt;
&lt;br /&gt;
Rather than relying on a single server to relay data, Bell used multiple types of servers, which helped reliability and latency. &lt;br /&gt;
&lt;br /&gt;
==== Switchboard ====&lt;br /&gt;
The role of the Switchboard server is to help peers make connections with each-other. Upon connecting, you are assigned an address generated from a seed, similar to P3.&lt;br /&gt;
&lt;br /&gt;
In order to make a connection, a peer has to send a connection request to another peer through Switchboard. The remote peer can then reject or accept the connection.&lt;br /&gt;
&lt;br /&gt;
If the connection is accepted, a Railway server with the lowest latency is selected by the peers, as well as a token that will be used to connect.&lt;br /&gt;
&lt;br /&gt;
==== Railway ====&lt;br /&gt;
The purpose of the Railway server is solely to relay data between peers. Any WebSocket client can connect with another peer through this server, so long as they have a common token.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 96Hub ===&lt;br /&gt;
[[File:96Hub.png|thumb|96Hub]]96Hub was supposed to be a program to help new users discover Windows96 and participate in its community.&lt;br /&gt;
&lt;br /&gt;
After the Wiki was founded, it was deemed unnecessary and scrapped from the final version.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== FileNet ===&lt;br /&gt;
[[File:FileNet.png|thumb|FileNet]]FileNet was a file-sharing program that used the [[P3]] network to discover peers and transfer files.&lt;br /&gt;
&lt;br /&gt;
==== Node ====&lt;br /&gt;
Nodes are users on the FileNet network that are sharing files publicly. Each node can have a user-readable name and description, shown upon clicking it.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v0.1&amp;diff=1171</id>
		<title>Windows 96 v0.1</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v0.1&amp;diff=1171"/>
		<updated>2023-05-16T16:40:57Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NoSupport}}&lt;br /&gt;
[[File:Windows 96 v0.1 screenshot.png|alt=The default desktop of a fresh Windows 96 v0.1 installation.|thumb|The default desktop of a fresh Windows 96 v0.1 installation.]]&lt;br /&gt;
Windows 96 v0.1 is an old version of Windows 96, released on the 20th of April 2019.&lt;br /&gt;
&lt;br /&gt;
This is not the first version, but this is the first version which had semi usable applications, windows, and file system.&lt;br /&gt;
&lt;br /&gt;
This version can still be found at https://rel01.windows96.net.&lt;br /&gt;
&lt;br /&gt;
== Version Highlights ==&lt;br /&gt;
&lt;br /&gt;
* The default fonts used were Pixel Verdana and LWindows, but these were eventually swapped for Pixel Arial in later releases.&lt;br /&gt;
* The file system during this time was fully synchronous (utilizing &amp;lt;code&amp;gt;localStorage&amp;lt;/code&amp;gt;), which meant that there was a hard browser cap at around 8 megabytes of total data storage.&lt;br /&gt;
* The context menus in this version were not yet completed.&lt;br /&gt;
* The window manager in this version was extremely primitive and had no way to tell active and inactive windows apart, often resulting into windows not appearing as they should.&lt;br /&gt;
* Taskbar tasks could not have an icon representing their appropriate function.&lt;br /&gt;
* Terrible font blurring is present all around this version and cross browser support was horrible.&lt;br /&gt;
* Half of the start menu was not functional at all and the start menu was extremely glitchy.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
* [[Ctrlz]] (the only developer at the time) had zero idea how to render bitmap fonts properly using CSS and generally had weak CSS abilities during this time.&lt;br /&gt;
* Whilst Windows 96 is new, the thought of developing a Web OS was not new and was attempted before with unsatisfying results.&lt;br /&gt;
* Ctrlz's longtime friend Dan conceptualized parts of (and heavily tested) the first releases of Windows 96.&lt;br /&gt;
* Most of Windows 96 v0.1 was developed during a school drama performance, where ctrlz and Dan were tasked to record the performance, but obviously didn't because they were too busy working on the future of the internet (:wooge:).&lt;br /&gt;
* Ctrlz and Dan still regularly poke fun with Windows 96, often attempting to run the Web OS at random places or random devices for absolutely no reason.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:124.90.56.120&amp;diff=1170</id>
		<title>User:124.90.56.120</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:124.90.56.120&amp;diff=1170"/>
		<updated>2023-05-16T16:40:55Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 124.90.56.120&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Latest revision as of 13:41, 9 February 2023&lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=vvX5SFFs3cI.&lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=1ZCRht684Oo.&lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=kJa2kwoZ2a4.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Ziad87&amp;diff=1169</id>
		<title>Ziad87</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Ziad87&amp;diff=1169"/>
		<updated>2023-05-16T16:40:52Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Cab&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
ziad87 is a lead developer who actively develops Windows 96.&lt;br /&gt;
&lt;br /&gt;
You can find a link to ziad's website [http://ziad87.net here].&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:123.154.192.87&amp;diff=1168</id>
		<title>User:123.154.192.87</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:123.154.192.87&amp;diff=1168"/>
		<updated>2023-05-16T16:40:45Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 123.154.192.87&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;https://www.youtube.com/watch?v=vvX5SFFs3cI&lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=1ZCRht684Oo&lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=kJa2kwoZ2a4&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_Product_Key&amp;diff=1167</id>
		<title>Windows 96 Product Key</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_Product_Key&amp;diff=1167"/>
		<updated>2023-05-16T16:40:41Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Themirrazz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Windows 96 Product Key is a key you get if you donate to Windows 96 using Patreon. You can activate your installation of Windows 96 by opening up a terminal and running the ''keymgr'' command to show the Activation window. Most of Windows 96 is available without activating it, but activating your Windows 96 installation gives you the ability to have custom domains on P3, and access beta builds without having to go through the application process.&lt;br /&gt;
[[File:Keymgr window.png|thumb|The Actication Wizard in all its glory]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Zestor&amp;diff=1166</id>
		<title>Zestor</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Zestor&amp;diff=1166"/>
		<updated>2023-05-16T16:40:39Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Cab&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
Zestor was previously the main server on which Windows 96 and most of its services were hosted.&lt;br /&gt;
&lt;br /&gt;
The server homepage could be found at https://zestor.sys36.net/.&lt;br /&gt;
&lt;br /&gt;
=== Specifications ===&lt;br /&gt;
'''CPU:''' Intel Xeon E5-2630 v4 (8) @ 2.199GHz&lt;br /&gt;
&lt;br /&gt;
'''OS:''' Debian Sid&lt;br /&gt;
&lt;br /&gt;
'''RAM:''' 30 GB&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:124.90.56.232&amp;diff=1165</id>
		<title>User:124.90.56.232</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:124.90.56.232&amp;diff=1165"/>
		<updated>2023-05-16T16:40:36Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 124.90.56.232&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page, Windows 93, has been nominated for deletion for the following reason: Unrelated.&lt;br /&gt;
You can contest this deletion by posting on this article's talk page.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v0.5&amp;diff=1164</id>
		<title>Windows 96 v0.5</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v0.5&amp;diff=1164"/>
		<updated>2023-05-16T16:40:34Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NoSupport}}&lt;br /&gt;
[[File:Windows 96 v0.5 screenshot.png|alt=The default desktop of a fresh Windows 96 v0.5 install.|thumb|The default desktop of a fresh Windows 96 v0.5 install.]]&lt;br /&gt;
Windows 96 v0.5 is an old version of Windows 96 released on the 7th of July 2019.&lt;br /&gt;
&lt;br /&gt;
This version introduced major improvements to the OS and the quality of life of the user using it.&lt;br /&gt;
&lt;br /&gt;
This version can still be found at https://rel05.windows96.net.&lt;br /&gt;
&lt;br /&gt;
== Version Highlights ==&lt;br /&gt;
&lt;br /&gt;
* The widespread use of the new Pixel Arial font was applied everywhere.&lt;br /&gt;
* A terminal was added for command line based applications.&lt;br /&gt;
* Useless content was added in x:/content.&lt;br /&gt;
* A bunch of new entertainment apps were added.&lt;br /&gt;
* The Windows 96 wiki was updated to include more in-depth API samples.&lt;br /&gt;
* A massive UI lift occurred which made the OS feel more like Windows 9x compared to previous releases. This includes under-the-hood changes, such as updated UI APIs and CSS level changes, such as the removal of certain fonts and incompatible styles.&lt;br /&gt;
* Windows 96 C/C++ SDK was introduced to allow users to write Windows 96 apps in C++.&lt;br /&gt;
* The window manager saw massive improvements.&lt;br /&gt;
* Text editor added support for JavaScript and HTML document highlighting.&lt;br /&gt;
* Cross browser support was improved through compatibility stylesheets.&lt;br /&gt;
* File uploading was added.&lt;br /&gt;
* With the introduction of file uploading, the file system switched to a mixed asynchronous model, which allowed for a theoretical 32 gigabytes of useable space (compared to 8 MB).&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
* This version is considered to be the first version where the Windows 96 design principles were ratified properly.&lt;br /&gt;
* A start menu bug exists where the applications menu will appear after the start menu is closed.&lt;br /&gt;
* There is an XSS bug in Terminal using the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; command.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v1&amp;diff=1163</id>
		<title>Windows 96 v1</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v1&amp;diff=1163"/>
		<updated>2023-05-16T16:40:32Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{NoSupport}}&lt;br /&gt;
[[File:Screenshot01-v1.png|thumb|A fresh Windows 96 version 1.0 desktop.]]&lt;br /&gt;
Windows 96 v1 is the last &amp;quot;classic&amp;quot; version of Windows 96 released on the 7th of July 2019.&lt;br /&gt;
&lt;br /&gt;
It's dubbed as the last classic version due to a total rewrite that occurred between Windows 96 v1 and v2. The rewrite made Windows 96 v1 apps completely incompatible with [[Windows 96 v2|2.0]] due to a different architecture and API set.&lt;br /&gt;
&lt;br /&gt;
It can still be found at https://rel1.windows96.net.&lt;br /&gt;
&lt;br /&gt;
== Version Highlights ==&lt;br /&gt;
&lt;br /&gt;
* A package manager was introduced to allow users to install additional apps from what was already provided.&lt;br /&gt;
* KeyboardMusic was added to allow users to make music using their keyboards.&lt;br /&gt;
* Many window manager bugs that existed in version 0.5 were fixed (e.g. active window switching bug).&lt;br /&gt;
* The &amp;lt;code&amp;gt;x:/content&amp;lt;/code&amp;gt; folder was emptied.&lt;br /&gt;
* Window icons were added and the taskbar functionality was improved.&lt;br /&gt;
* Many apps had their functionality refined.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
* This version was the main version of Windows 96 for a very long time.&lt;br /&gt;
* Most changes were API updates and app refinements compared to version 0.5.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96_v3&amp;diff=1162</id>
		<title>Windows 96 v3</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96_v3&amp;diff=1162"/>
		<updated>2023-05-16T16:40:30Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 2001:1530:1018:5198:2D2A:B041:D45C:8C9C&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Windows 96 v3 is the current version of [[Windows 96]] that is the successor to [[Windows 96 v2|v2]]. It has added lot of features, most notably it made the Web OS look much more like Windows 9x.&lt;br /&gt;
&lt;br /&gt;
== Version Highlights ==&lt;br /&gt;
* The 9x style of the OS has been vastly improved.&lt;br /&gt;
* The apps are now in the [[Root Filesystem|filesystem]] instand of in the Windows96 kernel.&lt;br /&gt;
* A new terminal compatible with XTerm.&lt;br /&gt;
* System Config Manager (SCM) that works similarly to the Windows Registry.&lt;br /&gt;
* A new shell.&lt;br /&gt;
* A new file explorer that is more Windows 98.&lt;br /&gt;
* BoxedWine (bWINE) is now built in into Windows 96.&lt;br /&gt;
* More apps, including: WMBox, Linux, 3D Pinball - Space Cadet, and PDF Reader.&lt;br /&gt;
* Out Of Box Experience that can triggered by pressing ALT+O on Windows 96 boot.&lt;br /&gt;
* [[Disk Encryption]].&lt;br /&gt;
* WEX (Windows96 C/C++ API) that allows to write Windows 96 apps in C/C++.&lt;br /&gt;
* A new wiki that you are on it right now.&lt;br /&gt;
* Task Manager that allows to kill misbehaving apps.&lt;br /&gt;
* [[Media Player]], replaces old Video Player.&lt;br /&gt;
* [[Version Browser]], replaces old [[Virtual Machine]].&lt;br /&gt;
* [[InternetE]], replaces old [[Internet Exploder]].&lt;br /&gt;
* The filesystem is now fully asynchronous.&lt;br /&gt;
* P3FS&lt;br /&gt;
* The YouAreAnIdiot app now bounces across the screen, like the real YouAreAnIdiot.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
* This version took a very long time to release.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Dingle&amp;diff=1161</id>
		<title>User:Dingle</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Dingle&amp;diff=1161"/>
		<updated>2023-05-16T16:40:26Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Dingle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Cat Gaming}}[[File:GodzillaCat.jpg|thumb|i kill tht ppls in the home]]'''Cats''' (''Felis catus'') are parasitic creatures that can enter a home, offer nothing, use up resources and yet still be adored by the humans who live there. The relationship between a cat and a human quickly develop from that of a house guest to the cat completely dominating and controlling every aspect of the human's life. Considered extremely intelligent and among the most deviously cunning creatures on Earth, their goal is to maintain a balance between mooching off of the stupidity of humans yet not having to put any actual effort into it. They achieve this through their absolute mastery of Zen which is the art of accomplishing things through non-action.&lt;br /&gt;
==Verification and authentication==&lt;br /&gt;
===Verification===&lt;br /&gt;
While most cats can be identified by their slender nimble shape, fur and general air of superiority, in reality you can tell an animal is a cat by inspecting the house it lives in. If it has a full food and water dish and earns its keep by sleeping all day by the window and demanding it be pet at the most inconvenient possible time, then the animal is a cat.&lt;br /&gt;
&lt;br /&gt;
===Authentication===&lt;br /&gt;
While some cats may look like cats, they may actually just be drawings of cats, baby tigers that look like cats, stuffed cats or possibly Egyptian mummified cats. You will know a cat is an authentic cat if it is obsessively licking its groin all day long.&lt;br /&gt;
&lt;br /&gt;
==Supernatural powers==&lt;br /&gt;
Zombie Nixon stated in his newspaper, with research from his scientists have found that when cats nap (usually about 24 hours) they are in the realm of the living dead and have supernatural powers. Cats have been known to attack people waking the cat up, but hey, you wouldn't want some old guy waking you up either. Some cats have been known to vomit on dogs. Hitler and his scientists (and hitler melons) have found that cats can defeat the Jews, when they are in such a state. Cats have been known to scratch Jews altering their life because the Jews are now werecats. Some times you can hear hitler yell &amp;quot;Here kitty, kitty, kitty&amp;quot; to his zombie Jews, and yes they do respond to him.&lt;br /&gt;
&lt;br /&gt;
Some guy named Shroedinger attempted to demonstrate the property of a gun in a quantum physics experiment. He was attempting to prove that a cat can be both alive and dead at the same time, but the cat foiled him by bolting the moment the gun was pulled out. Then he attempted to put the cat in a steel box with radioactivity and a flask of poisonous substance to be broken by a device. However, the cat attacked him with claws and teeth, bolted and hid rather than be put in the steel box. This proves that cats are telepathic.&lt;br /&gt;
&lt;br /&gt;
==Purring==&lt;br /&gt;
Cats emit a deep, vibrato sound called a 'purr'. This sound is made by many types of felines. Purring is a painfully loud noise produced by a cat as it shows pleasure, concentrates or thinks. While the sound varies in detail from cat to cat and from species to species (e.g., loudness, treble, wavelength, frequency, etc.), it can generally be described as a sort of tonal buzzing.&lt;br /&gt;
&lt;br /&gt;
Many have debated over the exact essence of a &amp;quot;purring,&amp;quot; but the sound can be most related to that of a computer connecting to the internet via a dial-up connection. Felines produce this enchanting noise simply by inflating and deflating a small sack located near the base of the tail; just above the USB slot. If a cat purrs for four or more hours it is highly recommended you contact a doctor. Some believe that rare frequencies of purring can cause a human's head to asplode, but the supposed infrequent occasions have been dismissed entirely by pundits. Yet to be confirmed or denied, however, is the belief that purring is in fact an audible noise pollution caused by the cat's internal areas producing radiation (known as ρ radiation) in a plot to kill their masters and take over the world. This radiation may be the cause of the phenomenon known as the lolCat effect.&lt;br /&gt;
===Birds===&lt;br /&gt;
Some cats purr so strongly that their entire bodies vibrate. It's known that cats chase birds, but very few people know that cats purr this loud only after they've swallowed an entire hummingbird. The continuous audible &amp;quot;purring&amp;quot; noise heard is the avian desperately trying to escape. A guttural ripping sound can be heard indicating both the hummingbird's successful escape along with the cat's extra life repairing the damage. After this behaviour cats don't run out of lives, because once the penultimate life is used the cat's teeth vanish and it is very nearly impossible for them to gum a hummingbird back into it's gullet when this happens. (When cats lose all nine of their lives they come back to haunt us.)&lt;br /&gt;
&lt;br /&gt;
===Generators===&lt;br /&gt;
A cat can, undoubtedly, be hooked up to a generator whilst purring to collect the full capacity of it's awesomeness. Direct use of these pussitively charged ions is prohibited in many areas as it (rarely) may cause the receiver's head to asplode unexpectedly. It is recommended a modified standard battery, or special use ''cattery,'' be used to store this energy. These devices allow a proper meowing of the line voltage to be safely obtained. This stored cat energy gives the user a comforting pleasure nine times that of kitten huffing if used in controlled doses. Some side effects of Purre-Energy include ultimate sleeping power or an insatiable craving for catnip.&lt;br /&gt;
&lt;br /&gt;
==Scientific achievements==&lt;br /&gt;
===Teleportation===&lt;br /&gt;
Cats played an integral (and hitherto unmentioned) part in the development of teleportation systems on spaceships. By observing how cats often appear directly under people's feet seemingly out of nowhere Isaac Newton worked out the biological aspects of teleportation. (Using a resonating frequency that vibrated postulated matter, Newton was often discovered by chaperons in girl's locker rooms.) It has been scientifically proven that cats &amp;quot;teleport&amp;quot; quieter on soft surfaces such as carpet, peat moss, or corpses; however testing was inconclusive for other surfaces such as tile, water or airplane wings. With a rumored ability to make inter-dimensional time jumps cats have been known to pop out of the air and leave rats heads on your bed. Nice.&lt;br /&gt;
&lt;br /&gt;
===Cats in time===&lt;br /&gt;
Back in the 1950s, a cat fraternity at the infamous Feline University decided to invent a time machine, and they did; in a few hours too. After a quick discussion, the group decided to go back to the beginning of the universe to see what really happened; and who or what created them (although it is obvious it was His Noodlyness). Wackily enough, instead of the beginning of the universe they were detoured by a space-time monkey wearing an orange reflective vest and wound up at the Ruler of Time's apartment block. She demanded they tell her what a holla back girl was or she'd call the vet and get them all fixed. Deafened by the Ruler of Time's booming voice and girlish figure, the fraternity cats lost their janglies to a scalpel.&lt;br /&gt;
&lt;br /&gt;
Sexually confused, they each embarked on their own journey through time screwing up prominent figures of history, such as Charlie Chaplin, moose, Napoleon, and Jane Fonda (Oscar Wilde was already quite crackers). Luckily, they were unable to cause many mancat babies to be made and ultimately avoid the new race which may have sparked a global conflict. Other stuff also happened that ended with the creation of cellphones and the first record of &amp;quot;Bad Motherfucker&amp;quot; written on a wallet.&lt;br /&gt;
&lt;br /&gt;
==Importance in other topics==&lt;br /&gt;
===Physics in relation to cats===&lt;br /&gt;
It has been universally proven that cats always land on their feet when pushed from a 10th story balcony, and it is a widely known fact that a cat reaches its terminal velocity (the fastest speed it can reach before it stops accelerating and moves at a constant speed) after falling a mere seven stories. A cat might sustain minor bruises and such from a fall from this height. It actually has a reduced risk of injury if falling from a height greater than seven stories, because it has time to orient itself feet-first and stretch out like a flying squirrel to absorb the impact better.&lt;br /&gt;
&lt;br /&gt;
To test this scientific discovery, a cat was lobbed off the roof of a 100-story building, plummeting to the ground, where it hissed up at the scientists and scurried into an alley after a mouse.&lt;br /&gt;
&lt;br /&gt;
Final conclusion based on result of experiment: cat + 100 stories=angry cat. This result can also be expressed using the equation &amp;lt;math&amp;gt;c+100s=ac&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
It is also widely known that buttered toast tends to land butter side down when dropped. Deranged lunatics once had a theory that if they buttered the back of a cat with I can't believe it's not butter, and threw the cat off a ledge, the laws of physics would battle it out, while one law is trying to land butter side down, the other law is trying to land on its paws, which would result in anti-gravity struggle in mid-air to fulfill the proper law(s). Although this theory was widely believed for a few years, it was later proven wrong when the experiment was carried out with real butter, leaving two of our five scientists blind due to the feline clawing their eyes out. They concluded that cats don't always land butter side down, and to this day cats landing butter side down is not one of the laws of physics.&lt;br /&gt;
&lt;br /&gt;
Alternate theories suggest that buttering the back of a cat would launch it into a perpetual horizontal spin every time it jumped. Some have even suggested that this could be the holy grail of a new energy source, the elusive perpetual motion machine. However, dissenters (from [[Saudi Arabia]] and [[OPEC]]) have argued that it would most likely result in more man made tornadoes, hurricanes and monsoons.&lt;br /&gt;
&lt;br /&gt;
Cats always landing on their feet is also not one of the laws of physics. Sometimes, they fall so fast that they don't have enough time to swivel around and they land on their side like a pancake. Cats also must protect themselves, because in the wild they need to be agile, flexible, large in appearance to enemies and able to lick their anus, therefore toast lands different ways depending on how it fell, and cats landing on their feet is an instinct, so...um...what the hell am I trying to prove?&lt;br /&gt;
&lt;br /&gt;
Various other hypotheses suggesting that the cat will still fall on its feet and then roll over exist. But no one has ever proven such ridiculous theories yet, and never plan to.&lt;br /&gt;
&lt;br /&gt;
Another possibility is that if you let a cat fall with buttered toast strapped to its back over a highly expensive carpet, it will land on its feet, destroy the carpet in anger and then roll over in order to get rid of the toast, ruining the carpet beyond all reason.&lt;br /&gt;
&lt;br /&gt;
NASA has also discovered that the catfall principle could be used as a potentially good source of anti gravity. If one's spaceship holds a sufficient catmass then there is no need for expensive rockets. Alien cultures have long known this and have been using catpower as their main means of atmospheric flight since 3 million B.C., although we humans are such idiots that we've never thought to use cats for this purpose until recently. Unbeknownst to many, the eerie hum of UFOs is actually the sound of hundreds of purring tabby cats. Cat Power wrote about the phenomenon, and the way it changed interstellar travel forever, in her album ''You Are Free''.&lt;br /&gt;
&lt;br /&gt;
This can be expressed using the formula &amp;lt;math&amp;gt;(m_c+m_t+m_b)/m_s=t_s&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;m_c&amp;lt;/math&amp;gt; is the cat's mass, &amp;lt;math&amp;gt;m_t&amp;lt;/math&amp;gt; is the toast's mass, &amp;lt;math&amp;gt;m_b&amp;lt;/math&amp;gt; is the butter's mass, and &amp;lt;math&amp;gt;t_s&amp;lt;/math&amp;gt; is the spaceship's thrust.&lt;br /&gt;
&lt;br /&gt;
===Cats and ceilings===&lt;br /&gt;
''&amp;quot;Ceiling cats&amp;quot;'' have been around for as long as man has had homes with white interior paint; spontaneously appearing in a square shaped hole between the stucco and the attic. (''This is especially disturbing in a multi-story structures when one is on a lower floor.'') For fear of a tear in the potential dimensional rift it is illegal to remove ceiling cats in most countries. Contrary to popular belief cats do not appear to watch or prevent masturbation, but to insure the sound structural integrity of housing units, the prevention of masturbation is simply a side effect of cat inspection.&lt;br /&gt;
&lt;br /&gt;
===Relationship with numbers===&lt;br /&gt;
The relationship between cats and the number nine is well known from ancient times. A cat is said to have nine lives. 9:19 am is known as the cat moment. At that time cats grow whiskers and furs. At that very moment, the hands of the clock looks like a canon, I mean a Howitzer. The etymological meaning of the Hawaiian word Howitzer is something that has the ut(tail) in hawa(air), which, precisely, refers to a cat. The number nine depicts a cat with its tail between the legs. This conveys the meaning that they are peaceful animals and cherish world peace. The number nine also denotes negation and it is well known that cats were the Egyptian God of negation. This sense of negation has survived in various cultural aspects throughout the world. In German Nine means No. In Bangla, it is called Noy, which also means no. In India taxi drivers stop their cars if a cat crosses their road. This phenomenon is known as &amp;quot;billi ne cut diya&amp;quot; or &amp;quot;the cat has cut&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===In subliminal messaging===&lt;br /&gt;
Cats have also used subliminal messaging to influence people. This can be seen in newspaper articles, television programs and books. The prominent author Molly Katz is actually a cat hidden behind a clever pen-name. Her subliminal messages have destroyed many human relationships to further the aims of cat worship. The next time you find a cover of one of her books in the &amp;lt;S&amp;gt;bargain books&amp;lt;/S&amp;gt; recycle bin take a look at how authentic her human exoskeleton looks on the book jacket. Cats often use subliminal messaging to change the topic during conversations and written works. Cats should '''ALWAYS''' be given lots of tuna. &amp;quot;Cat&amp;quot; in Latin does not mean &amp;quot;beats with huge face.&amp;quot; You should always leave the dog outside at night. ''There are 47 subliminal cat messages in the preceding paragraph.''&lt;br /&gt;
&lt;br /&gt;
==UltraCationalists==&lt;br /&gt;
After the Second Crusade, the primitive (but really resourceful; like ''Boy George Scouts'', except not gay) group KiTTeNS splintered into two factions, the '''Loyalist KiTTeNS''' and the brand-spanking new &amp;lt;S&amp;gt;Catstabbers&amp;lt;/S&amp;gt; '''UltraCationalists'''. These UltraCationalists started out in China (Modern-day Cleveland) and eventually moved to the Middle East. They founded a really awesome citadel and a town provided daycare services. These UltraCationalists invented a new trickblade that came out of their paws, which was really useful for shaming their owners and telemarketers through phone lines. Although they had a tabby coat to be sure they looked awesome while running and climbing, they also wore a never-dirty white robe with red ribbons in around their tails, which caused them to look like bicycles to any passers-by. Occasionally, the highly experienced members would ring bells with their teeth, and click baseball cards to simulate the effect when around the city guards of Jerusakitten, Catre, and Dameow.&lt;br /&gt;
&lt;br /&gt;
These highly trained UltraCationalists eventually got too far ahead of themselves, and wound up fighting the Templarps, a group of radical, done-so-many-times-it-isn't-groundbreaking-or-controversial-anymore Christian fanatics who have set up a conspiracy that goes all the way back to the invention of sliced bread (holy shit!!!!). The group lasted for another five hundred years until the Ubisoft Montreal systematically killed every non-due paying member one by one and destroyed all cellophane records of them.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
===Cleanliness===&lt;br /&gt;
Cats are the creatures of the intellectually superior in film and dance but are often the sad victim of social ostracism when covered in dipping sauce. (Cat's who live with unlonely old people fear being eaten at a pre-determined time when covered with savory's as well.) Cats figuring out that no one wants to be touched by their sticky little paws when damp, have developed an aversion to being covered by any type of liquid other than their own spittle. Traditionally this is due to the first seasoned cats licking themselves clean as a last resort when being chased be ravenous villagers. This cat's genetically shared memory of being doused in delicious sauce begat a coincidence of cleanliness, and provides the feline with a happy endorphin release.&lt;br /&gt;
&lt;br /&gt;
===Bottoms===&lt;br /&gt;
It is a lesser-known fact that cats' backsides do, in fact, look like (*) towel holders. There has of course been hearty debate as to the reason for this, most notably by certain theologians who maintain that this is evidence of God existing. This is disputed by those who believe He specifically bought the towel holders from something not far off a cosmic Home Depot. Cats are actually larger on the inside than the outside, which explains why the litter box is overflowing. Biscuit Nipples.&lt;br /&gt;
&lt;br /&gt;
==Why cats are better than dogs==&lt;br /&gt;
Cats have softer hair, don't bark all night, pay their taxes, never pant, and they don't pry into your personal business (unless its got to do with {{USERNAME}}'s dirty, dirty sex practices.) Cats clean themselves, and use litter boxes, while dogs shake water all over you after you have generously given them a bath, and dig in the sand (oblivious to its purpose as a litterbox). Cats (while being sometime hostile, evil little bastards) are actually thoroughly better than canines. They process thought to create solutions to cat problems. (Though evil thoughts about destruction, Twisted Sister, masturbation, and of course, NBC Dateline, sometimes creep in.) They have an extraordinary ability to brainwash humans into doing their &amp;lt;S&amp;gt;evil&amp;lt;/S&amp;gt; humane deeds, like making the family dog stay outside, or watching the DaVinci Code. Dogs can do none of these things, and therefore are not as talented as cats. (Will they one day be shunned by mankind?) Cats often chase evil spirits from the room, whereas dogs are content to let them feed on your soul provided they receive attention from you at some (now or future) point. Some dogma focused scientists theorize this will result in the end of mankind as once the cats have control over robots created to open cans of food, cats will be out to kill us all.&lt;br /&gt;
&lt;br /&gt;
Cats have amazingly creative ideas on how to please their humans. They know humans like to decorate things and, like cats, are fascinated by texture, so they add a creative touch to sofas and curtains by shredding them. They know humans like interesting smells, so they create interesting [[Smelly Cat|smells]] by pissing in their food, drink, wardrobes, shoes, etc. They know humans like movement, so they open and close doors continuously, occasionally with the humans' help since humans like interaction. They know humans like to play hide and seek, so they play hide and go seek by hiding in the linen closet on your best towels or clean sheets, or vomiting and leaving excrement in hard to find places or hiding dead animals in the hallway and in your bed. They know humans like [[porn]] and tend to be voyeurs, so they lick gross parts of their body.&lt;br /&gt;
&lt;br /&gt;
==Why cats are better than humans==&lt;br /&gt;
Theoretical theorists postulate an alternate theory that nature created the cat as a gentle companion to humans, to keep them company and not judge them. Nature, however, likes to fuck with humans, and the soft nature of a cat is not the case. Because of this the theorists have claimed that a cat will sit on the top of the refrigerator for hours on end, &amp;lt;s&amp;gt;watching for mice&amp;lt;/s&amp;gt; judging its owners' numerous deficiencies with a look of disdain that is genetically impossible to hide. They say this smug view from the refrigerator, inherently condescending, proves to the cat that people are idiots. Meanwhile they go on to say the average cat owner sits for hours on the couch staring at a talking box, ignoring the reeking litterbox, forgetting the empty food and water dishes, only to fall asleep on the couch before failing to contribute to cat society at large. The cat, incensed that the litter box has three piles of scat and multiple piss-pies, begins to simmer with rage. It feels that such a highly sophisticated creature should not have to endure standing in its own waste, (the equivalent of a human not flushing the toilet for a week). The cat becomes infuriated and resorts to using the couch as a scratching post and relieving itself in the distant corners of the back rooms for revenge: &amp;quot;Cats can be very catty when pissed off,&amp;quot; claims one report. Theorists state that although a cat has no eyebrows, it can create a &amp;quot;pissed off&amp;quot; look on demand; and rightfully so! ''&amp;quot;How would you like it if you had to crap in a box of sand with your last three weeks of excrement?&amp;quot;'' a second report asks. ''&amp;quot;And then, after wading through this sewer-like environment, had to jump on the kitchen table to eat crumbs of delicious food, unlike your own food which is basically pigs feet, chicken guts, and whole wheat?&amp;quot;'' it further rambles on. Additional thoughts on the subject abound from the theorists... but we've covered all the main points here.&lt;br /&gt;
&lt;br /&gt;
==Kitten huffing==&lt;br /&gt;
===Cats and the huff economy===&lt;br /&gt;
In Broketober of 2009, economists discovered that a special kind of non-huffable cat existed; and that this unique breed, known as the '''EconoCats''', actually control all world economies. In their effort to &amp;quot;streamline world affairs,&amp;quot; the EconoCats typical utilize dream meandering, thought transmutation, atmospheric transmutation, and monetary policy. Originally revealed by a drug-addled dream by Some Guy, moneysmiths recognized them immediately. Fortunately for the huff-addicted, these non-huffable cats remain a minority limited to less than two dozen in number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;toccolours&amp;quot; style=&amp;quot;float:right; margin:0 0 0.9em 1em; width:20em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=2 style=&amp;quot;text-align:center;&amp;quot; |&lt;br /&gt;
*[[A Cat on a Laptop]]&lt;br /&gt;
*[[Stupid Cats]]&lt;br /&gt;
*[[HotCat]]&lt;br /&gt;
*[[Catwoman]]&lt;br /&gt;
*[[Murphy's law application for antigravitatory cats|Murphy's law application for antigravitatory cats]]&lt;br /&gt;
*[[Eye Lasers]]&lt;br /&gt;
*[[Feral cat|Feral Cat]]&lt;br /&gt;
*[[Cat girl|Cat Girls]]&lt;br /&gt;
*[[Dog]]&lt;br /&gt;
*[[Kitty King]]&lt;br /&gt;
*[[Percy]]&lt;br /&gt;
*[[101 uses for a dead cat|101 uses for a dead Cat]]&lt;br /&gt;
*[[Cats with guns]]&lt;br /&gt;
*[[Fernando Burtoni]]&lt;br /&gt;
*[[Ceiling Cat]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.somethingawful.com/d/news/Cat-urine.php One of the many joys of Cat ownership]&lt;br /&gt;
*[http://www.Catsthatlooklikehitler.com/ CatsThatLookLikeHitler.com]&lt;br /&gt;
*[http://www.flyCatfly.com/ Parachuting and sky diving for Cats]&lt;br /&gt;
*[http://www.public-domain-image.con/animals/cat/index.html Cat public domain images]&lt;br /&gt;
*[http://cooolcaats.webs.com/picturesofcats.htm A Viable source of informations regarding cats.]&lt;br /&gt;
*[http://www.youtube.com/watch?v=E96YGSaDaLg&amp;amp;feature=fvwrel Cute and adorable, lovable cat]&lt;br /&gt;
*[[uncyclopedia:Cat|Main article on uncyclopedia]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Atanasij&amp;diff=1160</id>
		<title>User:Atanasij</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Atanasij&amp;diff=1160"/>
		<updated>2023-05-16T16:40:24Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Atanasij&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;im a user idc&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:123.154.192.84&amp;diff=1159</id>
		<title>User:123.154.192.84</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:123.154.192.84&amp;diff=1159"/>
		<updated>2023-05-16T16:40:22Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 123.154.192.84&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to webXP! Feel free to look around. &lt;br /&gt;
Keep in mind, this is a work in progress! &lt;br /&gt;
!!! BEST VIEWED IN FIREFOX !!!&lt;br /&gt;
&lt;br /&gt;
Some stuff we've made so far:&lt;br /&gt;
&lt;br /&gt;
- Functional File Explorer&lt;br /&gt;
- Resizable Windows &lt;br /&gt;
- Switchable File Explorer views&lt;br /&gt;
- Openable files (images, text, webpages, winamp skins)&lt;br /&gt;
- Window controls (maximize, minimize, close)&lt;br /&gt;
- The Start Menu (submenus a WIP)&lt;br /&gt;
- Full Winamp + Skins implementation ala WebAmp&lt;br /&gt;
- Windows Picture Viewer&lt;br /&gt;
- Command Prompt&lt;br /&gt;
- Internet Explorer + a WIP library of finely aged sites&lt;br /&gt;
- Display Properties (with desktop/theme/resolution changing functionality)&lt;br /&gt;
- Changeable Themes*&lt;br /&gt;
- This Notepad app :P&lt;br /&gt;
- A WIP Windows Media Player &lt;br /&gt;
- &lt;br /&gt;
- An add-in of Classic Minecraft - Browse through the system to find more goodies.&lt;br /&gt;
&lt;br /&gt;
* Navigate to C:\WINDOWS\Resources\Themes\Luna.theme to try it out.&lt;br /&gt;
&lt;br /&gt;
Huge credit to @nilsding for their work on window management and filesystem navigation, plus helping me dip my toes into JavaScript.&lt;br /&gt;
&lt;br /&gt;
!!! BEST VIEWED IN FIREFOX !!!&lt;br /&gt;
Enjoy!&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Cab&amp;diff=1158</id>
		<title>User:Cab</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Cab&amp;diff=1158"/>
		<updated>2023-05-16T16:40:20Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 94.233.240.17&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;hi i like windows 96&lt;br /&gt;
&lt;br /&gt;
my website's at http://cbfiel.ml&lt;br /&gt;
&amp;lt;br&amp;gt;and my discord tag is .cab file#6228&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Sys36_Git&amp;diff=1157</id>
		<title>Sys36 Git</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Sys36_Git&amp;diff=1157"/>
		<updated>2023-05-16T16:40:18Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Ctrl&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sys36 Git ([https://git.sys36.net git.sys36.net]) is the central git server for all Windows 96 source code repositories. It is a self hosted GitLab solution, and hosts all current source code.&lt;br /&gt;
[[File:Sys36 git service homepage.png|thumb|The main homepage for unregistered users.]]&lt;br /&gt;
Users can create an account on the service to create pull/merge requests for open projects. Personal project hosting is discouraged, there is a risk of data loss since Sys36 projects carry the biggest priority on the service.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Dobroposter&amp;diff=1156</id>
		<title>User:Dobroposter</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Dobroposter&amp;diff=1156"/>
		<updated>2023-05-16T16:40:16Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Dobroposter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Dobroposter]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Ghost&amp;diff=1155</id>
		<title>User:Ghost</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Ghost&amp;diff=1155"/>
		<updated>2023-05-16T16:40:14Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Ghost&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Ghost is a Windows96 user, who can often be found in the MSGroom, or on the Wiki.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:HolyNetworkAdapter&amp;diff=1154</id>
		<title>User:HolyNetworkAdapter</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:HolyNetworkAdapter&amp;diff=1154"/>
		<updated>2023-05-16T16:40:11Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Rogerbruh.png|frameless]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Mac_In_A_Tosh&amp;diff=1153</id>
		<title>User:Mac In A Tosh</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Mac_In_A_Tosh&amp;diff=1153"/>
		<updated>2023-05-16T16:40:08Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Mac In A Tosh&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Mac In A Tosh Account Page =&lt;br /&gt;
[[File:Authentic account .png|alt=oof with stocks|thumb|227x227px]]&lt;br /&gt;
&lt;br /&gt;
== Meowbah is mid ==&lt;br /&gt;
SD=TB Floppy Disk =KB/MB&lt;br /&gt;
[[File:DOS 3.png|alt=MS-DOS 3 Command Line|thumb|641x641px]]&lt;br /&gt;
Technology really has evolved&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
do not edit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
totally no text below&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i hate meowmid&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Idkwhy&amp;diff=1152</id>
		<title>User:Idkwhy</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Idkwhy&amp;diff=1152"/>
		<updated>2023-05-16T16:40:02Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Idkwhy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Placeholder&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Poland114514&amp;diff=1151</id>
		<title>User:Poland114514</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Poland114514&amp;diff=1151"/>
		<updated>2023-05-16T16:40:00Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Poland114514&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;15 year old，Can Speaks '''Chinese''', '''Polish''', Czech, Slovak, and Ukrainian&lt;br /&gt;
&lt;br /&gt;
Name (It's Not Real): ''Józef Łóżewski''&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Stretch07&amp;diff=1150</id>
		<title>User:Stretch07</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Stretch07&amp;diff=1150"/>
		<updated>2023-05-16T16:39:58Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Stretch07&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;this is pablo&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Themirrazz&amp;diff=1149</id>
		<title>User:Themirrazz</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Themirrazz&amp;diff=1149"/>
		<updated>2023-05-16T16:39:56Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Themirrazz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Themirrazz (aka me) is someone who created Windows 96 apps (keyword: created), and not all of them got good reception from the rest of the Windows 96 community. Long story short, there was some drama about Windows 96 automatically claiming people's IP address in a game called [[Ipv4.Party]], and then the purge of the Discord server, some drama about that plus the Ipv4.Party thing, which included me getting banned from the Windows 96 Discord server and then creating a short-lived campaign that lasted for probably little over a week called [[takebackipv4games|#TakeBackIPv4Games]], and that's where we are right now.&lt;br /&gt;
Ever since, I've been kind of inactive in the Windows 96 community, and only joined once on an alt to share my Brave Sync Code (for starting the world's largest Brave Sync Chain - that also kinda died out after nobody joined it). However, I've recently been doing lots of P3-related projects on my alt GitHub account, including [https://github.com/themirrazzalt/p3protocol documenting the entire &amp;quot;P3 protocol&amp;quot;]. I am now working on being a little more active - and less stupid - in the Windows 96 community, and I'm starting off by adding and editing some wiki pages to help people that are new to the community.&lt;br /&gt;
And dear everyone, I'm sorry for being stupid, and starting a stupid campaign just because Windows 96 auto-claims your IP address, and basically spamming status updates in the Discord server.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Upwader&amp;diff=1148</id>
		<title>User:Upwader</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Upwader&amp;diff=1148"/>
		<updated>2023-05-16T16:39:54Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Upwader&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;hello&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Rgb&amp;diff=1147</id>
		<title>User:Rgb</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Rgb&amp;diff=1147"/>
		<updated>2023-05-16T16:39:52Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Rgb&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;hi&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:User3412&amp;diff=1146</id>
		<title>User:User3412</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:User3412&amp;diff=1146"/>
		<updated>2023-05-16T16:39:49Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by User3412&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Z8&amp;diff=1145</id>
		<title>User:Z8</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Z8&amp;diff=1145"/>
		<updated>2023-05-16T16:39:47Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Z8&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;hmmst&lt;br /&gt;
[[File:Cat.png|thumb|212x212px]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Zander1011&amp;diff=1144</id>
		<title>User:Zander1011</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Zander1011&amp;diff=1144"/>
		<updated>2023-05-16T16:39:39Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Zander1011&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello&lt;br /&gt;
I just created this account to use vector theme&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Woodencrow64&amp;diff=1143</id>
		<title>User:Woodencrow64</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Woodencrow64&amp;diff=1143"/>
		<updated>2023-05-16T16:39:35Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Woodencrow64&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;NOTHING YET&amp;lt;/h1&amp;gt;&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=User:Utf&amp;diff=1142</id>
		<title>User:Utf</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=User:Utf&amp;diff=1142"/>
		<updated>2023-05-16T16:39:30Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Ctrl&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sup&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Windows_96&amp;diff=1141</id>
		<title>Windows 96</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Windows_96&amp;diff=1141"/>
		<updated>2023-05-16T16:39:20Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Ctrl&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Windows 96 v2 screenshot.png|alt=Version 2.0 of Windows 96|thumb|Version 2.0 of Windows 96]]&lt;br /&gt;
Windows 96 is a Web OS that emulates the Windows 9x user interface. The site was created by [[ctrlz]] and [[Dan]], and was inspired by Ubuntu Online tour, windows93.net, and some other web desktops.&lt;br /&gt;
&lt;br /&gt;
The idea of Windows 96 was conceptualized as a web Windows XP clone in 2017, but the project was abandoned a few weeks later. The project was to be named Windows EXP (creative, right?) and was meant to be a parody OS filled with memes and jokes.&lt;br /&gt;
&lt;br /&gt;
Whilst Windows 96 is still somewhat considered a parody OS by its developers, there is also a massive push towards actual usability and utility. The site is potentially useful for devices which are confined to a browser for external content (e.g. chromebooks).&lt;br /&gt;
&lt;br /&gt;
In some respects, Windows 96 is also a website designed to show off what modern browsers are capable of doing. The idea that an entire OS can be contained in a web page is pretty crazy.&lt;br /&gt;
&lt;br /&gt;
== Version History ==&lt;br /&gt;
Below is a list of all major Windows 96 versions.&lt;br /&gt;
&lt;br /&gt;
* [[Windows 96 v0.1]]&lt;br /&gt;
* [[Windows 96 v0.5]]&lt;br /&gt;
* [[Windows 96 v1]]&lt;br /&gt;
* [[Windows 96 v2]]&lt;br /&gt;
* [[Windows 96 v3]]&lt;br /&gt;
* [[Windows 96 Lite]]&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
Windows 96 receives many updates in general.&lt;br /&gt;
&lt;br /&gt;
Major updates are labelled as &amp;quot;service packs&amp;quot;, minor updates are labelled as &amp;quot;patches&amp;quot;, and if enough patches/major updates are applied, the OS version number bumps up.&lt;br /&gt;
&lt;br /&gt;
== Hugs ==&lt;br /&gt;
Windows 96 has had several hugs as of now. A hug is when an influx of users visit your site (aka an unintentional DDoS).&lt;br /&gt;
&lt;br /&gt;
HackerNews Hug (Jul 2021): https://news.ycombinator.com/item?id=27978463&lt;br /&gt;
&lt;br /&gt;
PCGamer Hug (Aug 2021): https://www.pcgamer.com/windows-96-is-a-throwback-to-classic-windows-that-runs-entirely-in-the-browser/&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
The predecessor of Windows 96 was planned to use a Windows XP user interface.&lt;br /&gt;
&lt;br /&gt;
There is a default wallpaper rotation after the release of each major update.&lt;br /&gt;
&lt;br /&gt;
Dan isn't actively working on Windows 96 anymore since mid 2019, but he still composes music and gives ideas for the project.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Virtual_Machine&amp;diff=1140</id>
		<title>Virtual Machine</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Virtual_Machine&amp;diff=1140"/>
		<updated>2023-05-16T16:39:18Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by HolyNetworkAdapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Nov3}}&lt;br /&gt;
[[File:Vm.png|thumb|Virtual Machine app in [[Windows 96 v2|version 2.0 SP2]]]]&lt;br /&gt;
''For the v3 version of this program, see [[Version Browser]].''&lt;br /&gt;
&lt;br /&gt;
'''Virtual Machine''' (in v3 known as Version Browser) is a program that allows users to launch old versions of [[Windows 96]] and use them as you would back then. The earliest version is [[Windows 96 v0.1|version 0.1]] and the newest is [[Windows 96 v1|version1.0]].&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Sys36&amp;diff=1139</id>
		<title>Sys36</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Sys36&amp;diff=1139"/>
		<updated>2023-05-16T16:39:16Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Cab&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:sys36}}&lt;br /&gt;
[[File:Sys36 logo black 4x.png|thumb|The current sys36 logo.]]&lt;br /&gt;
sys36 (also SYS36) is a team of 3 lead developers actively developing Windows 96. The team consists of [[ctrlz]], [[ziad87]] and utf. The official website is at [https://Sys36.net sys36.net].&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
* Even though the Windows 96 boot logo states &amp;quot;Mikesoft&amp;quot;, this is obviously not the actual name of the underlying team - it was simply added for comedic effect.&lt;br /&gt;
* The number 36 has no meaning, it was decided upon out of nowhere when Windows 96 first started development.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Win96_Run_Time&amp;diff=1138</id>
		<title>Win96 Run Time</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Win96_Run_Time&amp;diff=1138"/>
		<updated>2023-05-16T16:39:13Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Kelbaz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Win96 Run Time, sometimes abbreviated as WRT, is the runtime behind the Windows 96 binaries.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
A script executed with the WRT will behave differently than a normal script. Firstly, this script will be able to use &amp;lt;code&amp;gt;FS&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;FSUtil&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;WApplication&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;StandardWindow&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;registerApp&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;deregisterApp&amp;lt;/code&amp;gt; without having to use the &amp;lt;code&amp;gt;w96&amp;lt;/code&amp;gt; namespace before. these script will also be able to use the WRT module API where the &amp;lt;code&amp;gt;module&amp;lt;/code&amp;gt; object is available for exporting data and &amp;lt;code&amp;gt;include&amp;lt;/code&amp;gt; for getting module exported data. Scripts executed with the WRT will also be executed in an asyncronous context, so it is possible to use top-level &amp;lt;code&amp;gt;await&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
To execute a script using the WRT, there are 2 options:&lt;br /&gt;
&lt;br /&gt;
* Start the script with the following shebang: &amp;lt;code&amp;gt;//!wrt&amp;lt;/code&amp;gt;&lt;br /&gt;
* Run the &amp;lt;code&amp;gt;wjs&amp;lt;/code&amp;gt; command with the path to the script&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The Windows Runtime was introduced in Windows 96 v2 Service Pack 2.&amp;lt;blockquote&amp;gt;&amp;quot;A set of APIs which allow you to easily make apps and include modules, without worrying about the filesystem and stuff like that.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''Windows 96 devs in the rel2sp2 changelog.''&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shebang ==&lt;br /&gt;
The shebang is the first line of a binary. The WRT shebang starts with &amp;lt;code&amp;gt;//!wrt&amp;lt;/code&amp;gt;. The shebang denotes that this regular file is a WRT bin, and must be the very first line in any WRT application. &lt;br /&gt;
&lt;br /&gt;
=== The binary specification (BSPEC) ===&lt;br /&gt;
The binary specification (BSPEC) is a way to describe metadata for a WRT bin. It always follows the shebang on the same line, where the cumulative line size must not exceed 256 characters.&lt;br /&gt;
&lt;br /&gt;
The BSPEC is a simple JSON object prefixed with &amp;lt;code&amp;gt;$BSPEC:&amp;lt;/code&amp;gt; and contains the following fields:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;icn&amp;lt;/code&amp;gt; - The name of the icon to use.&lt;br /&gt;
* &amp;lt;code&amp;gt;cpr&amp;lt;/code&amp;gt; - The copyright holder of the application.&lt;br /&gt;
* &amp;lt;code&amp;gt;dsc&amp;lt;/code&amp;gt; - A basic description of the application.&lt;br /&gt;
* &amp;lt;code&amp;gt;frn&amp;lt;/code&amp;gt; - The display name of the application.&lt;br /&gt;
* &amp;lt;code&amp;gt;aut&amp;lt;/code&amp;gt; - The application author.&lt;br /&gt;
* &amp;lt;code&amp;gt;ssy&amp;lt;/code&amp;gt; - The subsystem to use for this application. Can either be &amp;lt;code&amp;gt;gui&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;cli&amp;lt;/code&amp;gt;.&lt;br /&gt;
* &amp;lt;code&amp;gt;ver&amp;lt;/code&amp;gt; - The version of the application.&lt;br /&gt;
&lt;br /&gt;
Below is an example of a binary specification declaration for the File Explorer application.&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
//!wrt $BSPEC:{&amp;quot;icn&amp;quot;:&amp;quot;apps/explorer&amp;quot;,&amp;quot;cpr&amp;quot;:&amp;quot;Copyright (C) Windows 96 Team 2021.&amp;quot;,&amp;quot;dsc&amp;quot;:&amp;quot;System File Explorer&amp;quot;,&amp;quot;frn&amp;quot;:&amp;quot;Explorer&amp;quot;,&amp;quot;ver&amp;quot;:1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=Uploader&amp;diff=1137</id>
		<title>Uploader</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=Uploader&amp;diff=1137"/>
		<updated>2023-05-16T16:39:11Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by 120.28.224.6&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
[[File:Uploader on Windows 96.png|alt=A screenshot of Uploader On Windows 96 v2 (no service pack)|thumb|536x536px|Uploader Screenshot]]&lt;br /&gt;
Uploader is a program used to copy files from your host to [[Windows 96]]. Uploader was first introduced in [[Windows 96 v0.5]]&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
	<entry>
		<id>https://w96.wiki/w/index.php?title=The_Windows_96_HiAsm_Pack/QNA&amp;diff=1136</id>
		<title>The Windows 96 HiAsm Pack/QNA</title>
		<link rel="alternate" type="text/html" href="https://w96.wiki/w/index.php?title=The_Windows_96_HiAsm_Pack/QNA&amp;diff=1136"/>
		<updated>2023-05-16T16:39:07Z</updated>

		<summary type="html">&lt;p&gt;Utf: Reverted edits by 94.233.241.205 (talk) to last revision by Cab&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub|help add questions}}&lt;br /&gt;
==Questions and Answers==&lt;br /&gt;
===How do I use HiAsm?===&lt;br /&gt;
There's a shit ton of tutorials, guides, etc on other websites, including YouTube.&lt;br /&gt;
&lt;br /&gt;
Be aware that most of them are in Russian.&lt;br /&gt;
===The elements are limiting what I can do, how do I exceed those limits?===&lt;br /&gt;
Three options:&lt;br /&gt;
* If you can write JavaScript code, you can use the InlineCode element. Its located in the Tools category.&lt;br /&gt;
* Ask the developer(s) to make an element for what you're trying to do. Or try to make one yourself.&lt;br /&gt;
* Use elements that are available to do the job. Note that this may not work for some things.&lt;br /&gt;
&lt;br /&gt;
===Can I make apps for Windows 93?===&lt;br /&gt;
No. Maybe in the future it will be possible as a separate pack.&lt;br /&gt;
===Why are some elements unavailable in earlier versions?===&lt;br /&gt;
Some things are just unavailable in them. Built-in polyfills might be added later.&lt;br /&gt;
===I want a child window, how do I make one?===&lt;br /&gt;
You can experiment with InlineCode, but that's probably it;&lt;br /&gt;
&lt;br /&gt;
MultiElement(Ex/Poly)s are too complex to implement at the moment. They're the base of ChildWindows.&lt;br /&gt;
==Problems and Solutions==&lt;br /&gt;
===The pack is not showing!===&lt;br /&gt;
Make sure you:&lt;br /&gt;
* Didn't change the IDE's language to English. There's a weird bug that hides custom packs when the language is set to English.&lt;br /&gt;
* Extracted the pack correctly. Make sure you extracted it as (HiAsm installation directory)\Elements\w96 (for example, &amp;lt;code&amp;gt;C:\Program Files (x86)\HiAsm\Elements\w96&amp;lt;/code&amp;gt;). If you extracted it as a subfolder (like (HiAsm installation directory)\Elements\w96\w96), it wont work.&lt;br /&gt;
* Ran the w96.his file. If it shows a &amp;quot;unknown file&amp;quot; window, drag it into the HiAsm icon, or if HiAsm is open, just drag it into the IDE.&lt;br /&gt;
* Didn't delete the Elements.db file. It contains all elements.&lt;/div&gt;</summary>
		<author><name>Utf</name></author>
	</entry>
</feed>