Posts tagged with "NetBeans"
Wednesday, 9. April 2008, 23:20:09
NetBeans, Social Networks, Programming, C/C++
...
So, i have a couple things to say about NetBeans that i have neglected to mention earlier due to my busy schedule. Firstly, the new version of the NetBeans IDE -- version 6.0.1 -- is available for download. To check out some of the features, visit.
Secondly, there is now a Social Community over at NetBeans. Yes, you read correctly, the guys over at NetBeans has joined the social networking revolution and has set up their own community. So if you are a fan of NetBeans or the Java programming language, or if you use NetBeans for programming in some other language -- C/C++, Ruby, etc., check it out and join the community.
Tuesday, 25. March 2008, 00:41:05
Java, Liferay, NetBeans
A modified version of the notes posted by Laura Kolker.
The Scripts
First, prepare tomcat:
Make sure all the .sh scripts in the /bin/ are executable
chmod a+x tomcat/bin/*.sh
Change the port LifeRay will run on (or keep default: 8080)
Edit tomcat/conf/server.xml and chance the reference from 8080 to whatever port you want.
You can check to see if you're on the right track, by running tomcat/bin/startup.sh and browsing to localhost:the-port-you-chose
The default user is test@liferay.com with password: test
The Database
If you want to use a different database than Hypersonic (which you most definitely do), you will need to do some extra work:
Download the Liferay Source, or see this comment
Unzip the source somewhere.
Run the source/sql/create/create-db.sql of your choice
NOTE: The default database name will be lportal. The create scripts will delete it if it already exists. If you want it to be called something else, you might be able to change that by editing the create-db.sql.
ex: mysql -u root -p < create-mysql.sql > mysql.out
You'll need to put any DB driver jars in a directory where tomcat can find them (common/lib works)
You'll need to change the tomcat/conf/Catalina/localhost/ROOT.xml context, so that it's using the right driver URL, and the right DB user and password.
Here is a diff of the default ROOT.xml with a configured ROOT.xml:
< driverClassName="org.hsqldb.jdbcDriver"
< url="jdbc:hsqldb:lportal"
< username="sa"
< password=""
---
> driverClassName="com.mysql.jdbc.Driver"
> url="jdbc:mysql://localhost:3306/lportal"
> username="xxxxxxxx"
> password="xxxxxxxx"
You'll have to explicitly give a DB user and password grants to the lportal database after you've run the create-db.sql script
If you get an NPE when you try to start LifeRay, check the logs in tomcat/logs/catalina.out for clues as to which of the many parts is breaking.
Running Liferay
$shell$ cd tomcat
$shell$ ./bin/startup.sh
Monday, 4. February 2008, 19:27:03
NetBeans, Liferay, Java
There was a request to share the information on my implementation of Liferay Portal using Netbeans 6.0 and as such, i will be posting the process in the up coming days. i will cover the steps involved as well as the 'quirks' that needed to be modified in order to successfully implement Liferay yourselves.
Wednesday, 5. December 2007, 03:29:50
C++, Java, NetBeans
The NetBeans IDE 6.0 is officially here and avaialble for download. It really is the only IDE you need. More to come. i gotta go play.
Monday, 19. November 2007, 18:13:03
Java, NetBeans
NetBeans IDE 6.0 Release Candidate 1 Available!
NetBeans IDE 6.0 Release Candidate 1 is now available for download. The final NetBeans IDE 6.0 release is planned for late 2007. Highlights include a faster, smarter editor, improved Swing development, Ruby/JRuby/Ruby on Rails support, and more. Download it today.
Wednesday, 19. September 2007, 22:02:25
Java, C/C++, NetBeans
The NetBeans IDE 6.0 Beta 1 is available for download -- it is sweet. i am definitely loving all the new and powerful features that has been added to the IDE. One of my favorite is still the ability to "Reverse Engineer" the program that one is working on. i also love the UML creation feature and i think that in itself makes it more than worth it. i have not tried out the C/C++ Pack in Beta 1, but judging from my experience with M10, it will be still be cool. Auto-generated Makefiles were a bit of an issue, but one that is a non-issue given the fact that the programmer can create their own. Of course, Java is still king of the castle with NetBeans and i have no complaints in that department. i am going to be working on some JSFs in the next week or so and i am looking forward to continuing my exploration.
Friday, 20. July 2007, 04:16:58
Linux, LabVIEW, Java, NetBeans
Okay, so i do not have much to report on today. i do however, have to rejoice in the fact that i finally installed the Sun JDK 6.0 and NetBeans 6.0 (M10) on the Linux box; no more will i have to stumble around Eclipse like a clumsy oaf. The only thing left for me to do now is to install the full version of NetBeans 6.0 once it is officially released. That however, should not be more than an update of the current distro, so it's no big deal.
i have not worked on the *bot programming nor have i worked on 'Project X' in a little while.
'Project X' is undergoing a thorough re-thinking of the infrastructure that it will require in order to function properly, run smoothly, and provide a secure, stable, and enjoyable user experience. i have not worked on *bot only for the past week or so. i have been swamped with other projects as well as handling the migration process to the Linux machine. The full version of LabVIEW just came in the mail a couple days ago, but i have yet to install it. That should be a lot of fun though. i played around with the real-time version on the Web site and also sat through a couple Web casts; they were all that.
Tuesday, 3. July 2007, 03:22:25
*bot, Robotics, Mechatronics, Java
...
At this point i am happy to say that the initial writing of the *bot algorithm is complete. Of course now i have to make sure that the actions are lucid and then run through it. Too, i am certain that there will be steps that must be added to make the procedures more smooth, but i am just as certain that i will realize what those steps are upon the first run-thru. Then i will have to add those steps to it, and run-thru again, repeating until it has *officially* been completed.
Tuesday, 3. July 2007, 00:18:09
Mechatronics, Robotics, Java, NetBeans
...
So i have decided to nix the use of the software that i was using in creating the algorithm. It turned out to be a bit of a pain in the ass, especially when trying to open the workspace that was already created and saved. There was also an issue with the creation of 'Empty Algorithms' that would not allow the use of pre-defined operators. Fortunately this was merely a test of the tool and not too critical. With that said, i figured that i would just transfer what i have on paper (an in my head) into NetBeans and continue from there.