<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=GoodClover</id>
		<title>Just Solve the File Format Problem - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=GoodClover"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Special:Contributions/GoodClover"/>
		<updated>2026-05-15T11:08:20Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-14T13:22:58Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: P stands for &amp;quot;Paint&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = Nitrogen Fingers Paint&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| subcat           = Graphics&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Nitrogen Fingers Paint]] (NFP) is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;br /&gt;
[[Category:File formats named after chemical elements]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Talk:NFP</id>
		<title>Talk:NFP</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Talk:NFP"/>
				<updated>2021-03-14T13:20:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: GoodClover moved page Talk:NFP to Talk:Nitrogen Fingers Paint: P stands for &amp;quot;Paint&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Nitrogen Fingers Paint]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint</id>
		<title>Talk:Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint"/>
				<updated>2021-03-14T13:20:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: GoodClover moved page Talk:NFP to Talk:Nitrogen Fingers Paint: P stands for &amp;quot;Paint&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'll finish this tomorrow [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 02:38, 13 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Whilst [[NFT]] stands for &amp;quot;Nitrogen Fingers Text&amp;quot; I can't find info on what the P in NFP stands for. The [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md &amp;quot;standard&amp;quot;] (if you can really call it that, it's missing alot of details) Just calls it &amp;quot;Paintutils Image&amp;quot;. [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 16:50, 13 March 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/NFP</id>
		<title>NFP</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/NFP"/>
				<updated>2021-03-14T13:20:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: GoodClover moved page NFP to Nitrogen Fingers Paint: P stands for &amp;quot;Paint&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Nitrogen Fingers Paint]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-14T13:20:48Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: GoodClover moved page NFP to Nitrogen Fingers Paint: P stands for &amp;quot;Paint&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| subcat           = Graphics&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T17:25:34Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[ComputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFP]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[NFT]] - More of a coloured text format than an image format, but it is mainly used to create images.&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC video format. ([http://www.computercraft.info/forums2/index.php?/topic/23399-video-player-watch-rick-roll-in-computercraft/ from this])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Text</id>
		<title>Nitrogen Fingers Text</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Text"/>
				<updated>2021-03-13T17:20:32Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Not an extension, I misunderstood.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = Nitrogen Fingers Text&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nft}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/modules/main/cc/image/nft.lua &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s nft image Implementation (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/modules/main/cc/image/nft.lua ComputerCraft:Tweaked's CraftOS nft image Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/6-nft.md CraftOS-Standards]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T17:20:04Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T17:09:50Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[ComputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFP]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[NFT]] - Extension of NFP, it's more of a coloured text than an image format, but it is mainly used to create images.&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC video format. ([http://www.computercraft.info/forums2/index.php?/topic/23399-video-player-watch-rick-roll-in-computercraft/ from this])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint</id>
		<title>Talk:Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:52:33Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'll finish this tomorrow [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 02:38, 13 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Whilst [[NFT]] stands for &amp;quot;Nitrogen Fingers Text&amp;quot; I can't find info on what the P in NFP stands for. The [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md &amp;quot;standard&amp;quot;] (if you can really call it that, it's missing alot of details) Just calls it &amp;quot;Paintutils Image&amp;quot;. [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 16:50, 13 March 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint</id>
		<title>Talk:Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:50:50Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'll finish this tomorrow [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 02:38, 13 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Whilst [[NFT]] stands for &amp;quot;Nitrogen Fingers Text&amp;quot; I can't find info on what the P in NFP stands for. The &amp;quot;standard&amp;quot; (if you can really call it that) Just calls it &amp;quot;Paintutils Image&amp;quot;. [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 16:50, 13 March 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T16:49:33Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[CompputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFP]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[NFT]] - Extension of NFP, it's more of a coloured text than an image format, but it is mainly used to create images.&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC video format. ([http://www.computercraft.info/forums2/index.php?/topic/23399-video-player-watch-rick-roll-in-computercraft/ from this])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:FormatInfo</id>
		<title>Template:FormatInfo</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:FormatInfo"/>
				<updated>2021-03-13T16:48:11Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Extended To&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table class=&amp;quot;infobox formatinfo&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;float: right; border: 1px solid #666666; max-width: 25%; overflow: hidden; background-color:{{#switch: {{{formattype}}}&lt;br /&gt;
|electronic=#F8E0F7&lt;br /&gt;
|physical=#F6E3CE&lt;br /&gt;
|organic=#CEF6CE&lt;br /&gt;
|Languages=#CEE3F6&lt;br /&gt;
|#F8E0F7&lt;br /&gt;
}};&lt;br /&gt;
 padding: 0.25em; margin: 0.25em 1em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th colspan=&amp;quot;2&amp;quot;&amp;gt;[[File Formats|File Format]]&amp;lt;includeonly&amp;gt;[[Category:File Formats]]&amp;lt;/includeonly&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{FormatInfo/row|Name|{{{name|{{PAGENAME}}}}}{{DEFAULTSORT:{{{name|{{PAGENAME}}}}}}}}}&lt;br /&gt;
{{FormatInfo/row&lt;br /&gt;
| Ontology&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#switch: {{{formattype}}}&lt;br /&gt;
|electronic=[[Electronic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Electronic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|physical=[[Physical File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Physical File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|organic=[[Organic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Organic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|[[{{{formattype|Electronic File Formats}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{formattype|Electronic File Formats}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat|}}}&lt;br /&gt;
|[[{{{subcat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat2|}}}&lt;br /&gt;
|[[{{{subcat2}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat2}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat3|}}}&lt;br /&gt;
|[[{{{subcat3}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat3}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat4|}}}&lt;br /&gt;
|[[{{{subcat4}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat4}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat5|}}}&lt;br /&gt;
|[[{{{subcat5}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat5}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
}}{{#if:{{{extensions|{{{extension|}}}}}}|&lt;br /&gt;
{{FormatInfo/row|[[Filename extension|Extension(s)]]|{{{extensions|{{{extension}}}}}}}}&lt;br /&gt;
}}{{#if:{{{mimetypes|{{{mimetype|}}}}}}|&lt;br /&gt;
{{FormatInfo/row|[[MIME types|MIME Type(s)]]|{{{mimetypes|{{{mimetype}}}}}}}}&lt;br /&gt;
}}{{#if:{{{locfdd|}}}|&lt;br /&gt;
{{FormatInfo/row|LoCFDD|{{{locfdd}}}}}&lt;br /&gt;
}}{{#if:{{{fourccs|}}}|&lt;br /&gt;
{{FormatInfo/row|[[FourCC]]|{{{fourccs}}}}}&lt;br /&gt;
}}{{#if:{{{pronom|}}}|&lt;br /&gt;
{{FormatInfo/row|[[PRONOM]]|{{{pronom}}}}}&lt;br /&gt;
}}{{#if:{{{type code|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Macintosh type/creator code|Type Code]]|{{{type code}}}}}&lt;br /&gt;
}}{{#if:{{{uniform type|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Uniform Type Identifier|UTI]]|{{{uniform type}}}}}&lt;br /&gt;
}}{{#if:{{{wikidata|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Wikidata identifier|Wikidata ID]]|{{{wikidata}}}}}&lt;br /&gt;
}}{{#if:{{{compression|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Compression]]|{{{compression}}}}}&lt;br /&gt;
}}{{#if:{{{extended from|}}}|&lt;br /&gt;
{{FormatInfo/row|Extended From|[[{{{extended from}}}]]}}&lt;br /&gt;
}}{{#if:{{{extended to|}}}|&lt;br /&gt;
{{FormatInfo/row|Extended To|[[{{{extended to}}}]]}}&lt;br /&gt;
}}{{#if:{{{magic|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Magic]] Bytes|{{{magic}}}}}&lt;br /&gt;
}}{{#if:{{{kaitai struct|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Kaitai Struct|Kaitai Struct Spec]]|[http://formats.kaitai.io/{{{kaitai struct}}}/index.html {{{kaitai struct}}}.ksy]}}&lt;br /&gt;
}}{{#if:{{{spec|}}}|&lt;br /&gt;
{{FormatInfo/row|Spec|{{{spec}}}}}&lt;br /&gt;
}}{{#if:{{{spec availability|}}}|&lt;br /&gt;
{{FormatInfo/row|Spec Availability|{{{spec availability}}}}}&lt;br /&gt;
}}{{#if:{{{reference impl|}}}|&lt;br /&gt;
{{FormatInfo/row|Reference Implementation|{{{reference impl}}}}}&lt;br /&gt;
}}{{#if:{{{conforms to|}}}|&lt;br /&gt;
{{FormatInfo/row|Conforms To|{{{conforms to}}}}}&lt;br /&gt;
}}{{#if:{{{charset|}}}|&lt;br /&gt;
{{FormatInfo/row|[[IANA character set name|IANA charset]]|[http://www.iana.org/assignments/charset-reg/{{{charset}}} {{{charset}}}]}}&lt;br /&gt;
}}{{#if:{{{charsetaliases|}}}|&lt;br /&gt;
{{FormatInfo/row|IANA aliases|{{{charsetaliases}}}}}&lt;br /&gt;
}}{{#if:{{{mibenum|}}}|&lt;br /&gt;
{{FormatInfo/row|IANA MIBenum|{{{mibenum}}}}}&lt;br /&gt;
}}{{#if:{{{codepage|}}}|&lt;br /&gt;
{{FormatInfo/row|Code Page|{{{codepage}}}}}&lt;br /&gt;
}}{{#if:{{{cfstringencoding|}}}|&lt;br /&gt;
{{FormatInfo/row|CFStringEncoding|{{{cfstringencoding}}}}}&lt;br /&gt;
}}{{#if:{{{nsstringencoding|}}}|&lt;br /&gt;
{{FormatInfo/row|NSStringEncoding|{{{nsstringencoding}}}}}&lt;br /&gt;
}}{{#if:{{{endianness|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Endianness]]|{{{endianness}}}}}&lt;br /&gt;
}}{{#if:{{{tpm|}}}|&lt;br /&gt;
{{FormatInfo/row|TPM|{{{tpm}}}}}&lt;br /&gt;
}}{{#if:{{{error resilience|}}}|&lt;br /&gt;
{{FormatInfo/row|Error Resilience|{{{error resilience}}}}}&lt;br /&gt;
}}{{#if:{{{patent license|}}}|&lt;br /&gt;
{{FormatInfo/row|Patent License|{{{patent license}}}}}&lt;br /&gt;
}}{{#if:{{{developed by|}}}|&lt;br /&gt;
{{FormatInfo/row|Developed By|{{{developed by}}}}}&lt;br /&gt;
}}{{#if:{{{maintained by|}}}|&lt;br /&gt;
{{FormatInfo/row|Maintained By|{{{maintained by}}}}}&lt;br /&gt;
}}{{#if:{{{released|}}}|&lt;br /&gt;
{{FormatInfo/row|Released|{{{released}}}}}&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{image|}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:{{{image}}}|200px|{{{caption}}}]]&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{caption|}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;{{{caption}}}&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#if:{{{formattype|}}}||[[Category:FormatInfo without formattype]]}}{{#if:{{{subcat|}}}||[[Category:FormatInfo without subcat]]}}{{#ifeq:{{{formattype|electronic}}}|electronic|{{#if:{{{extensions|}}}||[[Category:FormatInfo without extensions]]}}{{#if:{{{mimetypes|}}}||[[Category:FormatInfo without mimetypes]]}}|}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{FormatInfo&lt;br /&gt;
| name             = &lt;br /&gt;
| formattype       = &lt;br /&gt;
| subcat           = &lt;br /&gt;
| subcat2          = &lt;br /&gt;
| subcat3          = &lt;br /&gt;
| subcat4          = &lt;br /&gt;
| subcat5          = &lt;br /&gt;
| thiscat          = &lt;br /&gt;
| extensions       = &lt;br /&gt;
| mimetypes        = &lt;br /&gt;
| locfdd           = &lt;br /&gt;
| fourccs          =&lt;br /&gt;
| pronom           =&lt;br /&gt;
| type code        =&lt;br /&gt;
| uniform type     =&lt;br /&gt;
| wikidata         =&lt;br /&gt;
| compression      =&lt;br /&gt;
| extended from    =&lt;br /&gt;
| extended to      =&lt;br /&gt;
| magic            =&lt;br /&gt;
| kaitai struct    =&lt;br /&gt;
| spec             =&lt;br /&gt;
| spec availability=&lt;br /&gt;
| reference impl   =&lt;br /&gt;
| conforms to      = &lt;br /&gt;
| charset          =&lt;br /&gt;
| charsetaliases   =&lt;br /&gt;
| codepage         =&lt;br /&gt;
| mibenum          =&lt;br /&gt;
| cfstringencoding =&lt;br /&gt;
| nsstringencoding =&lt;br /&gt;
| endianness       =&lt;br /&gt;
| tpm              =&lt;br /&gt;
| error resilience =&lt;br /&gt;
| patent license   =&lt;br /&gt;
| developed by     =&lt;br /&gt;
| maintained by    =&lt;br /&gt;
| released         =&lt;br /&gt;
| image            =&lt;br /&gt;
| caption          =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
;name: '''(optional)''' The name of the file format. ''Default: &amp;lt;nowiki&amp;gt;{{PAGENAME}}&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
;formattype: '''(optional)''' The [[File Formats|type]] of the file format. Choose 'electronic', 'physical', or 'organic', or specify your own. ''Default: electronic''&lt;br /&gt;
;subcat: '''(optional)''' The subcategory of the file format.&lt;br /&gt;
;subcat2: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat3: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat4: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat5: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;thiscat: '''(optional)''' Special parameter for indicating ontology of a non-terminal subcategory page.&lt;br /&gt;
;extensions: '''(optional)''' The format's known filename extensions. Use [[Template:ext|&amp;lt;nowiki&amp;gt;{{ext}}&amp;lt;/nowiki&amp;gt;]], or [[Template:Noext|&amp;lt;nowiki&amp;gt;{{Noext}}&amp;lt;/nowiki&amp;gt;]] if it is known to be extensionless.&lt;br /&gt;
;mimetypes: '''(optional)''' The MIME type of the format. Use [[Template:mimetype|&amp;lt;nowiki&amp;gt;{{mimetype}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;locfdd: '''(optional)''' Identifier for this format from the Library of Congress Sustainability of Digital Formats, e.g. &amp;quot;fdd000314&amp;quot;. Use [[Template:LoCFDD|&amp;lt;nowiki&amp;gt;{{LoCFDD}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;fourccs: '''(optional)''' FourCC code&lt;br /&gt;
;pronom: '''(optional)''' The [[Sources/PRONOM|PRONOM]] ID of the format, e.g. &amp;quot;fmt/45&amp;quot;. Use [[Template:PRONOM|&amp;lt;nowiki&amp;gt;{{PRONOM}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;type code: '''(optional)''' The Type Code of the file, used by Mac OS Classic. Use [[Template:Type Code|&amp;lt;nowiki&amp;gt;{{Type Code}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;uniform type: '''(optional)''' The Uniform Type Identifier (UTI), used by Mac OS X and iOS. Use [[Template:UTI|&amp;lt;nowiki&amp;gt;{{UTI}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;wikidata: '''(optional)''' Wikidata title ID. Use [[Template:wikidata|&amp;lt;nowiki&amp;gt;{{wikidata}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;compression: Types of compression. Whether Lossy, Lossless, or Both, and whether Optional or Always compressed. i.e. JPEG is Always Lossy.&lt;br /&gt;
;extended from: Any formats this one was based upon.&lt;br /&gt;
;extended to: Any formats that have been derived from this one.&lt;br /&gt;
;magic: A sequence of byte values that can be used to identify the file contents, usually located close to the start of the file.&lt;br /&gt;
;kaitai struct: '''(optional)''' An identifier of a format at [http://formats.kaitai.io Kaitai Struct] project, e.g. &amp;quot;ico&amp;quot; would result in a link to http://formats.kaitai.io/ico/index.html generated.&lt;br /&gt;
;spec: URL of the format specification.&lt;br /&gt;
;spec availability: Type of availability the specification, e.g. commercial, free.&lt;br /&gt;
;reference impl: Link to page about the reference implementation of this format, if any.&lt;br /&gt;
;conforms to: '''(optional)''' The UTI of the parent format in the conformance hierarchy.&lt;br /&gt;
;charset: '''(optional)''' For character encodings: IANA charset parameter value.&lt;br /&gt;
;charsetaliases: '''(optional)''' For character encodings: Variant IANA charset parameter values.&lt;br /&gt;
;codepage: '''(optional)''' For character encodings: Code page number (IBM/MS).&lt;br /&gt;
;mibenum: '''(optional)''' For character encodings: IANA MIBenum.&lt;br /&gt;
;cfstringencoding: '''(optional)''' For character encodings: CFStringEncoding.&lt;br /&gt;
;nsstringencoding: '''(optional)''' For character encodings: NSStringEncoding.&lt;br /&gt;
;endianness: Big-endian or Little-endian byte ordering.&lt;br /&gt;
;tpm: Technical Protection Mechanisms supported by the format, e.g. encryption.&lt;br /&gt;
;error resilience: Is this format able to detect damage or recover from damage to the bitstream.&lt;br /&gt;
;patent license: Unknown, Disputed, Encumbered, (F)RAND, Royalty-Free, Unencumbered.&lt;br /&gt;
;developed by: Who developed the format.&lt;br /&gt;
;maintained by: Who now maintains the format.&lt;br /&gt;
;released: '''(optional)''' The date the format was publicly released.&lt;br /&gt;
;image: '''(optional)''' Illustration to show in infobox.&lt;br /&gt;
;caption: '''(optional)''' Caption for image&lt;br /&gt;
&lt;br /&gt;
===Potential Parameters===&lt;br /&gt;
This is a list of parameters that could be included in this template.&lt;br /&gt;
&lt;br /&gt;
;mime &amp;amp; mime aliases: Split mimetypes into primary type and known aliases.&lt;br /&gt;
;version: The version of the format, e.g. &amp;quot;1.4&amp;quot; for PDF 1.4&lt;br /&gt;
;previous version: Link to page about the previous version of this format.&lt;br /&gt;
;next version: Link to page about the next version of this format.&lt;br /&gt;
;back compat: Whether this version is backwards compatible with the previous version.&lt;br /&gt;
;wikipedia: Name of the Wikipedia page that describes this format, e.g. &amp;quot;JPEG 2000&amp;quot; will be rendered as [[Wikipedia:JPEG 2000|JPEG 2000]]&lt;br /&gt;
;container for: A list of formats this format can contain.&lt;br /&gt;
;contained by: A list of formats that may contain this format.&lt;br /&gt;
;embeddable metadata: Kinds of metadata that can be embedded in this format.&lt;br /&gt;
;dependencies: External resources that files in this format may depend upon, e.g. fonts, or even hardware.&lt;br /&gt;
;namespace: The namespace-uri that defines the file format if it is XML-based.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:File Formats| ]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:45:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
| extended to      = NFT&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
[[NFT]] is an extension of [[NFP]] which allows for characters and character colours to be saved, it is less of an image format and more of a text file with character foreground and background colours.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:39:57Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
[[NFT]] is an extension of [[NFP]] which allows for characters and character colours to be saved, it is less of an image format and more of a text file with character foreground and background colours.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/NFT</id>
		<title>NFT</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/NFT"/>
				<updated>2021-03-13T16:39:36Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Redirected page to Nitrogen Fingers Text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Nitrogen Fingers Text]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Text</id>
		<title>Nitrogen Fingers Text</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Text"/>
				<updated>2021-03-13T16:37:46Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Created page with &amp;quot;{{FormatInfo | name             = Nitrogen Fingers Text | formattype       = electronic | extensions       = {{ext|nft}} | compression      = None | reference impl   = [https:...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = Nitrogen Fingers Text&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nft}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/modules/main/cc/image/nft.lua &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s nft image Implementation (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
| extended from    = NFP&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/modules/main/cc/image/nft.lua ComputerCraft:Tweaked's CraftOS nft image Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/6-nft.md CraftOS-Standards]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Category:ComputerCraft</id>
		<title>Category:ComputerCraft</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Category:ComputerCraft"/>
				<updated>2021-03-13T16:31:35Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is for formats originally created for use with [https://computercraft.cc ComputerCraft] programs and it's default CraftOS system.&lt;br /&gt;
&lt;br /&gt;
If you want to test/use some of this stuff, without installing Minecraft and the ComputerCraft mod, you can use [https://emux.cc/ CCEmuX]—a Java ComputerCraft emulator that runs on desktop.&lt;br /&gt;
&lt;br /&gt;
Some file formats have documentation as a &amp;quot;standard&amp;quot; over at the [https://github.com/oeed/CraftOS-Standards CraftOS-Standards GitHub], however it is fairly poor in quality.&lt;br /&gt;
&lt;br /&gt;
[[Category:Computer platforms]]&lt;br /&gt;
[[Category:Minecraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:29:30Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* External links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
* [https://github.com/oeed/CraftOS-Standards/blob/master/standards/4-paint.md CraftOS-Standards] (Poorly documented)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:16:28Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a [[wikipedia:hexadecimal|hex]] character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 real pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T16:00:24Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Pixel aspect ratio / Character Mode&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to a space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
=== Pixel aspect ratio ===&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paintutils&amp;lt;/code&amp;gt; library (and therefore &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt;) uses character mode for displaying images, meaning one image &amp;quot;pixel&amp;quot; is a character cell.&lt;br /&gt;
Character cells are at a 2:3 aspect ratio, 12×18 &amp;quot;real&amp;quot; pixels in size.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T14:27:02Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Format */ spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treated as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T14:25:41Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Format */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treaded as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program automatically converts all transparent pixels to space when saved.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T14:24:17Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Colours&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treaded as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
&lt;br /&gt;
=== Colours ===&lt;br /&gt;
&lt;br /&gt;
To calculate a colour for a given value do &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; and then treat it as a 24-bit RGB value (8 bits for each of red, green and blue).&lt;br /&gt;
&lt;br /&gt;
It is recommended that a lookup table be generated for performance.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
*: ''Note:'' Lua lists start at 1 so &amp;lt;code&amp;gt;2&amp;lt;sup&amp;gt;x-1&amp;lt;/sup&amp;gt;&amp;lt;/code&amp;gt; is used when generating the lookup table.&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T14:11:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treaded as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|+''[[File:NFP_transparent.png]] represents a transparent pixel.''&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/File:NFP_transparent.png</id>
		<title>File:NFP transparent.png</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/File:NFP_transparent.png"/>
				<updated>2021-03-13T14:09:54Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T14:06:04Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Format&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
An NFP file consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
Each pixel's character must be in the range &amp;lt;abbr title=&amp;quot;0123456789abcdef&amp;quot;&amp;gt;&amp;lt;code&amp;gt;0-f&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt; and be lowercase,&lt;br /&gt;
any other characters (including capital &amp;lt;abbr title=&amp;quot;ABCDEF&amp;quot;&amp;gt;&amp;lt;code&amp;gt;A-F&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;) are treated as fully transparent pixels.&lt;br /&gt;
&lt;br /&gt;
The newline (&amp;lt;code&amp;gt;\n&amp;lt;/code&amp;gt;) character moves to the beginning of the next row.{{fix|End file with newline or not?}}&lt;br /&gt;
Due to the nature of this, it is possible to have rows of different length and therefore means that nonsquare images can be created.&lt;br /&gt;
&lt;br /&gt;
Whilst any unrecognised character is treaded as a transparent pixel, it is recommended that a space be used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c␤&lt;br /&gt;
   eeeeec␤&lt;br /&gt;
  eeeeeee␤&lt;br /&gt;
 eeeeeeeee␤&lt;br /&gt;
  ccccccc␤&lt;br /&gt;
  c33cc5c␤&lt;br /&gt;
  ccccc5c␤&lt;br /&gt;
fffffffffff␤&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Category:ComputerCraft</id>
		<title>Category:ComputerCraft</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Category:ComputerCraft"/>
				<updated>2021-03-13T13:00:20Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is for formats originally created for use with [https://computercraft.cc ComputerCraft] programs and it's default CraftOS system.&lt;br /&gt;
&lt;br /&gt;
If you want to test/use some of this stuff, without installing Minecraft and the ComputerCraft mod, you can use [https://emux.cc/ CCEmuX]—a Java ComputerCraft emulator that runs on desktop.&lt;br /&gt;
&lt;br /&gt;
[[Category:Computer platforms]]&lt;br /&gt;
[[Category:Minecraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Category:ComputerCraft</id>
		<title>Category:ComputerCraft</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Category:ComputerCraft"/>
				<updated>2021-03-13T12:50:49Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Computer platforms]]&lt;br /&gt;
[[Category:Minecraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T02:40:23Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
The format consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
''TO-DO''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c&lt;br /&gt;
   eeeeec&lt;br /&gt;
  eeeeeee&lt;br /&gt;
 eeeeeeeee&lt;br /&gt;
  ccccccc&lt;br /&gt;
  c33cc5c&lt;br /&gt;
  ccccc5c&lt;br /&gt;
fffffffffff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:ComputerCraft]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint</id>
		<title>Talk:Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Talk:Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T02:38:34Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Created page with &amp;quot;I'll finish this tomorrow ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'll finish this tomorrow [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 02:38, 13 March 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T02:37:00Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 &amp;lt;abbr title=&amp;quot;ComputerCraft:Tweaked CraftOS&amp;quot;&amp;gt;CC:T&amp;lt;/abbr&amp;gt;'s paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
The format consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
''TO-DO''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c&lt;br /&gt;
   eeeeec&lt;br /&gt;
  eeeeeee&lt;br /&gt;
 eeeeeeeee&lt;br /&gt;
  ccccccc&lt;br /&gt;
  c33cc5c&lt;br /&gt;
  ccccc5c&lt;br /&gt;
fffffffffff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T02:33:32Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 CC:T's paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
The format consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
''TO-DO''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c&lt;br /&gt;
   eeeeec&lt;br /&gt;
  eeeeeee&lt;br /&gt;
 eeeeeeeee&lt;br /&gt;
  ccccccc&lt;br /&gt;
  c33cc5c&lt;br /&gt;
  ccccc5c&lt;br /&gt;
fffffffffff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table] (Paint/Blit column)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint</id>
		<title>Nitrogen Fingers Paint</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Nitrogen_Fingers_Paint"/>
				<updated>2021-03-13T02:31:09Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Created page with &amp;quot;{{FormatInfo | name             = NFP | formattype       = electronic | extensions       = {{ext|nfp}} | compression      = None | reference impl   = [https://github.com/Squid...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name             = NFP&lt;br /&gt;
| formattype       = electronic&lt;br /&gt;
| extensions       = {{ext|nfp}}&lt;br /&gt;
| compression      = None&lt;br /&gt;
| reference impl   = [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 CC:T's paintutils (lua)]&lt;br /&gt;
| error resilience = None&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[NFP]]{{fix|Stands for?}} is a simple [[text]] file format used by [https://computercraft.cc ComputerCraft] to store images.&lt;br /&gt;
&lt;br /&gt;
CraftOS's &amp;lt;code&amp;gt;paint&amp;lt;/code&amp;gt; program allows for easy editing of these files with a GUI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
&lt;br /&gt;
The format consists of a text file containing a hex character for each pixel.&lt;br /&gt;
&lt;br /&gt;
''TO-DO''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+&amp;lt;code&amp;gt;house.nfp&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! NFP !! PNG !! PNG (nonsquare)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
        c&lt;br /&gt;
   eeeeec&lt;br /&gt;
  eeeeeee&lt;br /&gt;
 eeeeeeeee&lt;br /&gt;
  ccccccc&lt;br /&gt;
  c33cc5c&lt;br /&gt;
  ccccc5c&lt;br /&gt;
fffffffffff&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
''&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|| [[File:NFP_house.png]]&lt;br /&gt;
|| [[File:NFP_house_nonsquare.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/SquidDev-CC/CC-Tweaked/blob/66e42e0817484702d3be7ab880e60246097f7ecb/src/main/resources/data/computercraft/lua/rom/apis/paintutils.lua#L50 ComputerCraft:Tweaked's CraftOS paintutils Implementation (lua)]&lt;br /&gt;
* [https://tweaked.cc/module/colors.html ComputerCraft:Tweaked Wiki's Colour table]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/File:NFP_house_nonsquare.png</id>
		<title>File:NFP house nonsquare.png</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/File:NFP_house_nonsquare.png"/>
				<updated>2021-03-13T02:24:44Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: PNG version of the nonsquare example for NFP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PNG version of the nonsquare example for [[NFP]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/File:NFP_house.png</id>
		<title>File:NFP house.png</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/File:NFP_house.png"/>
				<updated>2021-03-13T02:16:17Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: PNG version of the example for NFP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PNG version of the example for [[NFP]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:FormatInfo</id>
		<title>Template:FormatInfo</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:FormatInfo"/>
				<updated>2021-03-13T01:55:06Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Parameters */ Correct wrong spelling - &amp;quot;error resilience&amp;quot; is used in the template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table class=&amp;quot;infobox formatinfo&amp;quot; border=&amp;quot;0&amp;quot; style=&amp;quot;float: right; border: 1px solid #666666; max-width: 25%; overflow: hidden; background-color:{{#switch: {{{formattype}}}&lt;br /&gt;
|electronic=#F8E0F7&lt;br /&gt;
|physical=#F6E3CE&lt;br /&gt;
|organic=#CEF6CE&lt;br /&gt;
|Languages=#CEE3F6&lt;br /&gt;
|#F8E0F7&lt;br /&gt;
}};&lt;br /&gt;
 padding: 0.25em; margin: 0.25em 1em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th colspan=&amp;quot;2&amp;quot;&amp;gt;[[File Formats|File Format]]&amp;lt;includeonly&amp;gt;[[Category:File Formats]]&amp;lt;/includeonly&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
{{FormatInfo/row|Name|{{{name|{{PAGENAME}}}}}{{DEFAULTSORT:{{{name|{{PAGENAME}}}}}}}}}&lt;br /&gt;
{{FormatInfo/row&lt;br /&gt;
| Ontology&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#switch: {{{formattype}}}&lt;br /&gt;
|electronic=[[Electronic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Electronic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|physical=[[Physical File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Physical File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|organic=[[Organic File Formats]]&amp;lt;includeonly&amp;gt;[[Category:Organic File Formats]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|[[{{{formattype|Electronic File Formats}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{formattype|Electronic File Formats}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat|}}}&lt;br /&gt;
|[[{{{subcat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat2|}}}&lt;br /&gt;
|[[{{{subcat2}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat2}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat3|}}}&lt;br /&gt;
|[[{{{subcat3}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat3}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat4|}}}&lt;br /&gt;
|[[{{{subcat4}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat4}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{subcat5|}}}&lt;br /&gt;
|[[{{{subcat5}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{subcat5}}}]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
|{{#if:{{{thiscat|}}}|[[{{{thiscat}}}]]&amp;lt;includeonly&amp;gt;[[Category:{{{thiscat}}}| ]]&amp;lt;/includeonly&amp;gt;|[[{{{name|{{PAGENAME}}}}}]]}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
}}{{#if:{{{extensions|{{{extension|}}}}}}|&lt;br /&gt;
{{FormatInfo/row|[[Filename extension|Extension(s)]]|{{{extensions|{{{extension}}}}}}}}&lt;br /&gt;
}}{{#if:{{{mimetypes|{{{mimetype|}}}}}}|&lt;br /&gt;
{{FormatInfo/row|[[MIME types|MIME Type(s)]]|{{{mimetypes|{{{mimetype}}}}}}}}&lt;br /&gt;
}}{{#if:{{{locfdd|}}}|&lt;br /&gt;
{{FormatInfo/row|LoCFDD|{{{locfdd}}}}}&lt;br /&gt;
}}{{#if:{{{fourccs|}}}|&lt;br /&gt;
{{FormatInfo/row|[[FourCC]]|{{{fourccs}}}}}&lt;br /&gt;
}}{{#if:{{{pronom|}}}|&lt;br /&gt;
{{FormatInfo/row|[[PRONOM]]|{{{pronom}}}}}&lt;br /&gt;
}}{{#if:{{{type code|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Macintosh type/creator code|Type Code]]|{{{type code}}}}}&lt;br /&gt;
}}{{#if:{{{uniform type|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Uniform Type Identifier|UTI]]|{{{uniform type}}}}}&lt;br /&gt;
}}{{#if:{{{wikidata|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Wikidata identifier|Wikidata ID]]|{{{wikidata}}}}}&lt;br /&gt;
}}{{#if:{{{compression|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Compression]]|{{{compression}}}}}&lt;br /&gt;
}}{{#if:{{{extended from|}}}|&lt;br /&gt;
{{FormatInfo/row|Extended From|[[{{{extended from}}}]]}}&lt;br /&gt;
}}{{#if:{{{magic|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Magic]] Bytes|{{{magic}}}}}&lt;br /&gt;
}}{{#if:{{{kaitai struct|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Kaitai Struct|Kaitai Struct Spec]]|[http://formats.kaitai.io/{{{kaitai struct}}}/index.html {{{kaitai struct}}}.ksy]}}&lt;br /&gt;
}}{{#if:{{{spec|}}}|&lt;br /&gt;
{{FormatInfo/row|Spec|{{{spec}}}}}&lt;br /&gt;
}}{{#if:{{{spec availability|}}}|&lt;br /&gt;
{{FormatInfo/row|Spec Availability|{{{spec availability}}}}}&lt;br /&gt;
}}{{#if:{{{reference impl|}}}|&lt;br /&gt;
{{FormatInfo/row|Reference Implementation|{{{reference impl}}}}}&lt;br /&gt;
}}{{#if:{{{conforms to|}}}|&lt;br /&gt;
{{FormatInfo/row|Conforms To|{{{conforms to}}}}}&lt;br /&gt;
}}{{#if:{{{charset|}}}|&lt;br /&gt;
{{FormatInfo/row|[[IANA character set name|IANA charset]]|[http://www.iana.org/assignments/charset-reg/{{{charset}}} {{{charset}}}]}}&lt;br /&gt;
}}{{#if:{{{charsetaliases|}}}|&lt;br /&gt;
{{FormatInfo/row|IANA aliases|{{{charsetaliases}}}}}&lt;br /&gt;
}}{{#if:{{{mibenum|}}}|&lt;br /&gt;
{{FormatInfo/row|IANA MIBenum|{{{mibenum}}}}}&lt;br /&gt;
}}{{#if:{{{codepage|}}}|&lt;br /&gt;
{{FormatInfo/row|Code Page|{{{codepage}}}}}&lt;br /&gt;
}}{{#if:{{{cfstringencoding|}}}|&lt;br /&gt;
{{FormatInfo/row|CFStringEncoding|{{{cfstringencoding}}}}}&lt;br /&gt;
}}{{#if:{{{nsstringencoding|}}}|&lt;br /&gt;
{{FormatInfo/row|NSStringEncoding|{{{nsstringencoding}}}}}&lt;br /&gt;
}}{{#if:{{{endianness|}}}|&lt;br /&gt;
{{FormatInfo/row|[[Endianness]]|{{{endianness}}}}}&lt;br /&gt;
}}{{#if:{{{tpm|}}}|&lt;br /&gt;
{{FormatInfo/row|TPM|{{{tpm}}}}}&lt;br /&gt;
}}{{#if:{{{error resilience|}}}|&lt;br /&gt;
{{FormatInfo/row|Error Resilience|{{{error resilience}}}}}&lt;br /&gt;
}}{{#if:{{{patent license|}}}|&lt;br /&gt;
{{FormatInfo/row|Patent License|{{{patent license}}}}}&lt;br /&gt;
}}{{#if:{{{developed by|}}}|&lt;br /&gt;
{{FormatInfo/row|Developed By|{{{developed by}}}}}&lt;br /&gt;
}}{{#if:{{{maintained by|}}}|&lt;br /&gt;
{{FormatInfo/row|Maintained By|{{{maintained by}}}}}&lt;br /&gt;
}}{{#if:{{{released|}}}|&lt;br /&gt;
{{FormatInfo/row|Released|{{{released}}}}}&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{image|}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:{{{image}}}|200px|{{{caption}}}]]&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if:{{{caption|}}}|&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;{{{caption}}}&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#if:{{{formattype|}}}||[[Category:FormatInfo without formattype]]}}{{#if:{{{subcat|}}}||[[Category:FormatInfo without subcat]]}}{{#ifeq:{{{formattype|electronic}}}|electronic|{{#if:{{{extensions|}}}||[[Category:FormatInfo without extensions]]}}{{#if:{{{mimetypes|}}}||[[Category:FormatInfo without mimetypes]]}}|}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{FormatInfo&lt;br /&gt;
| name             = &lt;br /&gt;
| formattype       = &lt;br /&gt;
| subcat           = &lt;br /&gt;
| subcat2          = &lt;br /&gt;
| subcat3          = &lt;br /&gt;
| subcat4          = &lt;br /&gt;
| subcat5          = &lt;br /&gt;
| thiscat          = &lt;br /&gt;
| extensions       = &lt;br /&gt;
| mimetypes        = &lt;br /&gt;
| locfdd           = &lt;br /&gt;
| fourccs          =&lt;br /&gt;
| pronom           =&lt;br /&gt;
| type code        =&lt;br /&gt;
| uniform type     =&lt;br /&gt;
| wikidata         =&lt;br /&gt;
| compression      =&lt;br /&gt;
| extended from    =&lt;br /&gt;
| magic            =&lt;br /&gt;
| kaitai struct    =&lt;br /&gt;
| spec             =&lt;br /&gt;
| spec availability=&lt;br /&gt;
| reference impl   =&lt;br /&gt;
| conforms to      = &lt;br /&gt;
| charset          =&lt;br /&gt;
| charsetaliases   =&lt;br /&gt;
| codepage         =&lt;br /&gt;
| mibenum          =&lt;br /&gt;
| cfstringencoding =&lt;br /&gt;
| nsstringencoding =&lt;br /&gt;
| endianness       =&lt;br /&gt;
| tpm              =&lt;br /&gt;
| error resilience =&lt;br /&gt;
| patent license   =&lt;br /&gt;
| developed by     =&lt;br /&gt;
| maintained by    =&lt;br /&gt;
| released         =&lt;br /&gt;
| image            =&lt;br /&gt;
| caption          =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
;name: '''(optional)''' The name of the file format. ''Default: &amp;lt;nowiki&amp;gt;{{PAGENAME}}&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
;formattype: '''(optional)''' The [[File Formats|type]] of the file format. Choose 'electronic', 'physical', or 'organic', or specify your own. ''Default: electronic''&lt;br /&gt;
;subcat: '''(optional)''' The subcategory of the file format.&lt;br /&gt;
;subcat2: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat3: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat4: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;subcat5: '''(optional)''' An additional subcategory of the file format.&lt;br /&gt;
;thiscat: '''(optional)''' Special parameter for indicating ontology of a non-terminal subcategory page.&lt;br /&gt;
;extensions: '''(optional)''' The format's known filename extensions. Use [[Template:ext|&amp;lt;nowiki&amp;gt;{{ext}}&amp;lt;/nowiki&amp;gt;]], or [[Template:Noext|&amp;lt;nowiki&amp;gt;{{Noext}}&amp;lt;/nowiki&amp;gt;]] if it is known to be extensionless.&lt;br /&gt;
;mimetypes: '''(optional)''' The MIME type of the format. Use [[Template:mimetype|&amp;lt;nowiki&amp;gt;{{mimetype}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;locfdd: '''(optional)''' Identifier for this format from the Library of Congress Sustainability of Digital Formats, e.g. &amp;quot;fdd000314&amp;quot;. Use [[Template:LoCFDD|&amp;lt;nowiki&amp;gt;{{LoCFDD}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;fourccs: '''(optional)''' FourCC code&lt;br /&gt;
;pronom: '''(optional)''' The [[Sources/PRONOM|PRONOM]] ID of the format, e.g. &amp;quot;fmt/45&amp;quot;. Use [[Template:PRONOM|&amp;lt;nowiki&amp;gt;{{PRONOM}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;type code: '''(optional)''' The Type Code of the file, used by Mac OS Classic. Use [[Template:Type Code|&amp;lt;nowiki&amp;gt;{{Type Code}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;uniform type: '''(optional)''' The Uniform Type Identifier (UTI), used by Mac OS X and iOS. Use [[Template:UTI|&amp;lt;nowiki&amp;gt;{{UTI}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;wikidata: '''(optional)''' Wikidata title ID. Use [[Template:wikidata|&amp;lt;nowiki&amp;gt;{{wikidata}}&amp;lt;/nowiki&amp;gt;]].&lt;br /&gt;
;compression: Types of compression. Whether Lossy, Lossless, or Both, and whether Optional or Always compressed. i.e. JPEG is Always Lossy.&lt;br /&gt;
;extended from: Any formats this one was based upon.&lt;br /&gt;
;magic: A sequence of byte values that can be used to identify the file contents, usually located close to the start of the file.&lt;br /&gt;
;kaitai struct: '''(optional)''' An identifier of a format at [http://formats.kaitai.io Kaitai Struct] project, e.g. &amp;quot;ico&amp;quot; would result in a link to http://formats.kaitai.io/ico/index.html generated.&lt;br /&gt;
;spec: URL of the format specification.&lt;br /&gt;
;spec availability: Type of availability the specification, e.g. commercial, free.&lt;br /&gt;
;reference impl: Link to page about the reference implementation of this format, if any.&lt;br /&gt;
;conforms to: '''(optional)''' The UTI of the parent format in the conformance hierarchy.&lt;br /&gt;
;charset: '''(optional)''' For character encodings: IANA charset parameter value.&lt;br /&gt;
;charsetaliases: '''(optional)''' For character encodings: Variant IANA charset parameter values.&lt;br /&gt;
;codepage: '''(optional)''' For character encodings: Code page number (IBM/MS).&lt;br /&gt;
;mibenum: '''(optional)''' For character encodings: IANA MIBenum.&lt;br /&gt;
;cfstringencoding: '''(optional)''' For character encodings: CFStringEncoding.&lt;br /&gt;
;nsstringencoding: '''(optional)''' For character encodings: NSStringEncoding.&lt;br /&gt;
;endianness: Big-endian or Little-endian byte ordering.&lt;br /&gt;
;tpm: Technical Protection Mechanisms supported by the format, e.g. encryption.&lt;br /&gt;
;error resilience: Is this format able to detect damage or recover from damage to the bitstream.&lt;br /&gt;
;patent license: Unknown, Disputed, Encumbered, (F)RAND, Royalty-Free, Unencumbered.&lt;br /&gt;
;developed by: Who developed the format.&lt;br /&gt;
;maintained by: Who now maintains the format.&lt;br /&gt;
;released: '''(optional)''' The date the format was publicly released.&lt;br /&gt;
;image: '''(optional)''' Illustration to show in infobox.&lt;br /&gt;
;caption: '''(optional)''' Caption for image&lt;br /&gt;
&lt;br /&gt;
===Potential Parameters===&lt;br /&gt;
This is a list of parameters that could be included in this template.&lt;br /&gt;
&lt;br /&gt;
;mime &amp;amp; mime aliases: Split mimetypes into primary type and known aliases.&lt;br /&gt;
;version: The version of the format, e.g. &amp;quot;1.4&amp;quot; for PDF 1.4&lt;br /&gt;
;previous version: Link to page about the previous version of this format.&lt;br /&gt;
;next version: Link to page about the next version of this format.&lt;br /&gt;
;back compat: Whether this version is backwards compatible with the previous version.&lt;br /&gt;
;wikipedia: Name of the Wikipedia page that describes this format, e.g. &amp;quot;JPEG 2000&amp;quot; will be rendered as [[Wikipedia:JPEG 2000|JPEG 2000]]&lt;br /&gt;
;container for: A list of formats this format can contain.&lt;br /&gt;
;contained by: A list of formats that may contain this format.&lt;br /&gt;
;extended to: Any formats that have been derived from this one.&lt;br /&gt;
;embeddable metadata: Kinds of metadata that can be embedded in this format.&lt;br /&gt;
;dependencies: External resources that files in this format may depend upon, e.g. fonts, or even hardware.&lt;br /&gt;
;namespace: The namespace-uri that defines the file format if it is XML-based.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:File Formats| ]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:Fix</id>
		<title>Template:Fix</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:Fix"/>
				<updated>2021-03-13T01:28:43Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Usage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
START&lt;br /&gt;
--&amp;gt;&amp;lt;sup style=&amp;quot;white-space:nowrap;&amp;quot;&amp;gt;&amp;amp;#91;&amp;lt;i&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MAIN BIT&lt;br /&gt;
--&amp;gt;[[{{{link|:Template:Fix}}}|&amp;lt;span title=&amp;quot;{{{link|Cleanup - {{{1|unspecified}}}}}}&amp;quot;&amp;gt;{{{1|unspecified fix wanted}}}&amp;lt;/span&amp;gt;]]&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
END&lt;br /&gt;
--&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;#93;&amp;lt;/sup&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOCS OR SOMETHING IDK&lt;br /&gt;
--&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{fix|&amp;lt;/nowiki&amp;gt;''Message''&amp;lt;nowiki&amp;gt;|link=&amp;lt;/nowiki&amp;gt;''link''&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
;Message: What needs fixing?&lt;br /&gt;
;link: '''(optional)''' Page to link to, don't add &amp;lt;code&amp;gt;[[ ]]&amp;lt;/code&amp;gt;. Defaults to linking here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:Fix</id>
		<title>Template:Fix</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:Fix"/>
				<updated>2021-03-13T01:18:32Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Rather than defaulting to Cleanup link back to the template page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
START&lt;br /&gt;
--&amp;gt;&amp;lt;sup style=&amp;quot;white-space:nowrap;&amp;quot;&amp;gt;&amp;amp;#91;&amp;lt;i&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MAIN BIT&lt;br /&gt;
--&amp;gt;[[{{{link|:Template:Fix}}}|&amp;lt;span title=&amp;quot;{{{link|Cleanup - {{{1|unspecified}}}}}}&amp;quot;&amp;gt;{{{1|unspecified fix wanted}}}&amp;lt;/span&amp;gt;]]&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
END&lt;br /&gt;
--&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;#93;&amp;lt;/sup&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOCS OR SOMETHING IDK&lt;br /&gt;
--&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Template:Fix</id>
		<title>Template:Fix</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Template:Fix"/>
				<updated>2021-03-13T01:12:53Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Create a basic fix template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
START&lt;br /&gt;
--&amp;gt;&amp;lt;sup style=&amp;quot;white-space:nowrap;&amp;quot;&amp;gt;&amp;amp;#91;&amp;lt;i&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MAIN BIT&lt;br /&gt;
--&amp;gt;[[{{{link|Cleanup}}}|&amp;lt;span title=&amp;quot;{{{link|Cleanup - {{{1|unspecified}}}}}}&amp;quot;&amp;gt;{{{1|unspecified fix wanted}}}&amp;lt;/span&amp;gt;]]&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
END&lt;br /&gt;
--&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;#93;&amp;lt;/sup&amp;gt;&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOCS OR SOMETHING IDK&lt;br /&gt;
--&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T00:23:31Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[CompputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFP]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC video format. ([http://www.computercraft.info/forums2/index.php?/topic/23399-video-player-watch-rick-roll-in-computercraft/ from this])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T00:21:30Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[CompputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFT]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC video format. ([http://www.computercraft.info/forums2/index.php?/topic/23399-video-player-watch-rick-roll-in-computercraft/ from this])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T00:20:46Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[CompputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFT]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC image format.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/User:GoodClover</id>
		<title>User:GoodClover</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/User:GoodClover"/>
				<updated>2021-03-13T00:20:26Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Created page with &amp;quot;Hi, I'm '''Oliver'''. :)  I'm probably going to make/work on: * CompputerCraft/:Category:ComputerCraft ([https://computercraft.cc/ http://computercraft.cc]) * NFT ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm '''Oliver'''. :)&lt;br /&gt;
&lt;br /&gt;
I'm probably going to make/work on:&lt;br /&gt;
* [[CompputerCraft]]/[[:Category:ComputerCraft]] ([https://computercraft.cc/ http://computercraft.cc])&lt;br /&gt;
* [[NFT]] - CC's default very-super-simple-as-it-gets plain text image format. Don't know what it stands for :P&lt;br /&gt;
* [[ComputerCraft Video]]/[[CCV]] - A CC image format.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site is really nice, but unfortunately seems to be fairly unmaintained - and has fallen into a state of disrepair (as in the Wiki itself, not it's content).&lt;br /&gt;
Would be nice if it got freshened a bit and some stuff was updated.&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Portable_Network_Graphics</id>
		<title>Portable Network Graphics</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Portable_Network_Graphics"/>
				<updated>2021-03-13T00:03:34Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: Redirected page to PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[PNG]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:Community_portal</id>
		<title>Just Solve the File Format Problem:Community portal</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:Community_portal"/>
				<updated>2021-03-13T00:01:26Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Broken image in footer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;: ''please add your signature by typing &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; if you add or reply&lt;br /&gt;
&lt;br /&gt;
== Open issues ==&lt;br /&gt;
&lt;br /&gt;
Below is a list of &amp;quot;issues&amp;quot; which would ordinarily be in a ticketing system of some kind, but are here on the Wiki instead, because that's how we roll. As things are resolved, they will be moved to the Discussion page. If there's an appeal or an issue, the conversation can continue there - this page will be for open issues.&lt;br /&gt;
&lt;br /&gt;
Use of case in URLS / links. I went through all the electronic format types pages, and tried to normalise all the pages where I could (there was a mix of link structures - I've tried to get them all (apart from animation - I've been at it all day!) so they are [[file extension]] - [[file type name]]. &lt;br /&gt;
I notice that we have a mix of upper and lower case file extension through out. This means we may have 2 links which should point to the same URL (e.g. [[mix]] and [[MIX]]) is this a known issue with the current layout? --[[User:JaygattusoNLNZ|JaygattusoNLNZ]] ([[User talk:JaygattusoNLNZ|talk]]) 01:32, 20 November 2012 (UTC)&lt;br /&gt;
:Since you're linking both the extension and the name, does that mean that there are supposed to be separate articles for each? I don't know if there's really a need for &amp;quot;mainspace&amp;quot; articles by extension, since there are already categories for that purpose; you can browse them through [[:Category:File formats by extension]]. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 02:12, 20 November 2012 (UTC)&lt;br /&gt;
::I just copied the most common model that I found on the formats pages. The problem is, if you don't homogenize the method, the linking/crosslinking doesn't work properly.  All instances of .doc (for example) should point to the same resource page / disambiguation page. If someone has linked to only format in one place (e.g. [[MS Word]] (.doc)), and someone else the extension (MS Word - [[doc]]), we can't makes sure they point to the same place. The problem occurs because format names and extensions are used interchangeably. You raise an interesting question about the relationship between the ext and the format name. I would argue they are not equal (1:1), nor (1:many) / (many:1) so it makes sense to protect both aspects as definable things - the extension because that's whats most commonly searched for and referred to by users and 'format name' because its more accurate. How is the [[:Category:File formats by extension]] populated? --[[User:JaygattusoNLNZ|JaygattusoNLNZ]] ([[User talk:JaygattusoNLNZ|talk]]) 18:31, 20 November 2012 (UTC)&lt;br /&gt;
:::The categories are inserted when you use the ext template in the infobox. My preference is to have articles by actual format name and use multiple navigation aids (menus, cats, etc.) to get to them. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 01:38, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Article naming convention ==&lt;br /&gt;
&lt;br /&gt;
As mentioned above, there's some dispute over whether to name articles after the full name of a format or its file extension. If using full names, you then get into issues of whether to use the full technical name or a shorter thing that's more popularly used, and in some cases that's even the same as the extension (GIF, for instance). And you also get into tricky issues of capitalization: all-caps like an acronym, all-lowercase like filenames are often done (though this is OS-dependent; some, like MS-DOS, use all-uppercase), or mixed case (proper names capitalized)? And then there's the disambiguation issue of how to name articles on different things that have the same name, which happens sometimes even with long official names, but even more often with short acronyms and file extensions. But there's also yet another issue of which things get separate articles and which are combined, like formats that have had many different versions, etc.&lt;br /&gt;
&lt;br /&gt;
Currently you have things like [[CI]] and [[CT]], recently-created articles that represent two different file types within the data of one type of music tracker. The spec document they link to is the same one, which documents all the file types used in that tracker. Unless there's going to be really a lot to say about each of the specific file types, my own preference would be to have one article called [[CyberTracker]] that discusses all the formats used by the program in question, with subheaders within the article for the different file types, and all the extensions listed in the infobox (and hence in associated categories). If any other indices by extension are built up, they'd also have entries for both CI and CT. For instance, when I documented [[Softdisk Family Tree]], I covered all the various file formats in one article, though there are several versions and multiple files for each. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:39, 21 November 2012 (UTC)&lt;br /&gt;
: I realise I'm as guilty of this as anyone, having used both forms at some point (e.g. [[Surprise! Adlib Tracker v2.0]] and [[CI]]). Indeed, the two articles - [[CI]] and [[CT]] - you refer to were created by me. I guess in general I would favour using a descriptive page name rather than simply the file extension - that seems to be something that's being taken care of by infoboxes and categories.&lt;br /&gt;
&lt;br /&gt;
:On the issue of what gets a separate page and what doesn't, I guess that just comes down to individual discretion. There will be instances where a format has undergone a number of minor revisions over time or has a number of minor variants (e.g. the variant forms of Chaos Music Composer's [[CMC]]) where it would make sense to keep them all to a single page, while a major revision would necessitate a multi-page approach (e.g. the shift with Capella from the binary [[CAP]] to the XML-based [[CapXML]] format).&lt;br /&gt;
&lt;br /&gt;
:However, I'm not sure I agree with [[CI]] and [[CT]] having a single [[CyberTracker]] page. While both link to the same spec document and both are used by the same program, they are different formats serving different purposes. I think in general we should try and distinguish between program and file format - [[S3M]] doesn't belong on the [[ScreamTracker]] page, although each should link to the other. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 14:04, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Since the purpose of the wiki is to document file formats, I think it's good that as many formats as possible are listed in the category pages and that you can browse these pages for format extensions. Sometimes it might be better to link multiple extension to the same article (e.g. a specific application), but not always. I think it is difficult to come up with a strict rule for this (but maybe recommendations and, even better, good examples). --[[User:PN|PN]] ([[User talk:PN|talk]]) 15:08, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::It's a judgment call, certainly. It depends on how the files are typically encountered, distributed, used, etc., and how they're thought of by people who use them; if a bunch of file types related to a particular program are usually found together as part of a larger data set, they most likely belong together in one article (with subsections to describe the function of the particular files), but if they're distinct entities with their own particular treatment (like separate areas of file trading sites for enthusiasts) they should have separate articles, though more descriptive names like &amp;quot;CyberTracker instrument file&amp;quot; might be better than a cryptic and likely ambiguous CI. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 15:46, 21 November 2012 (UTC)&lt;br /&gt;
::And then, somebody has also used a robot to create pages in a separate namespace devoted to file extensions, like [[Ext:cin]]. That's yet another navigational system for getting to information by extension, though those pages oddly don't actually have direct links to the normal pages here about those file formats. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 15:56, 21 November 2012 (UTC)&lt;br /&gt;
::: Yes, that was me with Bender the bot. Still experimenting with it and working on creating a list of all pages in relation to extensions. [[User:Maurice.de.rooij|Maurice.de.rooij]] ([[User talk:Maurice.de.rooij|talk]]) 15:22, 22 November 2012 (UTC)&lt;br /&gt;
::What I'd like to avoid is the messy format somebody did to a few index pages like [[Compression]], where each line has separately hyperlinked format names and extensions (not always in a consistent order) where often one or the other is a redlink, or one redirects to the other, or one is just a disambiguation page, making a somewhat confusing hodgepodge. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:22, 21 November 2012 (UTC)&lt;br /&gt;
:::I've started rearranging the Compression page to be a little less messy. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:56, 22 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== So now what? ==&lt;br /&gt;
The official month of this project is now over... what are the plans for the site now? It's made a good start at documenting file formats, but has a good long way to go yet. (A project like this can never possibly be &amp;quot;finished&amp;quot;, since there are always more file formats coming out of the woodwork, both new ones that are introduced, and old ones that are discovered.) [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 05:10, 1 December 2012 (UTC)&lt;br /&gt;
: This is an awesome project and I will stay committed to it. Of course this first month is just a start. Let's roll people! [[User:Maurice.de.rooij|Maurice.de.rooij]] ([[User talk:Maurice.de.rooij|talk]]) 23:22, 3 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Anybody else still around? ==&lt;br /&gt;
Everybody else seems to have vanished around the middle of December... I'm the only one editing here lately. I hate to put more effort into improving a ghost town... anyone else even reading this? [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 23:16, 2 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I will be editing more once I get back to work - still don't have a home internet connection and working from the local library computers / girlfriend's netbook over public wi-fi is a pain. It would be nice to see more contributions from others - you can see how much work is left to do on the music section alone, and I've really only been creating stub entries for most things. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 13:51, 3 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I still stop by on occasion, and I've vowed to use the site as my first stop when I come across a file format I don't recognize, but I never made any substantial additions, so I'm not sure if that gives you any useful information. (My edits were mostly technical or editorial.) [[User:Gphemsley|GPHemsley]] ([[User talk:Gphemsley|talk]]) 00:18, 13 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'll be editing from time-to-time. Currently a bit snowed under with other work, but planning to do more later in the year. Would also like to review the InfoBox(es) at some point, to ensure the information on this site can be reliably linked up to other information sources. [[User:AndyJackson|AndyJackson]] ([[User talk:AndyJackson|talk]]) 12:10, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm here. Like Andy, my workload is quite high, but I'll be popping in and out. --[[User:Rhetoric X|Rhetoric X]] ([[User talk:Rhetoric X|talk]]) 12:31, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Hi there! I sometimes add a word here or there. I must say this Wiki is pretty good now. Popular formats are nicely described and niche formats are just niche formats so it's sometimes hard to add anything about them. I think that maybe it would be helpful to start adding images to posts. An image explaining format details or a screenshot of an image editor may be a nice addition. What about algorithms in pseudo-code?   --[[User:Tekkno|Tekkno]] ([[User talk:Tekkno|talk]]) 0:28, 7 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::A description of file formats and pseudo-codes would be helpful (although you do not necessarily need a picture). --[[User:Zzo38|Zzo38]] ([[User talk:Zzo38|talk]]) 05:19, 5 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Spam ==&lt;br /&gt;
&lt;br /&gt;
I see the spammers have found the site, as I worried would happen; I run a wiki myself ([http://mpedia.dan.info/ MPedia], about things related to Mensa) and have to constantly play whack-a-mole with them; even adding such annoyances (for legitimate users) as a captcha and e-mail confirmation seem to only slightly slow the spammers down. I don't know the solution. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:59, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:...but &amp;quot;learn-to-read-Korean-in-15-minutes&amp;quot; is a legitimate addition, going to a comic strip explaining the [[Hangul]] writing system, which is in fact a legitimate article here since &amp;quot;file formats&amp;quot; is interpreted expansively to include human written languages. That link ''sounds'' a bit spammy, but if it was from a spammer, it would go to some page selling a dodgy language-learning tool, not a free-to-read resource! (It can start to get tricky distinguishing spam from legitimate stuff when you've got such a wide range of topics here to begin with! Once there's a huge flood of spam to get rid of, there's some danger of legitimate users getting caught in the net too.) [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:03, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yes, it's incumbent on me to make sure we can have people sign up, and be a part of it, without getting spammers. We'll keep exploring. At least bots can't take us on.... I think.... --[[User:Jason Scott|Jason Scott]] ([[User talk:Jason Scott|talk]]) 19:28, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::If you've got some tips about how to configure MediaWiki to have open signups but not get the flood of spambots, let me know; that would help me with my own wiki. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:56, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Orphaned / Blank Pages ==&lt;br /&gt;
&lt;br /&gt;
I've been making an attempt to clear up some of the orphaned pages, but there are a few I'm not sure of - maybe Dan or someone could sort them out?&lt;br /&gt;
&lt;br /&gt;
* [[Emulation]]&lt;br /&gt;
* [[FAQ:File Format]]&lt;br /&gt;
* [[File format extensions list]] (seems to be used for the &amp;quot;ext:&amp;quot; pages but hasn't been updated)&lt;br /&gt;
* [[Library]]&lt;br /&gt;
* [[Original Plan]]&lt;br /&gt;
* [[RAD Game Tools]] (should probably have the individual formats moved to appropriate sections)&lt;br /&gt;
* [[Statistica]] (clearly belongs in Scientific Data formats, but I'm not sure where)&lt;br /&gt;
&lt;br /&gt;
I've also come across a few pages that should probably be deleted - either because they've been blanked at some point (I know I did this to a few pages) or because they contain data duplicated elsewhere.&lt;br /&gt;
&lt;br /&gt;
* [[AA]]&lt;br /&gt;
* [[Compressed executable (.com)]]&lt;br /&gt;
* [[SAP]]&lt;br /&gt;
* [[Barnes &amp;amp; Noble Fixed-layout Format]]&lt;br /&gt;
&lt;br /&gt;
[[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 10:41, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:OK, I deleted those last three; I'll look at the others. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:58, 22 January 2013 (UTC)&lt;br /&gt;
:I put Statistica under &amp;quot;Mathematics&amp;quot; in the science category. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:02, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi Dan, got another one for you - I merged the info from [[ODS files created by Microsoft Office 2007 SP2]] into the main [[OpenDocument Spreadsheet]] page. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 13:59, 25 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added Barnes &amp;amp; Noble to the list (made a bit of a mess and forgot about the rename feature) [[User:Johanvanderknijff|Johanvanderknijff]] ([[User talk:Johanvanderknijff|talk]]) 19:05, 21 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Permissions for user pages ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we can get permission to delete sub-pages of our own user pages? I've been using mine to draft articles bit by bit, rather than release half-finished articles into the wild, and it would be nice to be able to remove the drafts once complete [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 12:43, 3 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm not sure, but as an admin I can delete anything you ask. It might also be possible to use the Move function to move it directly into the intended place. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:45, 3 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== cd.textfiles.com ==&lt;br /&gt;
All the files on http://cd.textfiles.com/ disappeared a few days ago, breaking about a million links on this wiki. Does anyone have any information about that? [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 18:48, 25 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:As I recall from Jason's Twitter feed, he had some server problems, with most of his sites going down at least temporary, and most of them eventually coming back up, but maybe that one had a harder crash. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 19:50, 25 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Broken image in footer ==&lt;br /&gt;
The &amp;quot;Creative Commons 0&amp;quot; image at the bottom of every page (https://www.mediawiki.org/w/skins/common/images/cc-0.png) is broken. Can that be fixed? [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 00:06, 10 July 2015 (UTC)&lt;br /&gt;
:Still broken 5 years later... Is this place even maintained? [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 23:23, 12 March 2021 (UTC)&lt;br /&gt;
::Ok so it appears it should probably be [https://licensebuttons.net/l/zero/1.0/88x31.png this image], it matches the 88x31px that the HTML claims the image would be if it was there. Who maintains this site so it can be fixed? [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 00:01, 13 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia links ==&lt;br /&gt;
At least in my geographical area, Wikipedia has been redirecting &amp;quot;http:&amp;quot; links to &amp;quot;https:&amp;quot;. So, all of the &amp;lt;nowiki&amp;gt;[[Wikipedia:...]]&amp;lt;/nowiki&amp;gt; links in this wiki are getting redirected. Could/should we change these links to use &amp;quot;https:&amp;quot; directly?&lt;br /&gt;
&lt;br /&gt;
The magic &amp;quot;RFC&amp;quot; links like RFC 822 could also use https:, though the http: links still work. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 00:10, 10 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Code ==&lt;br /&gt;
We still have around 50 articles that link to Google Code. My understanding is that the next phase of Google Code's shutdown process will happen on 2016-01-25 (two weeks from today). It would be good to update as many of these as possible before then.&lt;br /&gt;
* [http://fileformats.archiveteam.org/index.php?title=Special%3ALinkSearch&amp;amp;target=http%3A%2F%2Fcode.google.com&amp;amp;namespace= links to http://code.google.com]&lt;br /&gt;
* [http://fileformats.archiveteam.org/index.php?title=Special%3ALinkSearch&amp;amp;target=https%3A%2F%2Fcode.google.com&amp;amp;namespace= links to https://code.google.com]&lt;br /&gt;
[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 21:05, 11 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cleanup of top-level categories ==&lt;br /&gt;
(Call for objections.) I want to do some cleanup of the [[:Category:Top Level Categories|top-level categories]], and make sure there's at least one category for virtually every article. (See [[Special:UncategorizedPages]].) My plans:&lt;br /&gt;
* A new &amp;quot;Meta&amp;quot; category, for articles about the File Formats Wiki (e.g. [[FAQ]], [[Original Plan]], [[Statement of Project]], [[Main Page]], ...).&lt;br /&gt;
* Rename the [[:Category:Geek humor|Geek humor]] category to &amp;quot;Humor&amp;quot;&lt;br /&gt;
* Remove the [[:Category:Computer facts|Computer facts]] category&lt;br /&gt;
* A new &amp;quot;Information&amp;quot; category, for relevant informative articles ([[Ontology]], [[Patents]], ...) that don't have a more suitable top-level category.&lt;br /&gt;
* Maybe someday: A category named &amp;quot;Devices&amp;quot;, or &amp;quot;Hardware&amp;quot;, or even &amp;quot;Things&amp;quot;. Most computers and [[Networked devices]] just aren't formats, IMHO. (But I'm not going to delete the infobox from all the &amp;quot;Networked devices&amp;quot; articles. If we can't figure out a way to have infoboxes for nonformats, then I'll leave them be.)&lt;br /&gt;
[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 15:56, 1 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:Meta]]&lt;br /&gt;
&lt;br /&gt;
== Love It! ==&lt;br /&gt;
Hi there, kudos to all you guys who helped create this valuable resource. Wikipedia is such a snob when it comes to detailed technical documentation so this wiki is a lifesaver. I added a few things to:&lt;br /&gt;
&lt;br /&gt;
* [[SWF#Software]]&lt;br /&gt;
* [[FLA#Software]]&lt;br /&gt;
* [[BSON#Libraries]]&lt;br /&gt;
&lt;br /&gt;
Thanks again!&lt;br /&gt;
&lt;br /&gt;
PS: Can the &amp;quot;thumbs up&amp;quot; icon be changed to something better? Do you want me to design a possible logo?&lt;br /&gt;
&lt;br /&gt;
[[User:Hgupta|Hgupta]] ([[User talk:Hgupta|talk]]) 05:42, 17 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Nice work! As for the thumb icon, you'd have to ask Jason Scott, the owner of this site (and the one who put the thumb up). [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:02, 17 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I support the idea of changing the logo. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 16:08, 18 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What time is it? ==&lt;br /&gt;
I'm making this edit at 17:10 UTC, but the timestamp is: [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 17:25, 2 May 2018 (UTC)&lt;br /&gt;
:&amp;quot;Does anybody really know what time it is; does anybody really care?&amp;quot; -- Chicago&lt;br /&gt;
[posted at 01:20 UTC; let's see when it thinks it is] [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 01:36, 3 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Type / Creator codes ==&lt;br /&gt;
&lt;br /&gt;
Curious what everyone's thoughts are on collecting Type/Creator Codes for Macintosh formats. There seems to be a few attempts at doing this around the webs. Is there a way here to gather them all into one area of the wiki? --[[User:Thorsted|Thorsted]] ([[User talk:Thorsted|talk]]) 17:46, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
* [[Wikipedia:Type_code|Type Code : Wikipedia]] &lt;br /&gt;
* [[Wikipedia:Creator_code|Creator Code : Wikipedia]] &lt;br /&gt;
* [http://www.lacikam.co.il/tcdb/  TCDBx unmaintained]&lt;br /&gt;
* [https://vintageapple.org/macprogramming/pdf/The_Programmers_Apple_Mac_Sourcebook_1989.pdf The Programmers Apple Mac Sourcebook]&lt;br /&gt;
* [https://www.macdisk.com/macsigen.php Mac Signatures]&lt;br /&gt;
&lt;br /&gt;
:Maybe do it similar to how file extensions are handled, as an item in the infobox that links to a category? [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 19:09, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::An article for Mac type/creator codes has been on my to-do list for a while, so we could at least do that, and see if there's any interest in listing lots of codes there. Should it be one article, or two? FormatInfo already has a &amp;quot;type code&amp;quot; param that is supposed to be for the Mac code. Maybe we are supposed to make a &amp;quot;Type Code&amp;quot; template to go along with it, so we can do like &amp;quot;&amp;lt;nowiki&amp;gt;|type code={{Type Code|XXXX}}&amp;lt;/nowiki&amp;gt;&amp;quot;. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 21:07, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::If they were listed in a single article as opposed to a series of categories, I don't see what there would be for a template would do. In that case, the text on the left side of the infobox could link to the list page (although this might be ugly). (It would be convenient if there was something between the complexity of the MediaWiki category system and a list page, but I don't think anything like that exists in a plain Mediawiki installation.) [[User:Effect2|Effect2]] ([[User talk:Effect2|talk]]) 21:30, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Even if they went into the infobox, the category system could potentially be left out out, as is currently done with FOURCCs and MIMETypes (the latter links to an external database, but whether anything is there is based on luck more than anything else, as there are so many unregistered mimetypes). These can still be found with the wiki's search feature. [[User:Effect2|Effect2]] ([[User talk:Effect2|talk]]) 21:13, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::And there's also the Creator Code, as noted above; that refers to what program created the file, so there might be several associated with one file type code (and several file type codes associated with one creator). Perhaps there needs to be a section of the article listing all the code values associated with a given format and/or program (depending on what's covered by the article). [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 21:44, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I like the idea of at least a uniform template for using codes within format descriptions. Since most of the files from the early macintosh days don't have an extension, unless they were cross platform and the Windows extension is used, then the only way to identify the file is from its Type/Creator code. I don't think Apple ever released the full registry, but some estimates are well over 50,000 entries.--[[User:Thorsted|Thorsted]] ([[User talk:Thorsted|talk]]) 03:24, 5 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Reverse engineering formats ==&lt;br /&gt;
I am trying to reverse engineer some formats. Sometimes successfully, sometimes not. My most recent attempt is:&lt;br /&gt;
* http://fileformats.archiveteam.org/wiki/DGI_(Digi-Pic)&lt;br /&gt;
&lt;br /&gt;
Maybe we can do this together instead of everyone here focusing on different things? Also is there a better way to discuss things than writing here?&lt;br /&gt;
[[User:Tekkno|Tekkno]] ([[User talk:Tekkno|talk]]) 01:39, 9 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA ==&lt;br /&gt;
AT is no longer on EFnet: https://archiveteam.org/index.php?title=Archiveteam:IRC#Special_ArchiveTeam_IRC_rules [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 02:57, 8 November 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This is a pretty serious problem. Are there any plans to fix it? -[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 16:22, 12 November 2020 (UTC)&lt;br /&gt;
::Seems like it has been fixed, by removing the CAPTCHA altogether. Let's all keep a keen eye out for spamdalism. [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 03:33, 23 November 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== special:interwiki ==&lt;br /&gt;
don't see it at [[special:specialpages]]? [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 02:57, 8 November 2020 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:General_disclaimer</id>
		<title>Just Solve the File Format Problem:General disclaimer</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:General_disclaimer"/>
				<updated>2021-03-12T23:42:50Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Nobody who contributes here can ensure beyond a reasonable doubt that you will be able to use or convert to/from a given format.&lt;br /&gt;
* We just document the mess, [https://www.youtube.com/watch?v=eFTLKWw542g we didn't make it] (except those of us who did; you know who you are).&lt;br /&gt;
* Documentation is always incomplete and the real world changes quickly, and that goes double for file formats.&lt;br /&gt;
* If your favourite piece of knowledge about an obscure format is missing, it is because you didn't add it yet.&lt;br /&gt;
* Keep backups!&lt;br /&gt;
&lt;br /&gt;
[[Category:Meta]]&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:Community_portal</id>
		<title>Just Solve the File Format Problem:Community portal</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Just_Solve_the_File_Format_Problem:Community_portal"/>
				<updated>2021-03-12T23:23:55Z</updated>
		
		<summary type="html">&lt;p&gt;GoodClover: /* Broken image in footer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;: ''please add your signature by typing &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; if you add or reply&lt;br /&gt;
&lt;br /&gt;
== Open issues ==&lt;br /&gt;
&lt;br /&gt;
Below is a list of &amp;quot;issues&amp;quot; which would ordinarily be in a ticketing system of some kind, but are here on the Wiki instead, because that's how we roll. As things are resolved, they will be moved to the Discussion page. If there's an appeal or an issue, the conversation can continue there - this page will be for open issues.&lt;br /&gt;
&lt;br /&gt;
Use of case in URLS / links. I went through all the electronic format types pages, and tried to normalise all the pages where I could (there was a mix of link structures - I've tried to get them all (apart from animation - I've been at it all day!) so they are [[file extension]] - [[file type name]]. &lt;br /&gt;
I notice that we have a mix of upper and lower case file extension through out. This means we may have 2 links which should point to the same URL (e.g. [[mix]] and [[MIX]]) is this a known issue with the current layout? --[[User:JaygattusoNLNZ|JaygattusoNLNZ]] ([[User talk:JaygattusoNLNZ|talk]]) 01:32, 20 November 2012 (UTC)&lt;br /&gt;
:Since you're linking both the extension and the name, does that mean that there are supposed to be separate articles for each? I don't know if there's really a need for &amp;quot;mainspace&amp;quot; articles by extension, since there are already categories for that purpose; you can browse them through [[:Category:File formats by extension]]. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 02:12, 20 November 2012 (UTC)&lt;br /&gt;
::I just copied the most common model that I found on the formats pages. The problem is, if you don't homogenize the method, the linking/crosslinking doesn't work properly.  All instances of .doc (for example) should point to the same resource page / disambiguation page. If someone has linked to only format in one place (e.g. [[MS Word]] (.doc)), and someone else the extension (MS Word - [[doc]]), we can't makes sure they point to the same place. The problem occurs because format names and extensions are used interchangeably. You raise an interesting question about the relationship between the ext and the format name. I would argue they are not equal (1:1), nor (1:many) / (many:1) so it makes sense to protect both aspects as definable things - the extension because that's whats most commonly searched for and referred to by users and 'format name' because its more accurate. How is the [[:Category:File formats by extension]] populated? --[[User:JaygattusoNLNZ|JaygattusoNLNZ]] ([[User talk:JaygattusoNLNZ|talk]]) 18:31, 20 November 2012 (UTC)&lt;br /&gt;
:::The categories are inserted when you use the ext template in the infobox. My preference is to have articles by actual format name and use multiple navigation aids (menus, cats, etc.) to get to them. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 01:38, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Article naming convention ==&lt;br /&gt;
&lt;br /&gt;
As mentioned above, there's some dispute over whether to name articles after the full name of a format or its file extension. If using full names, you then get into issues of whether to use the full technical name or a shorter thing that's more popularly used, and in some cases that's even the same as the extension (GIF, for instance). And you also get into tricky issues of capitalization: all-caps like an acronym, all-lowercase like filenames are often done (though this is OS-dependent; some, like MS-DOS, use all-uppercase), or mixed case (proper names capitalized)? And then there's the disambiguation issue of how to name articles on different things that have the same name, which happens sometimes even with long official names, but even more often with short acronyms and file extensions. But there's also yet another issue of which things get separate articles and which are combined, like formats that have had many different versions, etc.&lt;br /&gt;
&lt;br /&gt;
Currently you have things like [[CI]] and [[CT]], recently-created articles that represent two different file types within the data of one type of music tracker. The spec document they link to is the same one, which documents all the file types used in that tracker. Unless there's going to be really a lot to say about each of the specific file types, my own preference would be to have one article called [[CyberTracker]] that discusses all the formats used by the program in question, with subheaders within the article for the different file types, and all the extensions listed in the infobox (and hence in associated categories). If any other indices by extension are built up, they'd also have entries for both CI and CT. For instance, when I documented [[Softdisk Family Tree]], I covered all the various file formats in one article, though there are several versions and multiple files for each. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:39, 21 November 2012 (UTC)&lt;br /&gt;
: I realise I'm as guilty of this as anyone, having used both forms at some point (e.g. [[Surprise! Adlib Tracker v2.0]] and [[CI]]). Indeed, the two articles - [[CI]] and [[CT]] - you refer to were created by me. I guess in general I would favour using a descriptive page name rather than simply the file extension - that seems to be something that's being taken care of by infoboxes and categories.&lt;br /&gt;
&lt;br /&gt;
:On the issue of what gets a separate page and what doesn't, I guess that just comes down to individual discretion. There will be instances where a format has undergone a number of minor revisions over time or has a number of minor variants (e.g. the variant forms of Chaos Music Composer's [[CMC]]) where it would make sense to keep them all to a single page, while a major revision would necessitate a multi-page approach (e.g. the shift with Capella from the binary [[CAP]] to the XML-based [[CapXML]] format).&lt;br /&gt;
&lt;br /&gt;
:However, I'm not sure I agree with [[CI]] and [[CT]] having a single [[CyberTracker]] page. While both link to the same spec document and both are used by the same program, they are different formats serving different purposes. I think in general we should try and distinguish between program and file format - [[S3M]] doesn't belong on the [[ScreamTracker]] page, although each should link to the other. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 14:04, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Since the purpose of the wiki is to document file formats, I think it's good that as many formats as possible are listed in the category pages and that you can browse these pages for format extensions. Sometimes it might be better to link multiple extension to the same article (e.g. a specific application), but not always. I think it is difficult to come up with a strict rule for this (but maybe recommendations and, even better, good examples). --[[User:PN|PN]] ([[User talk:PN|talk]]) 15:08, 21 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::It's a judgment call, certainly. It depends on how the files are typically encountered, distributed, used, etc., and how they're thought of by people who use them; if a bunch of file types related to a particular program are usually found together as part of a larger data set, they most likely belong together in one article (with subsections to describe the function of the particular files), but if they're distinct entities with their own particular treatment (like separate areas of file trading sites for enthusiasts) they should have separate articles, though more descriptive names like &amp;quot;CyberTracker instrument file&amp;quot; might be better than a cryptic and likely ambiguous CI. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 15:46, 21 November 2012 (UTC)&lt;br /&gt;
::And then, somebody has also used a robot to create pages in a separate namespace devoted to file extensions, like [[Ext:cin]]. That's yet another navigational system for getting to information by extension, though those pages oddly don't actually have direct links to the normal pages here about those file formats. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 15:56, 21 November 2012 (UTC)&lt;br /&gt;
::: Yes, that was me with Bender the bot. Still experimenting with it and working on creating a list of all pages in relation to extensions. [[User:Maurice.de.rooij|Maurice.de.rooij]] ([[User talk:Maurice.de.rooij|talk]]) 15:22, 22 November 2012 (UTC)&lt;br /&gt;
::What I'd like to avoid is the messy format somebody did to a few index pages like [[Compression]], where each line has separately hyperlinked format names and extensions (not always in a consistent order) where often one or the other is a redlink, or one redirects to the other, or one is just a disambiguation page, making a somewhat confusing hodgepodge. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:22, 21 November 2012 (UTC)&lt;br /&gt;
:::I've started rearranging the Compression page to be a little less messy. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:56, 22 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== So now what? ==&lt;br /&gt;
The official month of this project is now over... what are the plans for the site now? It's made a good start at documenting file formats, but has a good long way to go yet. (A project like this can never possibly be &amp;quot;finished&amp;quot;, since there are always more file formats coming out of the woodwork, both new ones that are introduced, and old ones that are discovered.) [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 05:10, 1 December 2012 (UTC)&lt;br /&gt;
: This is an awesome project and I will stay committed to it. Of course this first month is just a start. Let's roll people! [[User:Maurice.de.rooij|Maurice.de.rooij]] ([[User talk:Maurice.de.rooij|talk]]) 23:22, 3 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Anybody else still around? ==&lt;br /&gt;
Everybody else seems to have vanished around the middle of December... I'm the only one editing here lately. I hate to put more effort into improving a ghost town... anyone else even reading this? [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 23:16, 2 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I will be editing more once I get back to work - still don't have a home internet connection and working from the local library computers / girlfriend's netbook over public wi-fi is a pain. It would be nice to see more contributions from others - you can see how much work is left to do on the music section alone, and I've really only been creating stub entries for most things. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 13:51, 3 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, I still stop by on occasion, and I've vowed to use the site as my first stop when I come across a file format I don't recognize, but I never made any substantial additions, so I'm not sure if that gives you any useful information. (My edits were mostly technical or editorial.) [[User:Gphemsley|GPHemsley]] ([[User talk:Gphemsley|talk]]) 00:18, 13 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'll be editing from time-to-time. Currently a bit snowed under with other work, but planning to do more later in the year. Would also like to review the InfoBox(es) at some point, to ensure the information on this site can be reliably linked up to other information sources. [[User:AndyJackson|AndyJackson]] ([[User talk:AndyJackson|talk]]) 12:10, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm here. Like Andy, my workload is quite high, but I'll be popping in and out. --[[User:Rhetoric X|Rhetoric X]] ([[User talk:Rhetoric X|talk]]) 12:31, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Hi there! I sometimes add a word here or there. I must say this Wiki is pretty good now. Popular formats are nicely described and niche formats are just niche formats so it's sometimes hard to add anything about them. I think that maybe it would be helpful to start adding images to posts. An image explaining format details or a screenshot of an image editor may be a nice addition. What about algorithms in pseudo-code?   --[[User:Tekkno|Tekkno]] ([[User talk:Tekkno|talk]]) 0:28, 7 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::A description of file formats and pseudo-codes would be helpful (although you do not necessarily need a picture). --[[User:Zzo38|Zzo38]] ([[User talk:Zzo38|talk]]) 05:19, 5 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Spam ==&lt;br /&gt;
&lt;br /&gt;
I see the spammers have found the site, as I worried would happen; I run a wiki myself ([http://mpedia.dan.info/ MPedia], about things related to Mensa) and have to constantly play whack-a-mole with them; even adding such annoyances (for legitimate users) as a captcha and e-mail confirmation seem to only slightly slow the spammers down. I don't know the solution. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:59, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:...but &amp;quot;learn-to-read-Korean-in-15-minutes&amp;quot; is a legitimate addition, going to a comic strip explaining the [[Hangul]] writing system, which is in fact a legitimate article here since &amp;quot;file formats&amp;quot; is interpreted expansively to include human written languages. That link ''sounds'' a bit spammy, but if it was from a spammer, it would go to some page selling a dodgy language-learning tool, not a free-to-read resource! (It can start to get tricky distinguishing spam from legitimate stuff when you've got such a wide range of topics here to begin with! Once there's a huge flood of spam to get rid of, there's some danger of legitimate users getting caught in the net too.) [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:03, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yes, it's incumbent on me to make sure we can have people sign up, and be a part of it, without getting spammers. We'll keep exploring. At least bots can't take us on.... I think.... --[[User:Jason Scott|Jason Scott]] ([[User talk:Jason Scott|talk]]) 19:28, 18 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::If you've got some tips about how to configure MediaWiki to have open signups but not get the flood of spambots, let me know; that would help me with my own wiki. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:56, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Orphaned / Blank Pages ==&lt;br /&gt;
&lt;br /&gt;
I've been making an attempt to clear up some of the orphaned pages, but there are a few I'm not sure of - maybe Dan or someone could sort them out?&lt;br /&gt;
&lt;br /&gt;
* [[Emulation]]&lt;br /&gt;
* [[FAQ:File Format]]&lt;br /&gt;
* [[File format extensions list]] (seems to be used for the &amp;quot;ext:&amp;quot; pages but hasn't been updated)&lt;br /&gt;
* [[Library]]&lt;br /&gt;
* [[Original Plan]]&lt;br /&gt;
* [[RAD Game Tools]] (should probably have the individual formats moved to appropriate sections)&lt;br /&gt;
* [[Statistica]] (clearly belongs in Scientific Data formats, but I'm not sure where)&lt;br /&gt;
&lt;br /&gt;
I've also come across a few pages that should probably be deleted - either because they've been blanked at some point (I know I did this to a few pages) or because they contain data duplicated elsewhere.&lt;br /&gt;
&lt;br /&gt;
* [[AA]]&lt;br /&gt;
* [[Compressed executable (.com)]]&lt;br /&gt;
* [[SAP]]&lt;br /&gt;
* [[Barnes &amp;amp; Noble Fixed-layout Format]]&lt;br /&gt;
&lt;br /&gt;
[[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 10:41, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:OK, I deleted those last three; I'll look at the others. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 12:58, 22 January 2013 (UTC)&lt;br /&gt;
:I put Statistica under &amp;quot;Mathematics&amp;quot; in the science category. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:02, 22 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi Dan, got another one for you - I merged the info from [[ODS files created by Microsoft Office 2007 SP2]] into the main [[OpenDocument Spreadsheet]] page. [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 13:59, 25 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added Barnes &amp;amp; Noble to the list (made a bit of a mess and forgot about the rename feature) [[User:Johanvanderknijff|Johanvanderknijff]] ([[User talk:Johanvanderknijff|talk]]) 19:05, 21 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Permissions for user pages ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we can get permission to delete sub-pages of our own user pages? I've been using mine to draft articles bit by bit, rather than release half-finished articles into the wild, and it would be nice to be able to remove the drafts once complete [[User:Halftheisland|Halftheisland]] ([[User talk:Halftheisland|talk]]) 12:43, 3 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm not sure, but as an admin I can delete anything you ask. It might also be possible to use the Move function to move it directly into the intended place. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 16:45, 3 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== cd.textfiles.com ==&lt;br /&gt;
All the files on http://cd.textfiles.com/ disappeared a few days ago, breaking about a million links on this wiki. Does anyone have any information about that? [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 18:48, 25 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:As I recall from Jason's Twitter feed, he had some server problems, with most of his sites going down at least temporary, and most of them eventually coming back up, but maybe that one had a harder crash. [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 19:50, 25 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Broken image in footer ==&lt;br /&gt;
The &amp;quot;Creative Commons 0&amp;quot; image at the bottom of every page (https://www.mediawiki.org/w/skins/common/images/cc-0.png) is broken. Can that be fixed? [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 00:06, 10 July 2015 (UTC)&lt;br /&gt;
:Still broken 5 years later... Is this place even maintained? [[User:GoodClover|GoodClover]] ([[User talk:GoodClover|talk]]) 23:23, 12 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia links ==&lt;br /&gt;
At least in my geographical area, Wikipedia has been redirecting &amp;quot;http:&amp;quot; links to &amp;quot;https:&amp;quot;. So, all of the &amp;lt;nowiki&amp;gt;[[Wikipedia:...]]&amp;lt;/nowiki&amp;gt; links in this wiki are getting redirected. Could/should we change these links to use &amp;quot;https:&amp;quot; directly?&lt;br /&gt;
&lt;br /&gt;
The magic &amp;quot;RFC&amp;quot; links like RFC 822 could also use https:, though the http: links still work. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 00:10, 10 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Code ==&lt;br /&gt;
We still have around 50 articles that link to Google Code. My understanding is that the next phase of Google Code's shutdown process will happen on 2016-01-25 (two weeks from today). It would be good to update as many of these as possible before then.&lt;br /&gt;
* [http://fileformats.archiveteam.org/index.php?title=Special%3ALinkSearch&amp;amp;target=http%3A%2F%2Fcode.google.com&amp;amp;namespace= links to http://code.google.com]&lt;br /&gt;
* [http://fileformats.archiveteam.org/index.php?title=Special%3ALinkSearch&amp;amp;target=https%3A%2F%2Fcode.google.com&amp;amp;namespace= links to https://code.google.com]&lt;br /&gt;
[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 21:05, 11 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cleanup of top-level categories ==&lt;br /&gt;
(Call for objections.) I want to do some cleanup of the [[:Category:Top Level Categories|top-level categories]], and make sure there's at least one category for virtually every article. (See [[Special:UncategorizedPages]].) My plans:&lt;br /&gt;
* A new &amp;quot;Meta&amp;quot; category, for articles about the File Formats Wiki (e.g. [[FAQ]], [[Original Plan]], [[Statement of Project]], [[Main Page]], ...).&lt;br /&gt;
* Rename the [[:Category:Geek humor|Geek humor]] category to &amp;quot;Humor&amp;quot;&lt;br /&gt;
* Remove the [[:Category:Computer facts|Computer facts]] category&lt;br /&gt;
* A new &amp;quot;Information&amp;quot; category, for relevant informative articles ([[Ontology]], [[Patents]], ...) that don't have a more suitable top-level category.&lt;br /&gt;
* Maybe someday: A category named &amp;quot;Devices&amp;quot;, or &amp;quot;Hardware&amp;quot;, or even &amp;quot;Things&amp;quot;. Most computers and [[Networked devices]] just aren't formats, IMHO. (But I'm not going to delete the infobox from all the &amp;quot;Networked devices&amp;quot; articles. If we can't figure out a way to have infoboxes for nonformats, then I'll leave them be.)&lt;br /&gt;
[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 15:56, 1 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:Meta]]&lt;br /&gt;
&lt;br /&gt;
== Love It! ==&lt;br /&gt;
Hi there, kudos to all you guys who helped create this valuable resource. Wikipedia is such a snob when it comes to detailed technical documentation so this wiki is a lifesaver. I added a few things to:&lt;br /&gt;
&lt;br /&gt;
* [[SWF#Software]]&lt;br /&gt;
* [[FLA#Software]]&lt;br /&gt;
* [[BSON#Libraries]]&lt;br /&gt;
&lt;br /&gt;
Thanks again!&lt;br /&gt;
&lt;br /&gt;
PS: Can the &amp;quot;thumbs up&amp;quot; icon be changed to something better? Do you want me to design a possible logo?&lt;br /&gt;
&lt;br /&gt;
[[User:Hgupta|Hgupta]] ([[User talk:Hgupta|talk]]) 05:42, 17 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Nice work! As for the thumb icon, you'd have to ask Jason Scott, the owner of this site (and the one who put the thumb up). [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 13:02, 17 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I support the idea of changing the logo. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 16:08, 18 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What time is it? ==&lt;br /&gt;
I'm making this edit at 17:10 UTC, but the timestamp is: [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 17:25, 2 May 2018 (UTC)&lt;br /&gt;
:&amp;quot;Does anybody really know what time it is; does anybody really care?&amp;quot; -- Chicago&lt;br /&gt;
[posted at 01:20 UTC; let's see when it thinks it is] [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 01:36, 3 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Type / Creator codes ==&lt;br /&gt;
&lt;br /&gt;
Curious what everyone's thoughts are on collecting Type/Creator Codes for Macintosh formats. There seems to be a few attempts at doing this around the webs. Is there a way here to gather them all into one area of the wiki? --[[User:Thorsted|Thorsted]] ([[User talk:Thorsted|talk]]) 17:46, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
* [[Wikipedia:Type_code|Type Code : Wikipedia]] &lt;br /&gt;
* [[Wikipedia:Creator_code|Creator Code : Wikipedia]] &lt;br /&gt;
* [http://www.lacikam.co.il/tcdb/  TCDBx unmaintained]&lt;br /&gt;
* [https://vintageapple.org/macprogramming/pdf/The_Programmers_Apple_Mac_Sourcebook_1989.pdf The Programmers Apple Mac Sourcebook]&lt;br /&gt;
* [https://www.macdisk.com/macsigen.php Mac Signatures]&lt;br /&gt;
&lt;br /&gt;
:Maybe do it similar to how file extensions are handled, as an item in the infobox that links to a category? [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 19:09, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::An article for Mac type/creator codes has been on my to-do list for a while, so we could at least do that, and see if there's any interest in listing lots of codes there. Should it be one article, or two? FormatInfo already has a &amp;quot;type code&amp;quot; param that is supposed to be for the Mac code. Maybe we are supposed to make a &amp;quot;Type Code&amp;quot; template to go along with it, so we can do like &amp;quot;&amp;lt;nowiki&amp;gt;|type code={{Type Code|XXXX}}&amp;lt;/nowiki&amp;gt;&amp;quot;. [[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 21:07, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::If they were listed in a single article as opposed to a series of categories, I don't see what there would be for a template would do. In that case, the text on the left side of the infobox could link to the list page (although this might be ugly). (It would be convenient if there was something between the complexity of the MediaWiki category system and a list page, but I don't think anything like that exists in a plain Mediawiki installation.) [[User:Effect2|Effect2]] ([[User talk:Effect2|talk]]) 21:30, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Even if they went into the infobox, the category system could potentially be left out out, as is currently done with FOURCCs and MIMETypes (the latter links to an external database, but whether anything is there is based on luck more than anything else, as there are so many unregistered mimetypes). These can still be found with the wiki's search feature. [[User:Effect2|Effect2]] ([[User talk:Effect2|talk]]) 21:13, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::And there's also the Creator Code, as noted above; that refers to what program created the file, so there might be several associated with one file type code (and several file type codes associated with one creator). Perhaps there needs to be a section of the article listing all the code values associated with a given format and/or program (depending on what's covered by the article). [[User:Dan Tobias|Dan Tobias]] ([[User talk:Dan Tobias|talk]]) 21:44, 4 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I like the idea of at least a uniform template for using codes within format descriptions. Since most of the files from the early macintosh days don't have an extension, unless they were cross platform and the Windows extension is used, then the only way to identify the file is from its Type/Creator code. I don't think Apple ever released the full registry, but some estimates are well over 50,000 entries.--[[User:Thorsted|Thorsted]] ([[User talk:Thorsted|talk]]) 03:24, 5 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Reverse engineering formats ==&lt;br /&gt;
I am trying to reverse engineer some formats. Sometimes successfully, sometimes not. My most recent attempt is:&lt;br /&gt;
* http://fileformats.archiveteam.org/wiki/DGI_(Digi-Pic)&lt;br /&gt;
&lt;br /&gt;
Maybe we can do this together instead of everyone here focusing on different things? Also is there a better way to discuss things than writing here?&lt;br /&gt;
[[User:Tekkno|Tekkno]] ([[User talk:Tekkno|talk]]) 01:39, 9 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA ==&lt;br /&gt;
AT is no longer on EFnet: https://archiveteam.org/index.php?title=Archiveteam:IRC#Special_ArchiveTeam_IRC_rules [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 02:57, 8 November 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This is a pretty serious problem. Are there any plans to fix it? -[[User:Jsummers|Jsummers]] ([[User talk:Jsummers|talk]]) 16:22, 12 November 2020 (UTC)&lt;br /&gt;
::Seems like it has been fixed, by removing the CAPTCHA altogether. Let's all keep a keen eye out for spamdalism. [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 03:33, 23 November 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== special:interwiki ==&lt;br /&gt;
don't see it at [[special:specialpages]]? [[User:Arlo James Barnes|Arlo James Barnes]] ([[User talk:Arlo James Barnes|talk]]) 02:57, 8 November 2020 (UTC)&lt;/div&gt;</summary>
		<author><name>GoodClover</name></author>	</entry>

	</feed>