Difference between revisions of "NetBeans"
Jump to navigation
Jump to search
(better example of sshfs) |
m (Text replacement - "<abbr title="[^"]+">(.*)<\/abbr>" to "$1") |
||
(One intermediate revision by the same user not shown) | |||
Line 11: | Line 11: | ||
<source lang="bash"> | <source lang="bash"> | ||
sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet | sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</source> | </source> | ||
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 == | == Specific Resources == | ||
* https://netbeans.org/kb/docs/php/code-templates.html#using-templates | * https://netbeans.org/kb/docs/php/code-templates.html#using-templates |
Revision as of 02:32, 12 January 2016
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