Install Trac on Windows

“Trac is an enhanced wiki and issue tracking system for software development projects. Trac uses a minimalistic approach to web-based software project management. Our mission is to help developers write great software...

Trac XML-RPC java plugin

Next I’ll get into this plugin: http://trac-hacks.org/wiki/XmlRpcPlugin install the plugin with easy_install: easy_install /path/to/unpacked/xmlrpcplugin.zip/trunk and add the module to the trac.ini in /path/to/project/conf/trac.ini: [components] tracrpc.* = enabled assign privileges to anonymous user...

remote debugging

to remotely debug servers, local java executions, … add the following arguments: -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n You can then connect with eclipse, starting a remote java debug on the given port. here that...

profiling Java

Profiling is important, it can show bottlenecks in your application and so help you solve these. An optimized application will run faster so users will be hapier. I mostly use eclipse for...