<?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>IDE | Nerdpress.org</title>
	<atom:link href="https://nerdpress.org/category/tools-2/ide/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdpress.org</link>
	<description>...dev, tech problems and solutions.</description>
	<lastBuildDate>Wed, 09 Aug 2023 09:51:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Sqlite Administration in IntelliJ IDE</title>
		<link>https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/</link>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Mon, 17 May 2021 05:51:21 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Sqlite]]></category>
		<category><![CDATA[IntelliJ Ultimate]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=3050</guid>

					<description><![CDATA[<p>Sometime ago I tried to use Adminer in Docker to administrate a sqlite database, which was not as easy as expected.If you are a happy user of IntelliJ IDE like PHPStorm or IntelliJ Ultimate like me :) then i would nowadays recommend to use the built-in database tool of your IntelliJ IDE for Sqlite administration &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/" class="more-link">Continue reading<span class="screen-reader-text"> "Sqlite Administration in IntelliJ IDE"</span></a></p>
The post <a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/">Sqlite Administration in IntelliJ IDE</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Sometime ago I tried to use <a href="https://nerdpress.org/2019/10/23/adminer-for-sqlite-in-docker/" target="_blank" rel="noreferrer noopener">Adminer in Docker</a> to administrate a sqlite database, which was not as easy as expected.<br />If you are a happy user of IntelliJ IDE like PHPStorm or IntelliJ Ultimate like me :) then i would nowadays recommend to use the built-in database tool of your IntelliJ IDE for Sqlite administration instead.<br />Even in dockerized context.</p>



<span id="more-3050"></span>



<p>A Sqlite database is only one file, which you surely have access to.<br />So just add a Database configuration to your IDE and point it to the Sqlite file.<br />Click on the Database flyout on the left side then on the + (Plus) and add a Sqlite configuration.<br />(IntelliJ has good documentation on <a href="https://www.jetbrains.com/help/idea/connecting-to-a-database.html#connect-to-sqlite-database" target="_blank" rel="noreferrer noopener">Sqlite Database connection</a> as well of course)</p>



<figure class="wp-block-image size-large"><a href="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database.png"><img fetchpriority="high" decoding="async" width="1024" height="563" src="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-1024x563.png" alt="" class="wp-image-3051" srcset="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-1024x563.png 1024w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-300x165.png 300w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-768x422.png 768w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database.png 1257w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a></figure>



<p>Then you are ready to go.<br />The UI of the database structure is quite good.<br />You can browse the tables by doublelick on the table in the database structure view.<br />Also you can edit values in the table view.<br />Note: <em>When the DB was created inside the Docker container you probably dont own the DB from the host and you wont be able write to it.<br />While developing just change permissions on the host, if necessary.</em></p>



<p>You can also open a <strong>Database Console</strong> window where you can test queries.<br />This is particular better than using Adminer because these test queries are persisted and will still be there the next day.<br />You can add multiple database consoles and reopen them from &#8220;Scratches and Consoles&#8221; in your Project menu.</p>



<figure class="wp-block-image size-large"><a href="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console.png"><img decoding="async" width="1024" height="447" src="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-1024x447.png" alt="" class="wp-image-3052" srcset="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-1024x447.png 1024w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-300x131.png 300w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-768x335.png 768w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console.png 1434w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a></figure>



<p>So no Adminer needed. Sqlite is just a file, dude.<br />No hassles with docker-compose anymore for DB administration and still using Docker for the app. :)</p>



<p><strong>Update 09.08.2023:</strong><br />JetBrains has now also uploaded a nice Youtube Video Tutorial on how to deal with Sqlite databases in IntelliJ IDEs like f.e. PHPStorm:<br /><a href="https://www.youtube.com/watch?v=Qw_JniULJBI" target="_blank" rel="noopener" title="">Working with SQLite Databases in any JetBrains IDE</a></p>



<p>I learned that you can now Drag and Drop Sqlite database files into the DataBase Pane and the IDE connects it directly, nice!</p>



<p></p>The post <a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/">Sqlite Administration in IntelliJ IDE</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Directories settings in PHPStorm and IntelliJ Ultimate</title>
		<link>https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/</link>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Sat, 29 Dec 2018 10:30:46 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IntelliJ Ultimate]]></category>
		<category><![CDATA[PHPStorm]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=2840</guid>

					<description><![CDATA[<p>I recently switched from PHPStorm to IntelliJ Ultimate because of some Java. But still i am working a lot on PHP and symfony projects. One thing i usually do on symfony projects in PHPStorm is to edit the &#8220;Directories&#8221; in the settings to avoid having results from var/cache or var/logs in the search results. Also &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/" class="more-link">Continue reading<span class="screen-reader-text"> "Directories settings in PHPStorm and IntelliJ Ultimate"</span></a></p>
The post <a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/">Directories settings in PHPStorm and IntelliJ Ultimate</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>I recently switched from PHPStorm to IntelliJ Ultimate because of some Java. But still i am working a lot on PHP and symfony projects.</p>
<p>One thing i usually do on symfony projects in PHPStorm is to edit the <i>&#8220;Directories&#8221;</i> in the settings to avoid having results from <em>var/cache</em> or <em>var/logs</em> in the search results.</p>
<p>Also it slows down the search which i heavily use. So i exlude all folders that should not be searched because they are cache files or are redundant in some other way.</p>


<span id="more-2840"></span>



<figure class="wp-block-image"><a href="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51.png"><img decoding="async" width="1024" height="627" src="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-1024x627.png" alt="" class="wp-image-2843" srcset="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-1024x627.png 1024w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-300x184.png 300w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-768x470.png 768w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51.png 1920w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a><figcaption>PHPStorm Directories Settings</figcaption></figure>



<p>See this <strong>SO</strong> post for further discussion: <a rel="noreferrer noopener" href="https://stackoverflow.com/questions/35654320/how-to-configure-directories-when-using-a-symfony-project-in-phpstorm" target="_blank">https://stackoverflow.com/questions/35654320/how-to-configure-directories-when-using-a-symfony-project-in-phpstorm</a></p>



<p>But in IntelliJ Ultimate its a bit different and it took me a bit to figure out.<br>Here the equivalent is located under <em>&#8220;Project Structure-&gt;Modules&#8221;</em>.<br>Here you can exclude Directories, set &#8220;test&#8221; and &#8220;source&#8221; folders.</p>



<figure class="wp-block-image"><a href="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16.png"><img decoding="async" width="1024" height="627" src="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-1024x627.png" alt="" class="wp-image-2844" srcset="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-1024x627.png 1024w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-300x184.png 300w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-768x470.png 768w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16.png 1920w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a><figcaption>IntelliJ Ultimate Modules settings</figcaption></figure>



<p>Also it seems settings are imported from PHPStorm settings already when using a former PHPStorm project in IntelliJ Ultimate. Nice :)</p>The post <a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/">Directories settings in PHPStorm and IntelliJ Ultimate</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>nodejs plugin for netbeans</title>
		<link>https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/</link>
					<comments>https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/#comments</comments>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Wed, 05 Oct 2011 05:45:49 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Plugin]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=1830</guid>

					<description><![CDATA[<p>Over the weekend i looked for a plugin for node.js in netbeans and ended up tryin this one: http://timboudreau.com/blog/read/NetBeans_Tools_for_Node_js Actually its all said on the post itself: installation, features and restrictions. So go and read it. Its still a bit early stage and only runs on a nightly-build netbeans but it already has some helpful &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/" class="more-link">Continue reading<span class="screen-reader-text"> "nodejs plugin for netbeans"</span></a></p>
The post <a href="https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/">nodejs plugin for netbeans</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Over the weekend i looked for a plugin for node.js in netbeans and ended up tryin this one:<br />
<a href="http://timboudreau.com/blog/read/NetBeans_Tools_for_Node_js">http://timboudreau.com/blog/read/NetBeans_Tools_for_Node_js</a></p>
<p>Actually its all said on the post itself: installation, features and restrictions.<br />
So go and <a href="http://timboudreau.com/blog/read/NetBeans_Tools_for_Node_js">read it</a>.</p>
<p>Its still a bit early stage and only runs on a nightly-build netbeans but it already has some helpful features.<br />
<span id="more-1830"></span><br />
For me i just like to have a node.js icon as my project icon ;).<br />
No serious, i like the npm support, see image, especially for browsing the modules to see what is all available.<br />
<a href="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_netbeans_npm.png"><img decoding="async" class="alignnone size-medium wp-image-1831" title="nodejs_netbeans_npm" src="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_netbeans_npm-300x182.png" alt="" width="300" height="182" srcset="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_netbeans_npm-300x182.png 300w, https://nerdpress.org/wp-content/uploads/2011/10/nodejs_netbeans_npm.png 819w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>Whats also is nice and that you have the modules in the file tree and that they show the module info.<br />
<a href="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_plugin_netbeans.png"><img decoding="async" class="alignnone size-medium wp-image-1832" title="nodejs_plugin_netbeans" src="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_plugin_netbeans-300x271.png" alt="" width="300" height="271" srcset="https://nerdpress.org/wp-content/uploads/2011/10/nodejs_plugin_netbeans-300x271.png 300w, https://nerdpress.org/wp-content/uploads/2011/10/nodejs_plugin_netbeans.png 336w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>A GUI for installing the modules and editing the package file i dont really need but its nice to have.<br />
Then starting the app from a button in netbeans is also nice.</p>
<p>I guess whats missing the most is code completion, maybe that will be added sometime soon.<br />
I hope so, because having code completion for node modules would be pretty cool.</p>The post <a href="https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/">nodejs plugin for netbeans</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
					<wfw:commentRss>https://nerdpress.org/2011/10/05/nodejs-plugin-for-netbeans/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Bazaar &#038; Eclipse &#8220;EOL during negotiation&#8221; bei MacOSX</title>
		<link>https://nerdpress.org/2011/01/28/bazaar-eclipse-eol-during-negotiation-bei-macosx/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 28 Jan 2011 15:28:18 +0000</pubDate>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[IDE]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=1338</guid>

					<description><![CDATA[<p>Wenn bei der Arbeit mit Sourcecodeverwaltungssystemen wie Bazaar mit Passwortabfrage unter MacOSX Leopard ein Verbindungsabbruch mit der Fehlermeldung &#8220;EOL during negotiation&#8221; gemeldet wird, liegt es an der fehlenden Passwortabfrage. Das entsprechende Fenster zur Eingabe wird nicht angezeigt, da MacOSX hier wohl eher auf seine eigene Keychainabfrage vertraut. Dieses Skript schafft Abhilfe.</p>
The post <a href="https://nerdpress.org/2011/01/28/bazaar-eclipse-eol-during-negotiation-bei-macosx/">Bazaar & Eclipse “EOL during negotiation” bei MacOSX</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Wenn bei der Arbeit mit Sourcecodeverwaltungssystemen wie Bazaar mit Passwortabfrage unter MacOSX Leopard ein Verbindungsabbruch mit der Fehlermeldung &#8220;EOL during negotiation&#8221; gemeldet wird, liegt es an der fehlenden Passwortabfrage. Das entsprechende Fenster zur Eingabe wird nicht angezeigt, da MacOSX hier wohl eher auf seine eigene Keychainabfrage vertraut. Dieses <a href="http://cakealot.com/2009/04/fixing-missing-ssh-askpass-on-macos-105/">Skript</a> schafft Abhilfe. </p>The post <a href="https://nerdpress.org/2011/01/28/bazaar-eclipse-eol-during-negotiation-bei-macosx/">Bazaar & Eclipse “EOL during negotiation” bei MacOSX</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Eclipse Plugin PHP Tool Integration</title>
		<link>https://nerdpress.org/2011/01/26/eclipse-plugin-php-tool-integration/</link>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Wed, 26 Jan 2011 10:09:13 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[CodeSniffer]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[phpdepend]]></category>
		<category><![CDATA[PHPUnit]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=1331</guid>

					<description><![CDATA[<p>Ich bin letzte Woche über Eclipse PTI gestolpert und habe es direkt mal ausprobiert. Einfach über den Eclipse installer über die Site: http://www.phpsrc.org/eclipse/pti/ geholt und fertig. Was ist PTI? PTI ist ein Plugin für Eclipse PDT (zumeist), das folgende Tools in Eclipse integriert: * PHP_CodeSniffer * PHPUnit * PHP Depend * PHP Copy/Paste Detector Das &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2011/01/26/eclipse-plugin-php-tool-integration/" class="more-link">Continue reading<span class="screen-reader-text"> "Eclipse Plugin PHP Tool Integration"</span></a></p>
The post <a href="https://nerdpress.org/2011/01/26/eclipse-plugin-php-tool-integration/">Eclipse Plugin PHP Tool Integration</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Ich bin letzte Woche über Eclipse <a href="http://www.phpsrc.org/">PTI</a> gestolpert und habe es direkt mal ausprobiert.<br />
Einfach über den Eclipse installer über die Site: <em>http://www.phpsrc.org/eclipse/pti/</em> geholt und fertig.</p>
<p>Was ist PTI? PTI ist ein Plugin für Eclipse PDT (zumeist), das folgende Tools in Eclipse integriert:</p>
<p>    * <a href="http://pear.php.net/package/PHP_CodeSniffer/">PHP_CodeSniffer</a><br />
    * <a href="http://www.phpunit.de/">PHPUnit</a><br />
    * <a href="http://www.pdepend.org/">PHP Depend</a><br />
    * <a href="http://github.com/sebastianbergmann/phpcpd">PHP Copy/Paste Detector</a> </p>
<p><span id="more-1331"></span></p>
<p>Das sind meines Erachtens alles eher Tools die auf den CI Server gehören, aber ist doch irgendwie praktisch die direkt in Eclipse zu haben.<br />
Falls man mal was sichten oder direkt checken will.<br />
Für mich der Hauptvorteil ist wohl, dass man die Tools ohne viel Aufwand zu Verfügung gestellt kriegt.<br />
Ich hätte mir wohl sonst nie <em>phpdepend</em> oder <em>phpcpd</em> installiert und benutzt.</p>
<p><a href="https://nerdpress.org/wp-content/uploads/2011/01/phpdepend-pti.png"><img decoding="async" src="https://nerdpress.org/wp-content/uploads/2011/01/phpdepend-pti-300x227.png" alt="" title="phpdepend-pti" width="300" height="227" class="alignnone size-medium wp-image-1332" /></a></p>
<p>&#8230; und auch prompt über phpdepend, als netter Seiteneffekt, ein Syntax Fehler gefunden :).</p>The post <a href="https://nerdpress.org/2011/01/26/eclipse-plugin-php-tool-integration/">Eclipse Plugin PHP Tool Integration</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Cheat-Sheets für alle(s)</title>
		<link>https://nerdpress.org/2010/06/13/cheat-sheets-fur-alles/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 13 Jun 2010 13:26:01 +0000</pubDate>
				<category><![CDATA[API]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Cheat-Sheet]]></category>
		<category><![CDATA[Dokumentation]]></category>
		<category><![CDATA[Referenz]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=1052</guid>

					<description><![CDATA[<p>Diesem Mann ist sicher nie langweilig: http://www.addedbytes.com/cheat-sheets/. Hinter diesem Link verbergen sich Cheat Sheets zum Selber-Ausdrucken für alles Denkbare.</p>
The post <a href="https://nerdpress.org/2010/06/13/cheat-sheets-fur-alles/">Cheat-Sheets für alle(s)</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Diesem Mann ist sicher nie langweilig: <a href="http://www.addedbytes.com/cheat-sheets/">http://www.addedbytes.com/cheat-sheets/</a>. Hinter diesem Link verbergen sich Cheat Sheets zum Selber-Ausdrucken für alles Denkbare. </p>The post <a href="https://nerdpress.org/2010/06/13/cheat-sheets-fur-alles/">Cheat-Sheets für alle(s)</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>vim2html</title>
		<link>https://nerdpress.org/2010/02/09/vim2html/</link>
					<comments>https://nerdpress.org/2010/02/09/vim2html/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 09 Feb 2010 12:32:02 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[font tags]]></category>
		<category><![CDATA[Highlighting]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[vim]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=803</guid>

					<description><![CDATA[<p>Meinen Lieblingseditor vim brauche ich an dieser Stelle ja nicht en detail vorzustellen. Ein Feature allerdings, über das ich erst nach jahrelanger Nutzung gestolpert bin, passt sehr gut ins nerdpress: 2html. Was dieses Kommando macht? Na, HTML-Code aus dem Inhalt des aktuellen Puffers as is erzeugen &#8211; optional mit Zeilennummern und CSS-Code. Und so geht &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2010/02/09/vim2html/" class="more-link">Continue reading<span class="screen-reader-text"> "vim2html"</span></a></p>
The post <a href="https://nerdpress.org/2010/02/09/vim2html/">vim2html</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Meinen Lieblingseditor <a title="vim.org" href="http://www.vim.org/" target="_self">vim</a> brauche ich an dieser Stelle ja nicht en detail vorzustellen.</p>
<p>Ein Feature allerdings, über das ich erst nach jahrelanger Nutzung <a title="Bens IT-Kommentare: Dateien aus VIM mit Syntaxhighlighting exportieren" href="http://blog.bmarwell.de/2010/01/23/dateien-aus-vim-mit-syntaxhighlighting-exportieren/">gestolpert bin</a>, passt sehr gut ins <em>nerdpress</em>: 2html.</p>
<p>Was dieses Kommando macht?</p>
<p>Na, HTML-Code aus dem Inhalt des aktuellen Puffers <em>as is</em> erzeugen &#8211; optional mit Zeilennummern und CSS-Code.</p>
<p>Und so geht das:<span id="more-803"></span></p>
<ul>
<li>Syntaxhighlighting einschalten<em><br />
</em></p>
<pre><em>:syntax on</em></pre>
</li>
<li>den Code erzeugen<em><br />
</em></p>
<pre><em>:runtime! syntax/2html.vim  </em>[oder <em><code>:TOhtml</code></em><code>]</code></pre>
</li>
<li>vim springt direkt in das neue split-Fenster, dort sollte man den Code direkt speichern
<pre><em>:w</em></pre>
</li>
</ul>
<p>fertig.</p>
<p>Falls man die Zeilennummern drin haben möchte, hilft vor der HTML-Erzeugung folgendes Kommando <em><br />
</em></p>
<pre><em>:let html_number_lines = 1</em></pre>
<p>Und<em> </em>wenn es CSS sein soll, statt der älteren Font-Tags, geht auch das<em><br />
</em></p>
<pre><em>:let html_use_css = 1</em></pre>
<p>Einfacher geht es kaum&#8230; oder?</p>The post <a href="https://nerdpress.org/2010/02/09/vim2html/">vim2html</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
					<wfw:commentRss>https://nerdpress.org/2010/02/09/vim2html/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Eclipse Galieo mit Aptana und PDT</title>
		<link>https://nerdpress.org/2010/01/12/eclipse-galieo-mit-aptana-und-pdt/</link>
		
		<dc:creator><![CDATA[Max Girkens]]></dc:creator>
		<pubDate>Tue, 12 Jan 2010 20:35:04 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[code-completion]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Highlighting]]></category>
		<category><![CDATA[outline]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[YAML]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=673</guid>

					<description><![CDATA[<p>Aptana hatte sich ja in den letzten Versionen am PHP Support versucht. Was mir als großem Fan von PDT garnicht so gut gepasst hat. Damit war nämlich die Variante Aptana (als Eclipse Plugin) mit PDT zu kombinieren eher schwierig, soweit ich mich erinnern kann. Jetzt hat Aptana das Vorhaben aber an den Nagel gehängt. Und &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2010/01/12/eclipse-galieo-mit-aptana-und-pdt/" class="more-link">Continue reading<span class="screen-reader-text"> "Eclipse Galieo mit Aptana und PDT"</span></a></p>
The post <a href="https://nerdpress.org/2010/01/12/eclipse-galieo-mit-aptana-und-pdt/">Eclipse Galieo mit Aptana und PDT</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.aptana.org">Aptana</a> hatte sich ja in den letzten Versionen am PHP Support versucht.<br />
Was mir als großem Fan von <a href="http://www.eclipse.org/pdt/">PDT</a> garnicht so gut gepasst hat.<br />
Damit war nämlich die Variante <a href="http://aptana.org/studio/plugin">Aptana</a> (als Eclipse Plugin) mit PDT zu kombinieren eher schwierig, soweit ich mich erinnern kann.<span id="more-673"></span></p>
<p>Jetzt hat Aptana das Vorhaben aber <a href="http://www.aptana.org/php">an den Nagel</a> gehängt.<br />
Und das macht die Sache meiner Meinung zu einer guten Kombination mit PDT, wenn man Eclipse für Webentwicklung benutzt.</p>
<p>Die neueste Version vom Aptana Plugin lässt sich super in Eclipse Galileo mit PDT installieren.<br />
Und kommt auch sehr unauffällig daher, also auch ohne &#8220;you got new messages&#8221; , was man aus früheren Versionen noch in Erinnerung haben mag.</p>
<p>Ich benutze Aptana auch fast nur wegen seiner, meiner Meinung nach, sehr guten  JS und CSS code-completion, outline und Syntax-Highlighting. Der YAML Editor ist auch ziemlich cool.<br />
Mit der Kombination wird Eclipse wieder zu meinem Favoriten in der IDE Welt.</p>
<p>&#8230;zumal in Kombination mit<br />
<a href="http://www.eclipse.org/subversive/">subversive</a> (SVN)<br />
<a href="http://www.eclipse.org/dsdp/tm/">RSE</a> (SSH, FTP remote editing)<br />
und bald hoffentlich auch <a href="http://www.eclipse.org/egit/">egit</a> (GIT)</p>The post <a href="https://nerdpress.org/2010/01/12/eclipse-galieo-mit-aptana-und-pdt/">Eclipse Galieo mit Aptana und PDT</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Nützliche Eclipse PDT Templates zum Debuggen</title>
		<link>https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/</link>
					<comments>https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/#comments</comments>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 13:11:57 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=663</guid>

					<description><![CDATA[<p>Als kleines vorweihnachtliches Geschenk hier meine meistgebrauchten Eclipse PDT shortcuts, die leider nicht Bestandteil von PDT sind. type: du -> Strg Space und schon gibts das gute alte: Mit vd -> Strg Space gibts Besonders praktisch in Verbindung mit XDebug. So bekommt man die: Folgendes abspeichern: dann importieren, so: Window-> Perferences PHP -> Editor -> &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/" class="more-link">Continue reading<span class="screen-reader-text"> "Nützliche Eclipse PDT Templates zum Debuggen"</span></a></p>
The post <a href="https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/">Nützliche Eclipse PDT Templates zum Debuggen</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Als kleines vorweihnachtliches Geschenk hier meine meistgebrauchten Eclipse PDT shortcuts, die leider nicht Bestandteil von PDT sind.</p>
<p>type:<br />
<em>du -> Strg Space</em> und schon<br />
gibts das gute alte:</p>
<pre class="brush: php; title: ; notranslate">
echo &#039;&lt;pre&gt;&#039;;
print_r($var);
echo &#039;&lt;/pre&gt;&#039;;
</pre>
<p><span id="more-663"></span></p>
<p>Mit <em>vd -> Strg Space</em> gibts</p>
<pre class="brush: php; title: ; notranslate">
echo &#039;&lt;pre&gt;&#039;;
var_dump($var);
echo &#039;&lt;/pre&gt;&#039;;
</pre>
<p>Besonders praktisch in Verbindung mit XDebug.</p>
<p>So bekommt man die:<br />
Folgendes abspeichern:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;templates&gt;&lt;template autoinsert=&quot;true&quot; context=&quot;php&quot; deleted=&quot;false&quot; description=&quot;dump&quot; enabled=&quot;true&quot; name=&quot;dump&quot;&gt;echo &quot;&amp;lt;pre&amp;gt;&quot;;&amp;#13;

print_r($$${variable});&amp;#13;

echo &quot;&amp;lt;/pre&amp;gt;&quot;;&lt;/template&gt;&lt;template autoinsert=&quot;true&quot; context=&quot;php&quot; deleted=&quot;false&quot; description=&quot;var_dump wrapper&quot; enabled=&quot;true&quot; name=&quot;vdump&quot;&gt;echo &quot;&amp;lt;pre&amp;gt;&quot;;&amp;#13;

var_dump($$${variable});&amp;#13;

echo &quot;&amp;lt;/pre&amp;gt;&quot;;&lt;/template&gt;&lt;/templates&gt;
</pre>
<p>dann importieren, so:<br />
Window-> Perferences<br />
PHP -> Editor -> Templates<br />
Import<br />
Fertig</p>
<p>Ach was würde ich ohne machen ?!<br />
(Vielleicht mal nen echten Debugger benutzen ;))</p>The post <a href="https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/">Nützliche Eclipse PDT Templates zum Debuggen</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
					<wfw:commentRss>https://nerdpress.org/2009/12/20/nutzliche-eclipse-pdt-templates-zum-debuggen/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Zen-coding mit Eclipse PDT</title>
		<link>https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/</link>
					<comments>https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/#comments</comments>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Mon, 23 Nov 2009 13:05:25 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Dash]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[Zen-Coding]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=611</guid>

					<description><![CDATA[<p>So kann man zencoding auch mit Eclipse PDT ohne das Aptana Plugin ans laufen kriegen. Dafür braucht man Eclipse Dash (vormals Monkey).  &#8211; benutzt Aptana i.ü. auch, soweit ich das richtig gesehen habe &#8211; Das installiert man sich wie gewohnt, mit dieser URL: http://download.eclipse.org/technology/dash/update/ Eclipse neu starten und schon ist mighty Eclipse macro-fähig. Nun holt &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/" class="more-link">Continue reading<span class="screen-reader-text"> "Zen-coding mit Eclipse PDT"</span></a></p>
The post <a href="https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/">Zen-coding mit Eclipse PDT</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>So kann man <a href="http://code.google.com/p/zen-coding" target="_blank">zencoding</a> auch mit Eclipse PDT ohne das Aptana Plugin ans laufen kriegen.</p>
<p>Dafür braucht man Eclipse Dash (vormals <em>Monkey</em>).  &#8211; benutzt Aptana i.ü. auch, soweit ich das richtig gesehen habe &#8211;</p>
<p>Das installiert man sich wie gewohnt, mit dieser URL:</p>
<pre class="brush: bash; title: ; notranslate">http://download.eclipse.org/technology/dash/update/</pre>
<p>Eclipse neu starten und schon ist mighty Eclipse macro-fähig.<br />
<span id="more-611"></span><br />
Nun holt man sich die zencoding files für das Aptana Plugin von <a href="http://code.google.com/p/zen-coding/downloads/list" target="_blank">hier</a>.</p>
<p>Und dann kann los gehen:</p>
<p>In seinem Project muss man einen -scripts- Ordner anlegen, die zencoding Files da rein kopieren.</p>
<p>Und fertig</p>
<p>Dann kann man folgendes tippen:</p>
<pre class="brush: bash; title: ; notranslate">div#header.funky</pre>
<p>Alt &#8211; E drücken und schwupps wird dies draus:</p>
<pre class="brush: xml; title: ; notranslate">

&lt;div id=&quot;header&quot; class=&quot;funky&quot;&gt;&lt;/div&gt;

</pre>
<p>Die Sache mit dem -scripts- Ordner finde ich noch was verbesserungsfähig. Den hat man ja meistens eh schon dabei und dann vermischt sich das so unschön.</p>
<p>Wäre schön wenn man die Macros zentral halten könnte und dann über den include path einbindet.</p>
<p>Dies geht aber  -IMHO-  nicht. Naja vielleicht kommt das ja noch.</p>The post <a href="https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/">Zen-coding mit Eclipse PDT</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
					<wfw:commentRss>https://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
