Archivio del mese di November, 2004


no ai brevetti software

inserito in pensieri, tecnologia da fullo @ 30-11-2004 16:50

sempre più in questi giorni vengono pubblicati articoli e lettere aperte sul perchè è sbagliato brevettare il software, una iniziativa molto bella ed interessante è presente su nosoftwarepatents.com ed è stata voluta, tra gli altri, da Linus Torvalds, Michael Widenius e Rasmus Lerdorf, rispettivamente i padri di Linux, MySQL e PHP!

altra lodevole iniziativa è quella portata avanti da brevettisoftware.it che ha preparato un appello ai parlamentari da far firmare e spedire da tutti gli imprenditori che conoscete.

ciauz

i 20 maggiori errori da evitare in IT

inserito in php, tecnologia da fullo @ 30-11-2004 11:48

error 18: IT managers who look only as far as J2EE and .Net when developing scalable Web apps are making a mistake by not taking a second look at scripting languages — particularly PHP. This scripting language has been around for a decade now, and millions of Yahoo pages are served by PHP each day

via harry fuecks

ciuaz

The KnowledgeTree

inserito in php, tecnologia da fullo @ 29-11-2004 01:18

che dire? stupendo!

KnowledgeTree™ is one of the most rapidly-adopted open source document management systems, with downloads currently running at several hundreds per month. It was originally developed for the South African Medical Research Council; so it has all the code quality, functionality and architectural rigour that you would expect of a top-of-the-range enterprise application. The only thing it misses is the million-dollar price tag: being Open Source, it’s licence cost free. The product includes advanced document version control, full text search capabilities, multiple search types and extensible metadata fields for documents. Some of the more advanced functionality includes a customizable dashboard and workflow for document authoring.

ciuaz

teach yourself programming in 10 years

inserito in cazzate, tecnologia da fullo @ 25-11-2004 13:13

perchè andar di fretta ed imparare tutto in un mese, una settimana o sole 24 ore? E’ tempo di darci una calmata, e di imparare a programmare in 10 anni!

ciuaz

php e mvc

inserito in php da fullo @ 25-11-2004 12:33

interessante articolo di John Lim sull’uso del paradigma di programmazione MVC all’interno di applicazioni PHP, molto interessanti anche i commenti dove lo stesso fuecks ammette che non tutte le applicazioni per il web possono utilizzare tale paradigma. Oltre all’articolo consiglio la lettura di un infuocato thread sul forum di sitepoint che cerca di spiegare a cosa serve MVC.

ciauz

jpspan

inserito in altri linguaggi, php da fullo @ 25-11-2004 12:00

Ho scovato per errore JpSpan, una classe che permette di richiamare tramite javascript uno script php senza dover ricaricare la pagina. JpSpan ha decisamente molte potenzialità, partendo dal completamento automatico delle form alla gestione dei log degli errori alla creazione di applicazioni XUL complete. Merita di darci un occhio…

JPSpan provides tools to “hook up” PHP and Javascript, for the purpose of fetching data from PHP into a web page which has already loaded, without reloading the entire page.

The objective is to make connecting a Javascript client with a PHP server as painless and error-free as possible. To this end JPSpan allows you to define a class in PHP and call it’s methods directly (and remotely) from Javascript.

aggiornamento:
ho appena scoperto che jpspan è stato scritto da quel geniaccio di harry fuecks

ciuaz

virtual beer!

inserito in cazzate da fullo @ 23-11-2004 20:45

non mi divertivo così tanto dai tempi delle avventure testuali su commodore 64…

qualche suggerimento, provate a dire.. beer, jump, strip

ciuaz

test: What Number Are You?

inserito in tecnologia da fullo @ 23-11-2004 12:55
You Are the Helper
2

You always put on a happy face and try to help those around you.

You’re incredibly empathetic and care about everyone you know.

Able to see the good in others, you’re thoughtful, warm, and sincere.

You connect with people who are charming and charismatic.

via koolinus

ciuaz

xul filemanager

inserito in tecnologia da fullo @ 22-11-2004 09:42

lo XUL FileManager è una delle applicazioni XUL più belle che abbia mai visto! Si tratta essenzialmente di un client server side (funziona sia con php che con asp) che simula le funzionalità di un file manager (ie. explorer di windows) permettendo ad un utente di creare, modificare, cancellare file in remoto come se fossero sul proprio harddisk!
Qui trovate una demo completa.

ciuaz

firefox tips & tricks

inserito in tecnologia da fullo @ 22-11-2004 03:48

lo sapevi che inserendo una lista di differenti link separati da un pipe [ | ] come home page, all’avvio firefox ti aprirà una nuova tab per ognuno di essi?

ciuaz

vtiger CRM

inserito in tecnologia da fullo @ 22-11-2004 03:40

