<?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>Skypher &#187; JSSh</title>
	<atom:link href="http://skypher.com/index.php/tag/jssh/feed/" rel="self" type="application/rss+xml" />
	<link>http://skypher.com</link>
	<description>The blog for absolutely nothing!</description>
	<lastBuildDate>Sat, 19 Nov 2011 22:09:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JavaScript Shell 4.4beta</title>
		<link>http://skypher.com/index.php/2008/09/16/javascript-shell-44/</link>
		<comments>http://skypher.com/index.php/2008/09/16/javascript-shell-44/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:07:37 +0000</pubDate>
		<dc:creator>SkyLined</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JSSh]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://skypher.com/?p=48</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_split() [<a href='function.preg-split'>function.preg-split</a>]: Compilation failed: lookbehind assertion is not fixed length at offset 14 in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>77</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>78</b><br />
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put a new version of JSSh, my interactive  JavaScript Shell, online at <a title="JavaScript Shell 4.4" href="http://jssh.skypher.com" target="_blank">http://jssh.skypher.com</a>. I&#8217;ve replace the error handlers and object visualization routines, which should improve your grasp of what&#8217;s going on in various browsers. I&#8217;m putting the source code for these new routines on my wiki <a title="JavaScript applications and code snippets" href="http://skypher.com/wiki/index.php?title=JS" target="_blank">here</a> &#8211; I hope you&#8217;ll find them useful and I&#8217;ll try to do better documentation soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://skypher.com/index.php/2008/09/16/javascript-shell-44/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Shell</title>
		<link>http://skypher.com/index.php/2008/04/23/javascript-shell/</link>
		<comments>http://skypher.com/index.php/2008/04/23/javascript-shell/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 17:49:54 +0000</pubDate>
		<dc:creator>SkyLined</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JSSh]]></category>

		<guid isPermaLink="false">http://skypher.com/?p=5</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_split() [<a href='function.preg-split'>function.preg-split</a>]: Compilation failed: lookbehind assertion is not fixed length at offset 14 in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>77</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>78</b><br />
]]></description>
			<content:encoded><![CDATA[<p><em>(</em><strong><em>*Update*</em></strong><em>: I&#8217;ve released <a title="JavaScript Shell 4.4beta" href="http://skypher.com/JSSh/4.4" target="_blank">4.4beta</a>, which is cross-browser compatible and should work on Internet Explorer, FireFox and Safari)<br />
</em></p>
<p>I have put version <strong>4.2beta</strong> of my <strong>JavaScript Shell</strong> online <a title="JavaScript Shell 4.2beta" href="http://skypher.com/JSSh/4.2" target="_blank">here</a>. JavaScript Shell is a web-app that facilitates testing JavaScript code by allowing you to enter a code snippet and execute this in the context of a page in your browser. It will display the &#8220;return&#8221; value of the executed code and the errors/exceptions thrown (if any). You can also easily change the URL of and add HTML tags to the page in which the script is executed. JSSh is of course limited by XSS protection in the browser and is therefore not able to run script in the context of pages in a different domain. (You can however, execute script <em>in your own browser </em>in any part of skypher.com; this is not an XSS issues because you can only &#8220;attack&#8221; yourself).</p>
<p><strong>History:</strong> JSSh was originally developed in 2005 as a small, one HTML page tool that allowed me to play with JavaScript while I was still learning the finer details of the language and the DOM of each web-page in the browser. Over time, I added more and more features and it has slowly developed into a refined web-application for testing scripts during web-development. I use it quite frequently myself to do rapid development of scripts and to test anything I&#8217;m not sure of but need to know about JavaScript or the DOM. The full version, available <a title="Email SkyLined" href="mailto:berendjanwever@gmail.com" target="_self">on request</a>, allows you to save and replay a number of commands in a URL and execute them by loading the URL in your browser. This can be useful if you want to show something to others; you can send them a URL, which they can click to see your script in action without having to create a file on a web-page to store your script in. Because of the obvious XSS issues that this feature would incure on the skypher.com domain, I have disabled this feature in the version I put on-line. I&#8217;m looking at hosting JSSh on a separate domain, so I can avoid this problem and turn the feature back on.</p>
<p><strong>Bugs:</strong> Please report any issues <a title="Email me" href="mailto:berendjanwever@gmail.com" target="_self">to me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://skypher.com/index.php/2008/04/23/javascript-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

