Found this: http://reportman.sourceforge.net Report manager is a reporting application (Report Manager Designer) and also a set of components for Delphi, Builder and Kylix, also supports development environment accepting ActiveX controls (Visual Basic, Visual FoxPro, any Visual Studio.Net language…). C dynamic standard library with exported functions is provided to use the engine with any other language [...]
Archive for June 2007
Afae – An All-purpose Editor for Eclipse
http://robrohan.com/projects/afae/ Afae’s goal is to be a Textmate like editor in Eclipse.
How to install jEdit on Ubuntu 7.04
This will help you install jEdit, a programmer’s text editor. Find out more here: http://jedit.org/ To install it, fallow these steps: – Edit sources.list file: sudo joe /etc/apt/sources.list – Add the fallowing lines: deb http://dl.sourceforge.net/sourceforge/jedit ./ deb-src http://dl.sourceforge.net/sourceforge/jedit ./ – Run: sudo apt-get update – Install jEdit: sudo apt-get install jedit You’re done!
rexima
rexima A curses-based interactive mixer. http://rus.members.beeb.net/rexima.html
Transmission
Transmission has been designed to be a versatile and multi-platform BitTorrent client, focusing on being lightweight, yet feature-filled. http://transmission.m0k.org/index.php You can find Ubuntu packages here: http://www.getdeb.net/app.php?name=Transmission
Fix for SSH slow to ask for password in Ubuntu Feisty Fawn
Found this here: http://www.ubuntugeek.com/fix-for-ssh-slow-to-ask-for-password-in-ubuntu-feisty-fawn.html Go to System > Administration > Network Click the “General” tab You need to Uncheck the option that says “Scan for available services and advertise…” and close. Now you can try to login using ssh you should see it will prompt for password immediately. That’s it!
Enabling Authentication with apache
Enabling Authentication There is actually 2 different ways of getting authenticated with apache. – Basic Authentication: password is passed from client to server in plain text across the network; – Digest Authentication: password is transmitted as a MD5 digest which is more secure. In order to avoid to have our password transmitted as clear text, [...]
Adding a startup script to be run at bootup
So you have a script of your own that you want to run at bootup, each time you boot up. This will tell you how to do that. Write a script. put it in the /etc/init.d/ directory. Lets say you called it FOO. You then run sudo update-rc.d FOO defaults You also have to make [...]