<?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>P0L0&#039;s Blog &#187; javascript</title>
	<atom:link href="http://p0l0.binware.org/index.php/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://p0l0.binware.org</link>
	<description>Opensource Projects and IT experiences</description>
	<lastBuildDate>Tue, 25 May 2010 06:24:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Spidermonkey &#8211; Execute javascript from console</title>
		<link>http://p0l0.binware.org/index.php/2010/05/24/spidermonkey-execute-javascript-from-console/</link>
		<comments>http://p0l0.binware.org/index.php/2010/05/24/spidermonkey-execute-javascript-from-console/#comments</comments>
		<pubDate>Mon, 24 May 2010 06:09:26 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/?p=693</guid>
		<description><![CDATA[SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript. This is useful to test part of our JavaScript from the console or in scripts.
In Debian we have a package called spidermonkey-bin.

apt-get install spidermonkey-bin

After installing you will have a program called smjs.
If you start the program without parameters you will get a Javascript shell, [...]]]></description>
			<content:encoded><![CDATA[<p>SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript. This is useful to test part of our JavaScript from the console or in scripts.</p>
<p>In Debian we have a package called <strong>spidermonkey-bin</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> spidermonkey-bin</pre></div></div>

<p>After installing you will have a program called <strong>smjs</strong>.</p>
<p>If you start the program without parameters you will get a <strong>Javascript shell</strong>, in which you can write and test javascript.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>smjs
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #7a0874; font-weight: bold;">test</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
print<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'test'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">test</span>
<span style="color: #000000; font-weight: bold;">function</span> <span style="color: #7a0874; font-weight: bold;">test</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    print<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">&quot;test&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">test</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">test</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #7a0874; font-weight: bold;">test</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
print<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'test'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
test2<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">123</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">function</span> test2<span style="color: #7a0874; font-weight: bold;">&#40;</span>param<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
print <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'test2: '</span> + param<span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">test</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #7a0874; font-weight: bold;">test</span>
test2: <span style="color: #000000;">123</span>
js<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>To exit the shell, just press "<strong>Ctrl+D</strong>".</p>
<p>It's important to note that in spidermonkey you doesn't have the "<strong>document</strong>" Object. If you want to print out text, you cant use <strong>document.write</strong>, you should use <strong>print</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'test'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// In browser</span>
<span style="color: #000066;">print</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'test'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">//spidermonkey</span></pre></div></div>

<p>You can also make <strong>smjs</strong> to execute the content of a file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>smjs test-local.js
Rand: <span style="color: #000000;">407</span>
Old: <span style="color: #000000;">600</span>
New: <span style="color: #000000;">800</span>
Result: old</pre></div></div>




Share:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;partner=sociable" title="Print"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;title=Spidermonkey%20-%20Execute%20javascript%20from%20console&amp;bodytext=SpiderMonkey%20is%20the%20code-name%20for%20the%20Mozilla%27s%20C%20implementation%20of%20JavaScript.%20This%20is%20useful%20to%20test%20part%20of%20our%20JavaScript%20from%20the%20console%20or%20in%20scripts.%0D%0A%0D%0AIn%20Debian%20we%20have%20a%20package%20called%20spidermonkey-bin.%0D%0A%0D%0A%0D%0Aapt-get%20install%20spidermonkey-bi" title="Digg"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;title=Spidermonkey%20-%20Execute%20javascript%20from%20console&amp;notes=SpiderMonkey%20is%20the%20code-name%20for%20the%20Mozilla%27s%20C%20implementation%20of%20JavaScript.%20This%20is%20useful%20to%20test%20part%20of%20our%20JavaScript%20from%20the%20console%20or%20in%20scripts.%0D%0A%0D%0AIn%20Debian%20we%20have%20a%20package%20called%20spidermonkey-bin.%0D%0A%0D%0A%0D%0Aapt-get%20install%20spidermonkey-bi" title="del.icio.us"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;t=Spidermonkey%20-%20Execute%20javascript%20from%20console" title="Facebook"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;title=Spidermonkey%20-%20Execute%20javascript%20from%20console&amp;annotation=SpiderMonkey%20is%20the%20code-name%20for%20the%20Mozilla%27s%20C%20implementation%20of%20JavaScript.%20This%20is%20useful%20to%20test%20part%20of%20our%20JavaScript%20from%20the%20console%20or%20in%20scripts.%0D%0A%0D%0AIn%20Debian%20we%20have%20a%20package%20called%20spidermonkey-bin.%0D%0A%0D%0A%0D%0Aapt-get%20install%20spidermonkey-bi" title="Google Bookmarks"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Spidermonkey%20-%20Execute%20javascript%20from%20console&amp;body=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F" title="email"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F&amp;title=Spidermonkey%20-%20Execute%20javascript%20from%20console&amp;source=P0L0%26%23039%3Bs+Blog+Opensource+Projects+and+IT+experiences&amp;summary=SpiderMonkey%20is%20the%20code-name%20for%20the%20Mozilla%27s%20C%20implementation%20of%20JavaScript.%20This%20is%20useful%20to%20test%20part%20of%20our%20JavaScript%20from%20the%20console%20or%20in%20scripts.%0D%0A%0D%0AIn%20Debian%20we%20have%20a%20package%20called%20spidermonkey-bin.%0D%0A%0D%0A%0D%0Aapt-get%20install%20spidermonkey-bi" title="LinkedIn"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://meneame.net/submit.php?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F" title="Meneame"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Spidermonkey%20-%20Execute%20javascript%20from%20console%20-%20http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F05%2F24%2Fspidermonkey-execute-javascript-from-console%2F" title="Twitter"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2010/05/24/spidermonkey-execute-javascript-from-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbeans Performance Switches</title>
		<link>http://p0l0.binware.org/index.php/2010/04/17/netbeans-performance-switches/</link>
		<comments>http://p0l0.binware.org/index.php/2010/04/17/netbeans-performance-switches/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 07:30:23 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/?p=655</guid>
		<description><![CDATA[I recently have began to use Netbeans because I'm sad that Eclipse is every time slower and it frozes every time when you are doing something to fast.
Netbeans is not perfect, and there are some features that need to be polished (Ex.: SVN Support, Time Tracking like Mylyn), but the PHP/HTML/CSS/JS Support is excellent, in [...]]]></description>
			<content:encoded><![CDATA[<p>I recently have began to use <a href="http://netbeans.org/features/php/index.html" target="_blank">Netbeans</a> because I'm sad that <a href="http://www.eclipse.org/pdt" target="_blank">Eclipse</a> is every time slower and it frozes every time when you are doing something to fast.</p>
<p>Netbeans is not perfect, and there are some features that need to be polished (Ex.: SVN Support, Time Tracking like Mylyn), but the PHP/HTML/CSS/JS Support is excellent, in my opinion better than the Eclipse PDF support.</p>
<p>These is my netbeans_default_options for Netbeans for MacOSX (under Windows you can leave out the --laf switch, it's for changing the look and feel):</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000099;">netbeans_default_options</span><span style="color: #000066; font-weight:bold;">=</span><span style="color: #933;">&quot;-J-client -J-Xss2m -J-Xms32m -J-Xmx512m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-XX:CompileThreshold=100 -XX:+CompressedOOPS -XX:+AggressiveOpts -XX:+TieredCompilation -XX:+DoEscapeAnalysis -XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true --laf javax.swing.plaf.metal.MetalLookAndFeel&quot;</span></pre></div></div>

<p>Some switches come from <a href="http://performance.netbeans.org/howto/jvmswitches/index.html" target="_blank">Netbeans Performance</a> site.</p>
<ul>
<li><strong>-J-Xss2m</strong> - Define Stack Size (Too small and you will get StackOverflow Exceptions)</li>
<li><strong>-J-Xms32m</strong> - This setting tells the Java virtual machine to set its initial heap size to 32 megabytes. By telling the JVM how much memory it should initially allocate for the heap, we save it growing the heap as NetBeans consumes more memory. This switch improves startup time</li>
<li><strong>-J-Xmx512m</strong> - This settings tells the Java virtual machine the maximum amount of memory it should use for the heap. Placing a hard upper limit on this number means that the Java process cannot consume more memory than physical RAM available. This limit can be raised on systems with more memory. Current default value is 128MB. Note: Do not set this value to near or greater than the amount of physical RAM in your system or it will cause severe swapping during runtime</li>
<li><strong>-J-XX:PermSize=32m -J-XX:MaxPermSize=200m</strong> - How much Heap can be added over the Xmx limit</li>
<li><strong>-J-Xverify:none</strong> - This switch turns off Java bytecode verification, making classloading faster, and eliminating the need for classes to be loaded during startup solely for the purposes of verification. This switch improves startup time, and there is no reason not to use it</li>
<li><strong>-J-XX:CompileThreshold=100</strong> - This switch will make startup time slower, by HotSpot to compile many more methods down to native code sooner than it otherwise would. The reported result is snappier performance once the IDE is running, since more of the UI code will be compiled rather than interpreted. This value represents the number of times a method must be called before it will be compiled</li>
<li><strong>-XX:+CompressedOOPS</strong> - Activate Compressed "Ordinary Object Pointer"</li>
<li><strong>-XX:+AggressiveOpts</strong> - Turns on point performance optimizations that are expected to be on by default in upcoming releases</li>
<li><strong>-XX:+TieredCompilation</strong> - Activate Tiered Compiler</li>
<li><strong>-XX:+DoEscapeAnalysis</strong> - Activate Escape Analysis</li>
<li><strong>-J-XX:+UseConcMarkSweepGC or -J-XX:+UseParNewGC</strong> Try these switches if you are having problems with intrusive garbage collection pauses. This switch causes the JVM to use different algorithms for major garbage collection events (also for minor collections, if run on a multiprocessor workstation), ones which do not "stop the world" for the entire garbage collection process. You should also add the line <strong>-J-XX:+CMSClassUnloadingEnabled</strong> and <strong>-J-XX:+CMSPermGenSweepingEnabled</strong> to your netbeans.conf file so that class unloading is enabled (it isn't by default when using this collector)</li>
</ul>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;partner=sociable" title="Print"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;title=Netbeans%20Performance%20Switches&amp;bodytext=I%20recently%20have%20began%20to%20use%20Netbeans%20because%20I%27m%20sad%20that%20Eclipse%20is%20every%20time%20slower%20and%20it%20frozes%20every%20time%20when%20you%20are%20doing%20something%20to%20fast.%0D%0A%0D%0ANetbeans%20is%20not%20perfect%2C%20and%20there%20are%20some%20features%20that%20need%20to%20be%20polished%20%28Ex.%3A%20SVN%20Support%2C" title="Digg"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;title=Netbeans%20Performance%20Switches&amp;notes=I%20recently%20have%20began%20to%20use%20Netbeans%20because%20I%27m%20sad%20that%20Eclipse%20is%20every%20time%20slower%20and%20it%20frozes%20every%20time%20when%20you%20are%20doing%20something%20to%20fast.%0D%0A%0D%0ANetbeans%20is%20not%20perfect%2C%20and%20there%20are%20some%20features%20that%20need%20to%20be%20polished%20%28Ex.%3A%20SVN%20Support%2C" title="del.icio.us"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;t=Netbeans%20Performance%20Switches" title="Facebook"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;title=Netbeans%20Performance%20Switches&amp;annotation=I%20recently%20have%20began%20to%20use%20Netbeans%20because%20I%27m%20sad%20that%20Eclipse%20is%20every%20time%20slower%20and%20it%20frozes%20every%20time%20when%20you%20are%20doing%20something%20to%20fast.%0D%0A%0D%0ANetbeans%20is%20not%20perfect%2C%20and%20there%20are%20some%20features%20that%20need%20to%20be%20polished%20%28Ex.%3A%20SVN%20Support%2C" title="Google Bookmarks"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Netbeans%20Performance%20Switches&amp;body=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F" title="email"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F&amp;title=Netbeans%20Performance%20Switches&amp;source=P0L0%26%23039%3Bs+Blog+Opensource+Projects+and+IT+experiences&amp;summary=I%20recently%20have%20began%20to%20use%20Netbeans%20because%20I%27m%20sad%20that%20Eclipse%20is%20every%20time%20slower%20and%20it%20frozes%20every%20time%20when%20you%20are%20doing%20something%20to%20fast.%0D%0A%0D%0ANetbeans%20is%20not%20perfect%2C%20and%20there%20are%20some%20features%20that%20need%20to%20be%20polished%20%28Ex.%3A%20SVN%20Support%2C" title="LinkedIn"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://meneame.net/submit.php?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F" title="Meneame"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Netbeans%20Performance%20Switches%20-%20http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2010%2F04%2F17%2Fnetbeans-performance-switches%2F" title="Twitter"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2010/04/17/netbeans-performance-switches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CNET Mootools libraries</title>
		<link>http://p0l0.binware.org/index.php/2008/08/28/cnet-mootools-libraries/</link>
		<comments>http://p0l0.binware.org/index.php/2008/08/28/cnet-mootools-libraries/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:54:27 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[cnet libraries]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/?p=277</guid>
		<description><![CDATA[Mootools para mi es uno de los frameworks javascript que mas me gustan y que estoy utilizando bastante ultimamente. El otro dia estaba buscando unas librerias interesantes para Mootols y me tope con las CNET Libraries, que son unas librerias OpenSource compatibles con Mootools 1.2
Las librerias cuentan con una buena documentacion y ejemplos, estan divididas [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mootools.net" target="_blank">Mootools</a> para mi es uno de los frameworks javascript que mas me gustan y que estoy utilizando bastante ultimamente. El otro dia estaba buscando unas librerias interesantes para Mootols y me tope con las <a href="http://clientside.cnet.com/wiki/cnet-libraries/" target="_blank">CNET Libraries</a>, que son unas librerias OpenSource compatibles con Mootools 1.2</p>
<p>Las librerias cuentan con una buena documentacion y ejemplos, estan divididas en varias categorias:</p>
<ul>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/01-core" target="_blank">Core</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/02-browser" target="_blank">Browser Extensions</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/03-native" target="_blank">Native Extensions</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/04-element" target="_blank">Element Extensions</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/05-fx" target="_blank">FX Extensions</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/06-request" target="_blank">Request Extensions</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/07-ui" target="_blank">UI</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/08-layout" target="_blank">Layout</a></li>
<li><a href="http://clientside.cnet.com/wiki/cnet-libraries/09-forms" target="_blank">Forms</a></li>
</ul>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;partner=sociable" title="Print"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;title=CNET%20Mootools%20libraries&amp;bodytext=Mootools%20para%20mi%20es%20uno%20de%20los%20frameworks%20javascript%20que%20mas%20me%20gustan%20y%20que%20estoy%20utilizando%20bastante%20ultimamente.%20El%20otro%20dia%20estaba%20buscando%20unas%20librerias%20interesantes%20para%20Mootols%20y%20me%20tope%20con%20las%20CNET%20Libraries%2C%20que%20son%20unas%20librerias%20OpenSour" title="Digg"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;title=CNET%20Mootools%20libraries&amp;notes=Mootools%20para%20mi%20es%20uno%20de%20los%20frameworks%20javascript%20que%20mas%20me%20gustan%20y%20que%20estoy%20utilizando%20bastante%20ultimamente.%20El%20otro%20dia%20estaba%20buscando%20unas%20librerias%20interesantes%20para%20Mootols%20y%20me%20tope%20con%20las%20CNET%20Libraries%2C%20que%20son%20unas%20librerias%20OpenSour" title="del.icio.us"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;t=CNET%20Mootools%20libraries" title="Facebook"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;title=CNET%20Mootools%20libraries&amp;annotation=Mootools%20para%20mi%20es%20uno%20de%20los%20frameworks%20javascript%20que%20mas%20me%20gustan%20y%20que%20estoy%20utilizando%20bastante%20ultimamente.%20El%20otro%20dia%20estaba%20buscando%20unas%20librerias%20interesantes%20para%20Mootols%20y%20me%20tope%20con%20las%20CNET%20Libraries%2C%20que%20son%20unas%20librerias%20OpenSour" title="Google Bookmarks"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CNET%20Mootools%20libraries&amp;body=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F" title="email"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F&amp;title=CNET%20Mootools%20libraries&amp;source=P0L0%26%23039%3Bs+Blog+Opensource+Projects+and+IT+experiences&amp;summary=Mootools%20para%20mi%20es%20uno%20de%20los%20frameworks%20javascript%20que%20mas%20me%20gustan%20y%20que%20estoy%20utilizando%20bastante%20ultimamente.%20El%20otro%20dia%20estaba%20buscando%20unas%20librerias%20interesantes%20para%20Mootols%20y%20me%20tope%20con%20las%20CNET%20Libraries%2C%20que%20son%20unas%20librerias%20OpenSour" title="LinkedIn"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://meneame.net/submit.php?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F" title="Meneame"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=CNET%20Mootools%20libraries%20-%20http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2008%2F08%2F28%2Fcnet-mootools-libraries%2F" title="Twitter"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2008/08/28/cnet-mootools-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entorno de desarrollo web con Eclipse</title>
		<link>http://p0l0.binware.org/index.php/2006/10/18/entorno-de-desarrollo-web-con-eclipse/</link>
		<comments>http://p0l0.binware.org/index.php/2006/10/18/entorno-de-desarrollo-web-con-eclipse/#comments</comments>
		<pubDate>Wed, 18 Oct 2006 17:46:20 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/index.php/2006/10/18/entorno-de-desarrollo-web-con-eclipse/</guid>
		<description><![CDATA[Ultimamente estoy mirando de encontrar el mejor entorno de desarollo multiplataforma que me vaya bien para llevar los proyectos de webs. Finalmente el que me ha convencido ha sido Eclipse con los plugins para PHP/HTML/CSS/Javascript y SVN:

Aptana: HTML/CSS/Javascript. Update Site: http://update.aptana.com/update/
PHPEclipse: PHP. Update Site: http://phpeclipse.sourceforge.net/update/releases/
Subclipse: SVN. Update Site: http://subclipse.tigris.org/update_1.0.x

Lo unico que hace falta para instalarse [...]]]></description>
			<content:encoded><![CDATA[<p>Ultimamente estoy mirando de encontrar el mejor entorno de desarollo multiplataforma que me vaya bien para llevar los proyectos de webs. Finalmente el que me ha convencido ha sido <a target="_blank" title="Eclipse" href="http://www.eclipse.org">Eclipse</a> con los plugins para PHP/HTML/CSS/Javascript y SVN:</p>
<ul>
<li style="text-align: left"><a target="_blank" title="Aptana: The Web IDE" href="http://www.aptana.com">Aptana</a>: HTML/CSS/Javascript. Update Site: http://update.aptana.com/update/</li>
<li style="text-align: left"><a target="_blank" title="PHPEclipse.net" href="http://www.phpeclipse.de">PHPEclipse</a>: PHP. Update Site: http://phpeclipse.sourceforge.net/update/releases/</li>
<li style="text-align: left"><a target="_blank" title="subclipse.tigris.org" href="http://subclipse.tigris.org/">Subclipse</a>: SVN. Update Site: http://subclipse.tigris.org/update_1.0.x</li>
</ul>
<p>Lo unico que hace falta para instalarse todos los plugins, es bajarse el ultimo <a target="_blank" title="Eclipse Downloads" href="http://www.eclipse.org/downloads/">Eclipse</a> e ir a "Help->Software Updates->Find and install..." y añadir los "Update Site" de cada uno bajo "Search for new features to install".</p>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;partner=sociable" title="Print"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;title=Entorno%20de%20desarrollo%20web%20con%20Eclipse&amp;bodytext=Ultimamente%20estoy%20mirando%20de%20encontrar%20el%20mejor%20entorno%20de%20desarollo%20multiplataforma%20que%20me%20vaya%20bien%20para%20llevar%20los%20proyectos%20de%20webs.%20Finalmente%20el%20que%20me%20ha%20convencido%20ha%20sido%20Eclipse%20con%20los%20plugins%20para%20PHP%2FHTML%2FCSS%2FJavascript%20y%20SVN%3A%0D%0A%0D%0AAptana%3A" title="Digg"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;title=Entorno%20de%20desarrollo%20web%20con%20Eclipse&amp;notes=Ultimamente%20estoy%20mirando%20de%20encontrar%20el%20mejor%20entorno%20de%20desarollo%20multiplataforma%20que%20me%20vaya%20bien%20para%20llevar%20los%20proyectos%20de%20webs.%20Finalmente%20el%20que%20me%20ha%20convencido%20ha%20sido%20Eclipse%20con%20los%20plugins%20para%20PHP%2FHTML%2FCSS%2FJavascript%20y%20SVN%3A%0D%0A%0D%0AAptana%3A" title="del.icio.us"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;t=Entorno%20de%20desarrollo%20web%20con%20Eclipse" title="Facebook"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;title=Entorno%20de%20desarrollo%20web%20con%20Eclipse&amp;annotation=Ultimamente%20estoy%20mirando%20de%20encontrar%20el%20mejor%20entorno%20de%20desarollo%20multiplataforma%20que%20me%20vaya%20bien%20para%20llevar%20los%20proyectos%20de%20webs.%20Finalmente%20el%20que%20me%20ha%20convencido%20ha%20sido%20Eclipse%20con%20los%20plugins%20para%20PHP%2FHTML%2FCSS%2FJavascript%20y%20SVN%3A%0D%0A%0D%0AAptana%3A" title="Google Bookmarks"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Entorno%20de%20desarrollo%20web%20con%20Eclipse&amp;body=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F" title="email"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F&amp;title=Entorno%20de%20desarrollo%20web%20con%20Eclipse&amp;source=P0L0%26%23039%3Bs+Blog+Opensource+Projects+and+IT+experiences&amp;summary=Ultimamente%20estoy%20mirando%20de%20encontrar%20el%20mejor%20entorno%20de%20desarollo%20multiplataforma%20que%20me%20vaya%20bien%20para%20llevar%20los%20proyectos%20de%20webs.%20Finalmente%20el%20que%20me%20ha%20convencido%20ha%20sido%20Eclipse%20con%20los%20plugins%20para%20PHP%2FHTML%2FCSS%2FJavascript%20y%20SVN%3A%0D%0A%0D%0AAptana%3A" title="LinkedIn"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://meneame.net/submit.php?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F" title="Meneame"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Entorno%20de%20desarrollo%20web%20con%20Eclipse%20-%20http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F10%2F18%2Fentorno-de-desarrollo-web-con-eclipse%2F" title="Twitter"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2006/10/18/entorno-de-desarrollo-web-con-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abrir links en nuevas ventanas en XHTML 1.0 Strict</title>
		<link>http://p0l0.binware.org/index.php/2006/09/07/abrir-links-en-nuevas-ventanas-en-xhtml-10-strict/</link>
		<comments>http://p0l0.binware.org/index.php/2006/09/07/abrir-links-en-nuevas-ventanas-en-xhtml-10-strict/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 14:48:41 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/index.php/2006/09/07/abrir-links-en-nuevas-ventanas-en-xhtml-10-strict/</guid>
		<description><![CDATA[Siguiendo con los problemas de ceñirse al XHTML 1.0 Strict me he encontrado que en la etiqueta &#60;a&#62; ya no existe la propiedad target por lo tanto para abrir links en paginas nuevas es algo que se hace dificil. Pero googleando me encontre con esta solucion.

function externalLinks() {
    if (!document.getElementsByTagName) return;
  [...]]]></description>
			<content:encoded><![CDATA[<p>Siguiendo con los problemas de ceñirse al XHTML 1.0 Strict me he encontrado que en la etiqueta <strong>&lt;a&gt;</strong> ya no existe la propiedad <strong>target</strong> por lo tanto para abrir links en paginas nuevas es algo que se hace dificil. Pero googleando me encontre con esta solucion.</p>
<pre name="code" class="javascript">
function externalLinks() {
    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i=0; i++) {
        var anchor = anchors[i];
        if (anchor.getAttribute("href") &#038;&
            anchor.getAttribute("rel") == "external")
                anchor.target = "_blank";
    }
}
window.onload = externalLinks;
</pre>
<p>Y luego lo unico que hay que hacer es usar <strong>rel="external"</strong> en todos los links que se quieran abrir en ventanas nuevas</p>



Share:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;partner=sociable" title="Print"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;title=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict&amp;bodytext=Siguiendo%20con%20los%20problemas%20de%20ce%C3%B1irse%20al%20XHTML%201.0%20Strict%20me%20he%20encontrado%20que%20en%20la%20etiqueta%20%26lt%3Ba%26gt%3B%20ya%20no%20existe%20la%20propiedad%20target%20por%20lo%20tanto%20para%20abrir%20links%20en%20paginas%20nuevas%20es%20algo%20que%20se%20hace%20dificil.%20Pero%20googleando%20me%20encontre%20con%20es" title="Digg"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;title=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict&amp;notes=Siguiendo%20con%20los%20problemas%20de%20ce%C3%B1irse%20al%20XHTML%201.0%20Strict%20me%20he%20encontrado%20que%20en%20la%20etiqueta%20%26lt%3Ba%26gt%3B%20ya%20no%20existe%20la%20propiedad%20target%20por%20lo%20tanto%20para%20abrir%20links%20en%20paginas%20nuevas%20es%20algo%20que%20se%20hace%20dificil.%20Pero%20googleando%20me%20encontre%20con%20es" title="del.icio.us"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;t=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict" title="Facebook"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;title=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict&amp;annotation=Siguiendo%20con%20los%20problemas%20de%20ce%C3%B1irse%20al%20XHTML%201.0%20Strict%20me%20he%20encontrado%20que%20en%20la%20etiqueta%20%26lt%3Ba%26gt%3B%20ya%20no%20existe%20la%20propiedad%20target%20por%20lo%20tanto%20para%20abrir%20links%20en%20paginas%20nuevas%20es%20algo%20que%20se%20hace%20dificil.%20Pero%20googleando%20me%20encontre%20con%20es" title="Google Bookmarks"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict&amp;body=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F" title="email"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F&amp;title=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict&amp;source=P0L0%26%23039%3Bs+Blog+Opensource+Projects+and+IT+experiences&amp;summary=Siguiendo%20con%20los%20problemas%20de%20ce%C3%B1irse%20al%20XHTML%201.0%20Strict%20me%20he%20encontrado%20que%20en%20la%20etiqueta%20%26lt%3Ba%26gt%3B%20ya%20no%20existe%20la%20propiedad%20target%20por%20lo%20tanto%20para%20abrir%20links%20en%20paginas%20nuevas%20es%20algo%20que%20se%20hace%20dificil.%20Pero%20googleando%20me%20encontre%20con%20es" title="LinkedIn"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://meneame.net/submit.php?url=http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F" title="Meneame"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Abrir%20links%20en%20nuevas%20ventanas%20en%20XHTML%201.0%20Strict%20-%20http%3A%2F%2Fp0l0.binware.org%2Findex.php%2F2006%2F09%2F07%2Fabrir-links-en-nuevas-ventanas-en-xhtml-10-strict%2F" title="Twitter"><img src="http://p0l0.binware.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2006/09/07/abrir-links-en-nuevas-ventanas-en-xhtml-10-strict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
