Categories
tecnologia

ancora sul cellulare…

a parte il fatto che si è già danneggiato il display (un’intera riga di pixel bruciata… per fortuna è in garanzia!) il mio T610 mi meraviglia sempre di più! E’ possibile infatti installare un client VNC per amministrare il proprio pc (pare, ma non ho provato, anche tramite bluetooth)! Intanto i pazzoidi che stanno dietro ad FMA stanno rilasciando una versione al giorno, rendendo il programma sempre più ricco di funzionalità (il proximity check è stupendo!)

ah, è stato rilasciato anche il nuovo firmware, leggete questo post per la descrizione degli aggiornamenti…

ciuaz

Categories
tecnologia

eudora 6.0.1

è stata rilasciata la nuova versione di Eudora, questa minor release (la 6.0.1) contiene alcuni bug fix e poche novità. E’ disponibile presso questo indirizzo il change-log: http://www.eudora.com/download/eudora/windows/6.0.1/RelNotes.txt.

ciuaz

Categories
tecnologia

word xp/2003 bug!

scrivete “se ce l’hai” (senza virgolette e SEGUITO da un invio)…
magicamente Word crasherà!

aggiornamento delle 18.29
questo non è un bug… ma è carino lo stesso, scrivete “=rand (200,92)” con le stesse spaziature e senza le virgolette, dopo di che premete invio!

ciuaz

Categories
tecnologia

php::Links(‘ newsz ‘ );

era da un pò che non proponevo il bollettino php… eccone uno stringatissimo!

phpWiki, dopo quasi un anno di standby, è stato aggiornato!

ennesima release candidate per Smarty, con questa siamo alla terza. A breve Smarty 2.6 stable?

è stato rilasciato Tidy 1.0 che supporta pienamente php 5.0

anche phpOpenTracker è stato aggiornato, per la precisione alla release 1.3.1

qualcuno me la offre??? perpiacereeeeeeeeee!

ciuaz

Categories
tecnologia

windows scripting

se volete dilettarvi nello scripting in ambiente windows vi consiglio un salto su questo sito!

ps funziona solo con internet explorer!

ciauz

Categories
tecnologia

*bird news

in sordina è uscito thunderbird 0.4a che include:

1) OSX builds will include a new Windows menu item for managing open windows better. Thanks to Don Crandall for making this happen!!
2) OSX builds will now work properly when you close all open windows. i.e. we will now show a thunderbird specific menu bar. Thanks Don!
3) HTML Anchors now work in the message pane
4) News posting sometimes goes to the right news group but the wrong server. THis was an extremely old and popular news bug (Bug #54911)
5) All of the various edge cases for copy and paste of images you all helped me identify in earlier builds have been addressed.
6) Fix for crash after posting a news message when quitting the app.
7) Fix for inability to open local folders
8) Purging of the Junk Mail Folder now works for Junk Mail folders on all accounts and not just the first account.
9) Improvements to 4.x profile migration including ldap settings and local folders from 4.x
10) Improvements when importing mailing lists from Outlook Express
11) xmlextras is now included as part of this build (hence the slightly larger download size). This will allow folks to write powerful extensions such as RSS feed readers.

sul lato firebird è stato aggiunto nel daily snapshot repository anche il pacchetto di installazione oltre ai soliti file compressi, inoltre se provate ad installarlo la versione sarà 0.7+ e non la solita 0.7!

ciauz

Categories
sysadmin

sus e windows 2000

oggi ho imparato come modificare gli installer microsoft per installare quello che voglio dove voglio. Per la precisione ho scoperto il tool msi2xml / xml2msi che permette di convertire un file MSI in un file xml e poi fare il processo inverso.

come primo esperimento ho modificato ed installato SUS su una macchina windows 2000 professional (normalmente può essere installato solo su Win 2k Server o Win 2003 Server). Ed ecco come ho fatto:

1. installare msi2xml (http://msi2xml.sf.net)
2. decomprimere il file di installazione di sus usando da dos la flag /c
i.e. SUS10SP1.exe /c
3. eseguire msi2xml da shell con la seguente sintassi:
msi2xml sussetup.msi
4. aprire il file xml appena generato con un editor di testo
i.e. notepad sussetup.xml
5. cercare e rimuovere dalla tabella “LaunchCondition” le seguenti righe:
<row>
<td>REMOVE=”ALL” OR Installed OR (ServerNT AND ((VersionNT > 500) OR (VersionNT = 500 AND ServicePackLevel >= 2)))</td>
<td>Unable to install [ProductName]. You must be running Windows Server 2003 or Windows 2000 Server, Service Pack 2.</td>
</row>
6. salvare il file xml appena modificato
7. ricreare il file msi di installazione usando xml2msi
i.e. xml2msi sussetup.xml
8. eseguire il nuovo file msi per installare SUS su una macchina non server
i.e. sussetup.msi

inoltre grazie alle informazioni reperite su susServer.com ho configurato il wakeup on-lan dei client per l’autoupdate notturno! :)

ciuaz

Categories
tecnologia

come google conquisterà il mondo

un interessante lettura su google ed il semantic web.

ciuaz

Categories
tecnologia

zip, tar, gz..

addio ultimateZip e benvenuto IZarc

ciuaz

Categories
tecnologia

php::Links(‘php|architect novembre’);

E’ stato pubblicato il numero di novembre di php|architect, questo mese si parla di:

Introduction to Version Control with CVS
CVS is one of those tools that everyone seems to use. It drives every project on SourceForge, and is used on numerous other projects, including PHP and PEAR. CVS also, however, seems to bring fear to the eyes of those who don’t use it and don’t understand it. This month Dejan takes you on an introductory tour through the CVS system, showing you how to use it, how it works, and why you care. Pay attention–your code will thank you.

Object Overloading in PHP
Everyone knows that PHP4’s object model is not a full implementation, and that PHP5 will offer a vastly more complete system. But did you know that one of the coolest features of PHP5’s object model is available in PHP4? The overload extension allows you to capture calls to methds that don’t exist in your objects, and to catch attempts to read and write non-existant properties. Once caught, you have full control over how those calls and accesses are handled. Alessandro shows you the ins and outs, and how you can implement traditional method overloading.

Introduction to PHP-GTK
PHP-GTK is an area of PHP that has been largely ignored by the masses. A few (very good) desktop applications exist that have been written in this flavour of our favourite server-side language, but you can almost count them on your fingers and toes. Eric wants to change that. This article takes you from A to Z in the PHP-GTK model, and leaves you with a pretty cool example application to learn from.

An Introduction to SQLite
SQLite is being hailed as one of the most exciting parts of PHP5. As an embedded database engine that is bundled with PHP5, it will make it possible to use SQL for almost anything, without worrying about the availability of a database server and client libraries on target systems. John shows you how it works, and what you can do with it.

Working with PEAR::XML_Serializer
XML is two-sided. It is an incredibly descriptive and usable method of transferring information, but the XML API’s out there manage to make it hard to work with. Then along comes PEAR::XML_Serializer. All of a sudden, XML is easy–you’re writing XML, and you don’t even care. It’s a beautiful place to be, and Stephan’s going to take you there.

Implementing Web Server Load Management
What happens when you get an unexpected number of hits on your site? Does your server tip over? Do you get another ulcer? No way–you manage the load and think about going out for lunch! Join Rodrigo as he uses concepts like system-wide sessions and queue theory to describe a load throttling mechanism he developed for a University registration system

ciuaz