<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Digipenguin</id>
		<title>ComputerCraft Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.computercraft.info/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Digipenguin"/>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/Special:Contributions/Digipenguin"/>
		<updated>2026-07-11T18:10:58Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5373</id>
		<title>Shell.programs</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5373"/>
				<updated>2013-04-16T09:56:30Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shell.programs is a shell command used in the dir command in default CC&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;function shell.programs( _bIncludeHidden )&lt;br /&gt;
	local tItems = {}&lt;br /&gt;
	&lt;br /&gt;
	-- Add programs from the path&lt;br /&gt;
    for sPath in string.gmatch(sPath, &amp;quot;[^:]+&amp;quot;) do&lt;br /&gt;
    	sPath = shell.resolve( sPath )&lt;br /&gt;
		if fs.isDir( sPath ) then&lt;br /&gt;
			local tList = fs.list( sPath )&lt;br /&gt;
			for n,sFile in pairs( tList ) do&lt;br /&gt;
				if not fs.isDir( fs.combine( sPath, sFile ) ) and&lt;br /&gt;
				   (_bIncludeHidden or string.sub( sFile, 1, 1 ) ~= &amp;quot;.&amp;quot;) then&lt;br /&gt;
					tItems[ sFile ] = true&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
    end	&lt;br /&gt;
&lt;br /&gt;
	-- Sort and return&lt;br /&gt;
	local tItemList = {}&lt;br /&gt;
	for sItem, b in pairs( tItems ) do&lt;br /&gt;
		table.insert( tItemList, sItem )&lt;br /&gt;
	end&lt;br /&gt;
	table.sort( tItemList )&lt;br /&gt;
	return tItemList&lt;br /&gt;
end&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5372</id>
		<title>Shell.programs</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5372"/>
				<updated>2013-04-16T09:55:45Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shell.programs is a shell command used in the dir command in default CC&lt;br /&gt;
&lt;br /&gt;
function shell.programs( _bIncludeHidden )&lt;br /&gt;
	local tItems = {}&lt;br /&gt;
	&lt;br /&gt;
	-- Add programs from the path&lt;br /&gt;
    for sPath in string.gmatch(sPath, &amp;quot;[^:]+&amp;quot;) do&lt;br /&gt;
    	sPath = shell.resolve( sPath )&lt;br /&gt;
		if fs.isDir( sPath ) then&lt;br /&gt;
			local tList = fs.list( sPath )&lt;br /&gt;
			for n,sFile in pairs( tList ) do&lt;br /&gt;
				if not fs.isDir( fs.combine( sPath, sFile ) ) and&lt;br /&gt;
				   (_bIncludeHidden or string.sub( sFile, 1, 1 ) ~= &amp;quot;.&amp;quot;) then&lt;br /&gt;
					tItems[ sFile ] = true&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
    end	&lt;br /&gt;
&lt;br /&gt;
	-- Sort and return&lt;br /&gt;
	local tItemList = {}&lt;br /&gt;
	for sItem, b in pairs( tItems ) do&lt;br /&gt;
		table.insert( tItemList, sItem )&lt;br /&gt;
	end&lt;br /&gt;
	table.sort( tItemList )&lt;br /&gt;
	return tItemList&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[User:Digipenguin|Digipenguin]] 13:55, 16 April 2013 (MSK)&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5371</id>
		<title>Shell.programs</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Shell.programs&amp;diff=5371"/>
				<updated>2013-04-16T09:55:33Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shell.programs is a shell command used in the dir command in default CC&lt;br /&gt;
&lt;br /&gt;
function shell.programs( _bIncludeHidden )&lt;br /&gt;
	local tItems = {}&lt;br /&gt;
	&lt;br /&gt;
	-- Add programs from the path&lt;br /&gt;
    for sPath in string.gmatch(sPath, &amp;quot;[^:]+&amp;quot;) do&lt;br /&gt;
    	sPath = shell.resolve( sPath )&lt;br /&gt;
		if fs.isDir( sPath ) then&lt;br /&gt;
			local tList = fs.list( sPath )&lt;br /&gt;
			for n,sFile in pairs( tList ) do&lt;br /&gt;
				if not fs.isDir( fs.combine( sPath, sFile ) ) and&lt;br /&gt;
				   (_bIncludeHidden or string.sub( sFile, 1, 1 ) ~= &amp;quot;.&amp;quot;) then&lt;br /&gt;
					tItems[ sFile ] = true&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
    end	&lt;br /&gt;
