So far I did not suceed finding an online code collaboration tool for code review that is embedded in Netbeans. Except the collab plugin which requires a XMPP server (which I installed but NB not really willing to log into it and rewarding me with errors). I found another tools which is not embedded in Netbeans but an editor by itself: GOBBY (link).
It supports several team members working on the same (text) file and comes with a chat. One needs to start in host mode, so no server is required. It runs both under Windows and Linux. Unfortunately I did not manage to make the Windows version talk to a Linux host.
It still works ok for me because I can share a file (from my Netbeans project) by opening it directly in Gobby. Once the changes are made and you go back to Netbeans, the IDE will update the modified file.
Code Review and Collaboration
5 06 2009Comments : Leave a Comment »
Tags: collaboration, gobby, ide
Categories : netbeans, tools
Sunday Afternoon Projects
16 02 2009I love 3D engines and the concepts of simuation of real world scenarios with realistic looking software. Most of the 3D engines are heavily infested with C, C++ or C# (due to higher performance) and almost all of them have a hefty learning curve, if you want to go beyond the click-and-play editor of the simple game engines. I dont really have time to get involved in technology that is too far away from Java and Java is not really known for powerful 3D graphics…until I found this:
- JMonkeyEngine (JME is a highperformance 3D scene graph based graphics API)
(link)Josh Slack (the brain behind JMonkeyEngine) at Java One 2008
And if you want to have a simpler start into the world of physics, you can play with Phys2D. I even someone implementing a simple game in JavaFX using this ! Will share more on this on the next sunday afternoon sesion.
- Phys2D (link)
Comments : 1 Comment »
Tags: 3d, game engine, jmonkey engine, phys2d, scene graph
Categories : sunday afternoon projects, tools
Browser Debugging
5 02 2009Sometimes you need more than the plain “View Source” feature of the browser. For a more in-deep approach of debugging javascript and more I came across 2 tools (I am sure there are more out there..).
- Firebug (Firefox plugin) at getfirebug.com
- Opera Browser comes now with Debugger (link)
Both help you to inspect, monitor and debug javascript, HTML and CSS.
Comments : Leave a Comment »
Tags: debugger, firebug, opera
Categories : tools
