<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>h4x3d.com &#187; cheat sheet</title>
	<atom:link href="http://h4x3d.com/tag/cheat-sheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://h4x3d.com</link>
	<description>online portfolio of Julian Klewes</description>
	<lastBuildDate>Mon, 25 Jul 2011 13:18:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Overview of different Typefaces and Fonts</title>
		<link>http://h4x3d.com/overview-of-different-typefaces-and-fonts/</link>
		<comments>http://h4x3d.com/overview-of-different-typefaces-and-fonts/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 10:55:42 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[march]]></category>
		<category><![CDATA[overview]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/overview-of-different-typefaces-and-fonts/</guid>
		<description><![CDATA[Table and Preview of Typefaces via lifehacker]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.squidspot.com/Periodic_Table_of_Typefaces/Periodic_Table_of_Typefaces_large.jpg"><br />
<img src="http://img156.imageshack.us/img156/7474/periodictableoftypefaceh.jpg"></a></p>
<p><a href="http://www.squidspot.com/Periodic_Table_of_Typefaces/Periodic_Table_of_Typefaces_large.jpg">Table and Preview of Typefaces</a></p>
<p>via lifehacker</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/overview-of-different-typefaces-and-fonts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>.htaccess cheat sheet</title>
		<link>http://h4x3d.com/htaccess-cheat-sheet/</link>
		<comments>http://h4x3d.com/htaccess-cheat-sheet/#comments</comments>
		<pubDate>Mon, 12 Sep 2005 12:14:59 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Oldskool]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[modrewrite]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/2005/09/12/htaccess-cheat-sheet/</guid>
		<description><![CDATA[Here is a simple cheatsheet for the .htaccess file: Enable Directory Browsing Options +Indexes ## block a few types of files from showing IndexIgnore *.wmv *.mp4 *.aviDisable Directory Browsing Options All -IndexesCustomize Error Messages ErrorDocument 403 /forbidden.html ErrorDocument 404 /notfound.html ErrorDocument 500 /servererror.htmlGet SSI working with HTML/SHTML AddType text/html .html AddType text/html .shtml AddHandler server-parsed [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple cheatsheet for the .htaccess file:</p>
<p>Enable Directory Browsing</p>
<p>Options +Indexes<br />
## block a few types of files from showing<br />
IndexIgnore *.wmv *.mp4 *.aviDisable Directory Browsing</p>
<p>Options All -IndexesCustomize Error Messages</p>
<p>ErrorDocument 403 /forbidden.html<br />
ErrorDocument 404 /notfound.html<br />
ErrorDocument 500 /servererror.htmlGet SSI working with HTML/SHTML</p>
<p>AddType text/html .html<br />
AddType text/html .shtml<br />
AddHandler server-parsed .html<br />
AddHandler server-parsed .shtml<br />
# AddHandler server-parsed .htmChange Default Page (order is followed!)</p>
<p>DirectoryIndex myhome.htm index.htm index.php Block Users from accessing the site<br />
 order deny,allow<br />
deny from 202.54.122.33<br />
deny from 8.70.44.53<br />
deny from .spammers.com<br />
allow from all Allow only LAN usersorder deny,allow<br />
deny from all<br />
allow from 192.168.0.0/24Redirect Visitors to New Page/Directory</p>
<p>Redirect oldpage.html http://www.domainname.com/newpage.html<br />
Redirect /olddir http://www.domainname.com/newdir/Block site from specific referrers</p>
<p>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} site-to-block\.com [NC]<br />
RewriteCond %{HTTP_REFERER} site-to-block-2\.com [NC]<br />
RewriteRule .* &#8211; [F]Block Hot Linking/Bandwidth hogging</p>
<p>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]<br />
RewriteRule \.(gif|jpg)$ &#8211; [F]Want to show a ?Stealing is Bad? message too?</p>
<p>Add this below the Hot Link Blocking code:</p>
<p>RewriteRule \.(gif|jpg)$ http://www.mydomain.com/dontsteal.gif [R,L]Stop .htaccess (or any other file) from being viewed</p>
<p>order allow,deny<br />
deny from all<br />
Avoid the 500 Error</p>
<p># Avoid 500 error by passing charset<br />
AddDefaultCharset utf-8Grant CGI Access in a directory</p>
<p>Options +ExecCGI<br />
AddHandler cgi-script cgi pl<br />
# To enable all scripts in a directory use the following<br />
# SetHandler cgi-scriptSave Bandwidth</p>
<p># Only if you use PHP</p>
<p>php_value zlib.output_compression 16386<br />
Password Protecting Directories</p>
<p>Use the .htaccess Password Generator and follow the brief instructions!</p>
<p>The CheckSpelling Directive</p>
<p>From Jens Meiert: CheckSpelling corrects simple spelling errors (for example, if someone forgets a letter or if any character is just wrong). Just add CheckSpelling On to your htaccess file.</p>
<p>The ContentDigest Directive</p>
<p>As the Apache core features documentation says: ?This directive enables the generation of Content-MD5 headers as defined in RFC1864 respectively RFC2068. The Content-MD5 header provides an end-to-end message integrity check (MIC) of the entity-body. A proxy or client may check this header for detecting accidental modification of the entity-body in transit.</p>
<p>Note that this can cause performance problems on your server since the message digest is computed on every request (the values are not cached). Content-MD5 is only sent for documents served by the core, and not by any module. For example, SSI documents, output from CGI scripts, and byte range responses do not have this header.?</p>
<p>To turn this on, just add Content Digest On.</p>
<p>Source: the net / google</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/htaccess-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