vtiger CRM is an open source Customer Relationship Management (CRM) software mainly for Sales force working in small and medium businesses. vtiger CRM is built over proven, fast, and reliable LAMP/WAMP (Linux/Windows, Apache, MySQL, and PHP) technologies and open source projects, such as SugarCRM (SPL 1.1.2) project and phpBB (GPL), and others.

vtiger CRM leverages the benefits of open source software and adds more value to the end-users by providing many enterprise features, such as Microsoft® Outlook® integration, Message Board integration, Email integration, product customization, and others.

vtiger CRM software installation is very simple as all the necessary software, such as Apache, MySQL, and PHP are integrated and executables are made available both for Windows and Linux (RedHat, Debian, SuSe, and Mandrake) operating systems in SourceForge.net. You need not concern too much about setting up database, Web server, and other software.

vtiger CRM also provides, enterprise grade business productivity enhancement utility, vtiger Outlook Plug-in for Microsoft® Outlook® users. It is an Open Source Project covered under vtiger Public License 1.0 (VPL 1.0) based on Mozilla Public License 1.1, and complements the vtiger CRM software. Microsoft® Outlook® integration with vtiger CRM reduces the unnecessary duplication of work while communicating with customers.

ciuaz

wordpress: rss per commenti moderati

inserito in php, tecnologia da fullo @ 21-11-2004 13:59

sulla mailing list hacker di wordpress ho scoperto un interessante hack su come far visualizzare al feed RSS i commenti moderati, in questo modo sarà più semplice controllare che ce ne siano senza dover intasare la propria casella di posta elettronica o dover andare sul pannello di amministrazione del blog.

PHP:
  1. if (is_single()) {
  2.     $comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email, comment_author_url, comment_date, comment_content, comment_post_ID, $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE comment_post_ID = '$id' AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish' AND post_date <'".date("Y-m-d H:i:59")."'    ORDER BY comment_date LIMIT " . get_settings('posts_per_rss') );
  3. } else if (isset($_GET["view"]) && $_GET["view"] == 'moderated_comments') {
  4.     $comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email, comment_author_url, comment_date, comment_content, comment_post_ID, $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE $wpdb->comments.comment_approved = '0' AND $wpdb->posts.post_status = 'publish' AND post_date <'".date("Y-m-d H:i:59")."' ORDER BY comment_date LIMIT " . get_settings('posts_per_rss') );
  5. } else { // if no post id passed in, we'll just ue the last 10 comments.
  6.        $comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email, comment_author_url, comment_date, comment_content, comment_post_ID, $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE $wpdb->posts.post_status = 'publish'   AND $wpdb->comments.comment_approved = '1' AND post_date <'".date("Y-m-d H:i:s")."' ORDER BY comment_date DESC LIMIT " . get_settings('posts_per_rss') );
  7. }

Find the SQL queries in wp-commentsrss2.php and replace with this code.
Then subscribe to:
http://www.example./com/wp-commentsrss2.php?view=moderated_comments
This is from a recent nightly build, it will be slightly different in 1.2.1 or previous versions.

Cheers,
--Alex
http://www.alexking.org/

ciuaz

wordpress fickr gallery

inserito in php da fullo @ 20-11-2004 22:42

This plugin allows you to display your Flickr photos and photosets on your site like a photo gallery using Flickr’s API. Some of the salient features include:

* Flickr photosets as “albums” - complete with descriptions and meta
* Support for Flickr “notes” feature (looks kind of like this)
* EXIF data support to display camera settings the photo was snapped with — in addition to the description and meta info from Flickr
* Valid XHTML output

An example installation can be found here.

ciauz

khtml2png cerca capo progetto

inserito in linux da fullo @ 18-11-2004 12:12

il noto software per prendere screenshot di siti web da riga di comando cerca un nuovo capo progetto.

ciuaz

un romanzo, o forse 3?

inserito in di tutto un po' da fullo @ 18-11-2004 10:38

un bellissimo esperimento/progetto di sharp su moretosee.com, 3 blog di tre persone che quotidianamente si intrecciano raccontando la stessa storia da tre angolazioni differenti. Loro sono Natalie, Peter e Mike e stanno cercando le Urne di Steinitz.

Il romanzo/blog, interamente tradotto in italiano, è in realtà in gioco a premi per enigmisti. All'interno di ogni post/puntata sono presenti alcuni indizi che il lettore dovrà trovare e commentare in un apposito forum, oltre ai blog sono presenti un sito ufficiale dove compaioni di volta in volta dei brevi filmati che raccontano la stessa storia e dando spunti interessanti sugli indizi lasciati e alcuni altri siti [www.steinitzpress.com, www.steinitztowing.com, www.steinitzdds.com, www.steinitzskulls.com] che contribuiscono anch'essi all'intreccio dando piccoli suggerimenti ai lettori .

Per i più pigri michael, un lettore/partecipante o forse un altro finto-sito con indizi, svela alcuni dei rompicapo pubblicati dai tre protagonisti.

ciuaz


phpday 2008