Categories
apache

apache multiple localhost projects

A good article on medium on a quick and easy environment for apache setup for multiple projects on one site sums it up with one quick example:

fedora – httpd

I created a .conf file /etc/httpd/conf.d/sites.conf

dropped the below data in it and restarted httpd. works nicely, fast and easy.


Alias /project1 /var/www/html
Alias /project2 /var/www/php-monitor


   AllowOverride All

reference:
https://medium.com/@umaams/multiple-laravel-sites-on-sub-directory-using-apache-webserver-91fa20e57ac4

Categories
java netbeans

Netbeans is awesome!

over the years, spent more time dealing with eclipse bugs and issues instead of my work, so it was time to move on which is the exact reason why I left microsoftland years ago.
Netbeans is now my “go to” editor for java, c++ and big projects. Listed will be reminders to how to use neat features in netbeans. shortcuts.

 JAVA class - cool netbeans shortcuts 

ALT-Insert will pull up a menu to let netbeans do get setters
sout - TAB will do the System.println.

... more to come.