-
La crisi dei mercati che stiamo vivendo è tutta particolare.
Da un lato, ci sono continui crack finanziari, accompagnate da pericolose oscillazioni delle aziende. Dall’altro, osserviamo che i consumi stanno rimodulandosi verso il risparmio, ma la gente continua a spendere.
Read More -
Once you have recorded a macro, you can save it for later usage on a file (or within your .emacs). The steps to follow in order to get this work, is (1) give a name to the macro, (2) insert it into a buffer.
M-x name-last-kbd-macro RET my-cool-macro-name
Read More -
At Gioorgi.com we have no time. So we was very happy to find out a blogging platform which can be
configured, tuned and rolled out in short time. If you are watching for such thing, you are welcome.
Let’start!
Read More -
NB: Questo è la storia super rapida dei database relazionali, e non è ancora completata. L’idea è di confrontare la storia del modello E-R con quello dello sviluppo OOP, evidenziando simmetrie e differenze
Read More -
Si parla molto di Internet su… Internet, ma tutte le pagine che trattano della storia di Internet hanno due classici difetti: (a) sono verbosissime e (b) sono in inglese. Così abbiamo pensato di fare un riassunto super compatto nelle pagine di Gioorgi.com…
La prima rete interconnessa è quella creata dal dipartimento di difesa americano, e chiamata ARPANET. Siamo all’inizio degli anni 70.
Read More -
Google Chrome (BETA)
12/11/2008 10:00:00 AM
Since we first released Google Chrome, the development team has been hard at work improving the stability and overall performance of the browser. In just 100 days, we have reached more than 10 million active users around the world (on all seven continents, no less) and released 14 updates to the product. We’re excited to announce that with today’s fifteenth release we are taking off the “beta” label!
Read More -
Is it possible to use Python to write small ASP-like scripts. In this post we will see how to use it, and the common mistakes you can enconter in your road to the snake…
Read More -
Sun ha lanciato JavaFX 1.0, piattafroma software di cui ci siamo già occupati in tempi non sospetti. La notizia è stata ripresa da Slashdot. Purtroppo leggiamo anche che non c’è al momento una versione per Linux o Solaris: “The lack of a Linux or Solaris release is a notable absence.” Però la presenza del codec On2 (usato per riprodurre i filmati di youtube) lascia pensare che javafx voglia competere frontalmente con Flash.
Read More -
In America si definisce Black Friday è negli Stati Uniti il primo venerdì successivo al Thanksgiving Day (Giorno del Ringraziamento), e tradizionalmente dà inizio alla stagione dello shopping natalizio.
Su Wikipedia leggiamo che:
Si tratta di una festa non ufficiale che tuttavia assume una grande importanza sotto l'aspetto commerciale poichè costituisce un valido indicatore sia sulla predisposizione agli acquisti sia indirettamete sulla capacità di spesa dei consumatori americani tanto da essere attentamente osservato e atteso dagli analisti finanziari e dagli ambienti di borsistici americani e internazionali.
A Gioorgi.com abbiamo quindi provato a chiederci che cosa sarebbe successo il Blakc Friday, controllando la cronaca il giorno successivo a tale data.Le grandi catene di commerciali offrono in questa occasione notevoli ed eccezionali promozioni al fine di incrementare le vendite.
Il termine Black Friday è nato a Philadelphia e deriva il nome dal pesante e congestionato traffico stradale che si sviluppa, per l’occasione, in quel giorno.
Read More -
On Stack Overflow web site we read (bold by us):
The funniest server name story I have is from when I worked at the Kennedy Space Center. On our particular project, our main server was named snowwhite, and the 7 client workstations were named after the Seven Dwarves. The kicker is, one day one of our engineers ran into a Disney Imagineer who worked at Walt Disney World, and they started talking about server names. The Disney Imagineer said "that's funny, we have a group of servers named columbia, challenger, atlantis, and discovery."
This is our Friday relaxing news! Short stories for the weekend! To get the complete list, please look at the relax tag.
Read More -
Python 3.0
We are pleased to announce the release of Python 3.0 (final), a new production-ready release, on December 3rd, 2008.
Python 3.0 (a.k.a. “Python 3000” or “Py3k”) is a new version of the language that is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially how built-in objects like dictionaries and strings work, have changed considerably, and a lot of deprecated features have finally been removed. Also, the standard library has been reorganized in a few prominent places.
Read More -
La seguente documentazione traccia un percorso formativo sintetico per apprendere la specifica J2EE 5.
Si parte dalle Servlet e dalle jsp, per arrivare fino agli EJB, che si consiglia di affrontare dopo aver ben appreso i concetti alla base della programmazione web.
Read More -
Il design pattern Singleton è il primo design pattern in cui si si imbatte, ed è molto importante anche perché aiuta a comprendere meglio i linguaggi OOP.
Potete trovare un’ottima introduzione presso Wikipedia, dove leggiamo:
Il metodo più semplice per implementare questo pattern è quello di rendere privato il costruttore della classe impedendone così l'istanziazione diretta, e nello stesso tempo fornire un metodo getter statico che restituisca ogni volta la stessa, unica, istanza
Ecco un esempio in Java:public class MioSingolo { private static MioSingolo istanza = null;Ecco lo stesso esempio thread safe…private MioSingolo() {} public static MioSingolo getMioSingolo() { if (istanza == null) { istanza = new MioSingolo(); } return istanza; }}
Read More -
After some time, Wordpress 2.7 is out:
WordPress 2.7 Release Candidate 1
By Ryan Boren. Filed under Releases.
With the release of RC1, we’re in the final leg of development before the release of 2.7. 280 commits since beta 3 have polished the new admin UI (including new menu icons created by the winners of our icon design contest) and fixed all known blocker bugs.
Read More