<?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; css</title>
	<atom:link href="http://p0l0.binware.org/index.php/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://p0l0.binware.org</link>
	<description>Opensource Projects and IT experiences</description>
	<lastBuildDate>Sun, 30 Oct 2011 08:39:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<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&#8217;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, [...]]]></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&#8217;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 &#8211;laf switch, it&#8217;s for changing the look and feel):<br />
<span id="more-655"></span></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> &#8211; Define Stack Size (Too small and you will get StackOverflow Exceptions)</li>
<li><strong>-J-Xms32m</strong> &#8211; 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> &#8211; 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> &#8211; How much Heap can be added over the Xmx limit</li>
<li><strong>-J-Xverify:none</strong> &#8211; 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> &#8211; 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> &#8211; Activate Compressed &#8220;Ordinary Object Pointer&#8221;</li>
<li><strong>-XX:+AggressiveOpts</strong> &#8211; Turns on point performance optimizations that are expected to be on by default in upcoming releases</li>
<li><strong>-XX:+TieredCompilation</strong> &#8211; Activate Tiered Compiler</li>
<li><strong>-XX:+DoEscapeAnalysis</strong> &#8211; 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 &#8220;stop the world&#8221; 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&#8217;t by default when using this collector)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2010/04/17/netbeans-performance-switches/feed/</wfw:commentRss>
		<slash:comments>3</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 [...]]]></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 &#8220;Help->Software Updates->Find and install&#8230;&#8221; y añadir los &#8220;Update Site&#8221; de cada uno bajo &#8220;Search for new features to install&#8221;.</p>
]]></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>Alinear una tabla en XHTML 1.0 Strict</title>
		<link>http://p0l0.binware.org/index.php/2006/09/05/alinear-una-tabla-en-xhtml-10-strict/</link>
		<comments>http://p0l0.binware.org/index.php/2006/09/05/alinear-una-tabla-en-xhtml-10-strict/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 22:05:37 +0000</pubDate>
		<dc:creator>P0L0</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://p0l0.binware.org/index.php/2006/09/05/alinear-una-tabla-en-xhtml-10-strict/</guid>
		<description><![CDATA[Estaba validando una web que estoy haciendo en XHTML 1.0 Strict, tal como recomiendan el estandar de W3C, pero resulta que no habia manera de centra una tabla en medio de la pantalla. Los dos metodos que conocia &#60;center&#62; &#60;table&#62; &#8230; &#60;/table&#62; &#60;/center&#62; y &#60;table align=&#8221;center&#8221;&#62; &#8230; &#60;/table&#62; no funcionan, ya que en el modo [...]]]></description>
			<content:encoded><![CDATA[<p>Estaba validando una web que estoy haciendo en XHTML 1.0 Strict, tal como recomiendan el estandar de W3C, pero resulta que no habia manera de centra una tabla en medio de la pantalla. Los dos metodos que conocia <strong>&lt;</strong><strong>center</strong><strong>&gt;</strong><strong> &lt;</strong><strong>table</strong><strong>&gt; </strong><strong>&#8230;</strong><strong> &lt;</strong><strong>/table</strong><strong>&gt; </strong><strong>&lt;</strong><strong>/center</strong><strong>&gt;</strong> y <strong>&lt;</strong><strong>table align=&#8221;center&#8221;</strong><strong>&gt; </strong><strong>&#8230;</strong><strong> &lt;</strong><strong>/table&gt;</strong> no funcionan, ya que en el modo Strict estan prohibidos, asi que googleando un poco encontre este post de <a target="_blank" title="debin.net :: how to center a table in xhtml strict" href="http://debin.net/2002/aligntable/">debin.net</a> y la mejor solucion para que funcione en MSIE y demas es usar css poniendo: <strong>table { margin-left:auto; margin-right:auto; text-align: center; }</strong> y se alinea bien.</p>
]]></content:encoded>
			<wfw:commentRss>http://p0l0.binware.org/index.php/2006/09/05/alinear-una-tabla-en-xhtml-10-strict/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