&lt;br /&gt;
	-- Sort and return&lt;br /&gt;
	local tItemList = {}&lt;br /&gt;
	for sItem, b in pairs( tItems ) do&lt;br /&gt;
		table.insert( tItemList, sItem )&lt;br /&gt;
	end&lt;br /&gt;
	table.sort( tItemList )&lt;br /&gt;
	return tItemList&lt;br /&gt;
end&lt;br /&gt;
--[[User:Digipenguin|Digipenguin]] 13:55, 16 April 2013 (MSK)&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=User_talk:Digipenguin&amp;diff=5078</id>
		<title>User talk:Digipenguin</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=User_talk:Digipenguin&amp;diff=5078"/>
				<updated>2013-02-15T15:26:17Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: Created page with &amp;quot;just wanted to create this to get rid of the annoying red link to this page.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;just wanted to create this to get rid of the annoying red link to this page.&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=User:Digipenguin&amp;diff=5077</id>
		<title>User:Digipenguin</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=User:Digipenguin&amp;diff=5077"/>
				<updated>2013-02-15T15:25:06Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: Created page with &amp;quot;Digipenguin is a forum user and a wiki editor.  Various interests include advanced computer systems (especially networks)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Digipenguin is a forum user and a wiki editor.&lt;br /&gt;
&lt;br /&gt;
Various interests include advanced computer systems (especially networks)&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5070</id>
		<title>Computer.shutdown</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5070"/>
				<updated>2013-02-11T14:00:56Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.shutdown&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Shuts down a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;) handle.shutdown()&lt;br /&gt;
|output=Shuts down any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5069</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5069"/>
				<updated>2013-02-11T14:00:08Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;) handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5068</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5068"/>
				<updated>2013-02-11T13:59:47Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;) handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5067</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5067"/>
				<updated>2013-02-11T13:59:27Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code={local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
handle.reboot()}&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5066</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5066"/>
				<updated>2013-02-11T13:59:07Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5065</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5065"/>
				<updated>2013-02-11T13:58:53Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;) \n handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5064</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5064"/>
				<updated>2013-02-11T13:58:31Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.reboot&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
|handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5063</id>
		<title>Computer.reboot</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.reboot&amp;diff=5063"/>
				<updated>2013-02-11T13:57:43Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: Created page with &amp;quot;{{lowercase}} {{Function |name=computer.wrap |args= (string) side |api=peripheral |addon=ComputerCraft |desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; var...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.wrap&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Reboots a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
|handle.reboot()&lt;br /&gt;
|output=reboots any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5062</id>
		<title>Computer.shutdown</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5062"/>
				<updated>2013-02-11T13:56:32Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=computer.wrap&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Shuts down a computer wrapped to the &amp;quot;computer&amp;quot; variable&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
|handle.shutdown()&lt;br /&gt;
|output=Shuts down any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5061</id>
		<title>Computer.shutdown</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer.shutdown&amp;diff=5061"/>
				<updated>2013-02-11T13:55:21Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: Created page with &amp;quot;{{lowercase}} {{Function |name=peripheral.wrap |args= (string) side |returns=A handle to the peripheral on ''side''. |api=peripheral |addon=ComputerCraft |de...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
{{Function&lt;br /&gt;
|name=peripheral.wrap&lt;br /&gt;
|args= [[string (type)|(string)]] side&lt;br /&gt;
|returns=A handle to the peripheral on ''side''.&lt;br /&gt;
|api=peripheral&lt;br /&gt;
|addon=ComputerCraft&lt;br /&gt;
|desc=Returns a handle to a peripheral that can then be used to call methods, as if using peripheral.call(side, method)&lt;br /&gt;
|examples=&lt;br /&gt;
{{Example&lt;br /&gt;
|desc=Shuts down the computer or turtle on the right side of the calling machine.&lt;br /&gt;
|code=local handle = peripheral.wrap(&amp;quot;right&amp;quot;)&lt;br /&gt;
|handle.shutdown()&lt;br /&gt;
|output=Shuts down any computer to the right of the computer/turtle.&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua_Core_Functions]]&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	<entry>
		<id>https://www.computercraft.info/wiki/index.php?title=Computer&amp;diff=5060</id>
		<title>Computer</title>
		<link rel="alternate" type="text/html" href="https://www.computercraft.info/wiki/index.php?title=Computer&amp;diff=5060"/>
				<updated>2013-02-11T13:53:17Z</updated>
		
		<summary type="html">&lt;p&gt;Digipenguin: /* Peripheral Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Block&lt;br /&gt;
|name=Computer&lt;br /&gt;
|image=Iso_Computer.png&lt;br /&gt;
|id=4095&lt;br /&gt;
|damage-value=The ID of the Computer.&lt;br /&gt;
|is-peripheral=Yes&lt;br /&gt;
}}&lt;br /&gt;
The Computer (pictured) is the main block of ComputerCraft. From the Computer, you will be able to make programs, turn on and off Redstone, use Rednet and interface with bundled cables from RedPower, play games, and much more. The Computer runs an OS called [[CraftOS]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Blocks]]&lt;br /&gt;
[[Category:Consoles]]&lt;br /&gt;
== Recipe ==&lt;br /&gt;
{{Crafting grid&lt;br /&gt;
 |A1=stone |B1=stone      |C1=stone&lt;br /&gt;
 |A2=stone |B2=Redstone   |C2=stone&lt;br /&gt;
 |A3=stone |B3=glass_pane |C3=stone&lt;br /&gt;
 |Output=Computer&lt;br /&gt;
 }}&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[File:Computer_w_DiskDrive_w_Monitor.png|frame|428x241px|right|A 2x2 [[Monitor]], connected to a [[Computer]], with a [[Disk Drive]] connected.]]&lt;br /&gt;
Place the Computer wherever you please, and just right click it to use.&lt;br /&gt;
&lt;br /&gt;
== Keyboard Shortcuts ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;200px&amp;quot;|Shortcut&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;*&amp;quot;|Usage&lt;br /&gt;
|-&lt;br /&gt;
|{{Keypress|key=CTRL}} + {{Keypress|key=T}}&lt;br /&gt;
|Terminates the current program.&lt;br /&gt;
|-&lt;br /&gt;
|{{Keypress|key=CTRL}} + {{Keypress|key=R}}&lt;br /&gt;
|Reboots the console.&lt;br /&gt;
|-&lt;br /&gt;
|{{Keypress|key=CTRL}} + {{Keypress|key=S}}&lt;br /&gt;
|Forcefully shuts down the computer.&lt;br /&gt;
|}&lt;br /&gt;
NOTE: You have to hold the keyboard shortcuts down for at least 1 second!&lt;br /&gt;
&lt;br /&gt;
== Peripheral Functions ==&lt;br /&gt;
'''''computer'' stands for the variable you wrapped the computer to.'''&lt;br /&gt;
''Example:'' computer = peripheral.wrap( &amp;quot;top&amp;quot; )&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;210px&amp;quot;|Method name&lt;br /&gt;
!style=&amp;quot;background:#EEE&amp;quot; width=&amp;quot;*&amp;quot;|Description&lt;br /&gt;
|-&lt;br /&gt;
|[[computer.turnOn()]]&lt;br /&gt;
|Turns on the Computer or Turtle.&lt;br /&gt;
|-&lt;br /&gt;
|[[computer.shutdown()]]&lt;br /&gt;
|Shuts off the Computer or Turtle.&lt;br /&gt;
|-&lt;br /&gt;
|[[computer.reboot()]]&lt;br /&gt;
|Reboots the Computer or Turtle.&lt;br /&gt;
|-&lt;br /&gt;
|[[computer.getID()]]&lt;br /&gt;
|Gets the ID of the Computer or Turtle.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Digipenguin</name></author>	</entry>

	</feed>