Difference between revisions of "NetBeans"

From Freephile Wiki
Jump to navigation Jump to search
(Created page with "NetBeans is a decent editor, but it lacks some features (who knows why). If you ever wanted to work on a remote server without having to download files and/or synchronize the...")
 
Line 1: Line 1:
NetBeans is a decent editor, but it lacks some features (who knows why).  If you ever wanted to work on a remote server without having to download files and/or synchronize them (which NetBeans is horrible at), then use this simple hack:
+
NetBeans is a really decent editor, but it lacks one important feature (who knows why?).  If you ever wanted to work on a remote server without having to download files and/or synchronize them (which NetBeans is horrible at), then use this simple hack:
  
 
<blockquote>
 
<blockquote>
Line 14: Line 14:
  
 
Then, setup a project in NetBeans with existing sources, and use the mountpoint
 
Then, setup a project in NetBeans with existing sources, and use the mountpoint
 +
 +
== Specific Resources ==
 +
* https://netbeans.org/kb/docs/php/code-templates.html#using-templates
  
 
[[Category:Developer]]
 
[[Category:Developer]]
 
[[Category:Tools]]
 
[[Category:Tools]]

Revision as of 12:24, 26 June 2015

NetBeans is a really decent editor, but it lacks one important feature (who knows why?). If you ever wanted to work on a remote server without having to download files and/or synchronize them (which NetBeans is horrible at), then use this simple hack:

Use a remote filesystem available in your Operating System

e.g.

sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet

Then, setup a project in NetBeans with existing sources, and use the mountpoint

Specific Resources[edit | edit source]