Monday, October 19, 2009

Kettle-Spoon

Kettle-Spoon (ili kako se zvanično zove "Pentaho Data Integration") je fenomenalan alat napisan na Java programskom jeziku koji se koristi za najrazličitije transformacije podataka.
Pripada grupi alata poznatijih kao ETL - Extraction, Transformation and Loading.
Kettle je ovo proširio na ETTL - Extraction, Transformation, Transfer and Loading
Source je dostupan na javnom SVN serveru, te se može preuzeti i dalje kodirati. Takođe, implemetacijom interfejsa se mogu napraviti novi plugin-ovi.

 


Više o alatu na http://www.pentaho.com/products/data_integration/

Wednesday, October 14, 2009

MoWeS Portable

MoWeS je skup alata potrebnih za web programiranje. Njegovu osnovu čine Apache, PHP i MySQL. Dodatno uključuje ImageMagick, Joomla, Typo3, OS Commerce, MediaWiki, SugarCRM i drugi.

MoWeS se raspakuje i instalira u lokalnom direktorijumu. Njegovim pokretanjem se pokreću potrebni programi za razvoj web aplikacija. Može se instalirati na USB drive-u i pokrenuti sa njega, što ga čini prenosivim na druge lokacije.

Više o MoWeS-u se može naći na http://www.chsoftware.net/en/useware/mowes/.

Monday, October 12, 2009

Delay Windows Service Start

[English]

If you need to delay a service's startup, you can manually add a dependency to the service. The service need not actually be dependent on the specified second service - the dependency simply causes the service to wait until the other has started, effectively delaying startup.

To configure service dependency, open the Registry Editor (regedit) and open the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\(Service name)

where (Service name) is the service you want to delay. Add a REG_MULTI_SZ value named DependOnService to the key, then edit the value of DependOnService to add the service name of the service you want started before the selected service.