Rilasciato Parancoe 2.0

Posted by Lucio Benfante Sat, 01 Nov 2008 16:57:00 GMT

Dopo una lunga gestazione abbiamo rilasciato la versione 2.0 di Parancoe.

Leggete l’annuncio ufficiale nel sito di Parancoe:

http://www.parancoe.org/news/2008/11/01/parancoe-2-0-released/

Non mancate anche di leggere la nuovissima Parancoe Reference Guide, sia in HTML, sia in PDF.

Posted in  | Tags  | 2 comments

JUG Events

Posted by Lucio Benfante Tue, 15 Apr 2008 15:03:00 GMT

Ottimo risultato questa settimana per la nostra applicazione JUG Events. E’ infatti esposta nella home page di java.net:

JUG Events è ora anche l’applicazione usata da molti JUG sparsi per il mondo per gestire i propri eventi, e dalla JUG Community per esporli nella pagina degli eventi dei JUG su java.net.

Grazie a chi ha contribuito e contribuisce a JUG Events e a Parancoe, il meta-framework su cui si basa. Entrambi i progetti sono open-source…chi ha voglia di fare, si faccia avanti! :-)

Posted in  | Tags ,  | no comments

NetBeans rientra nei pacchetti di Debian

Posted by Dario Santamaria Tue, 25 Sep 2007 15:10:00 GMT

Da qualche giorno NetBeans è stato inserito nei pacchetti ufficiali della distribuzione Debian.

Read more...

Posted in  | Tags , ,  | 3 comments

Disponibile NetBeans 6.0 Beta 1

Posted by Lucio Benfante Tue, 18 Sep 2007 09:53:00 GMT

Procede la corsa verso la release di NetBeans 6, prevista per fine novembre.

Da ieri è disponibile la Beta 1

http://www.netbeans.org/community/releases/60/index.html

Posted in  | Tags ,  | no comments

OpenProj

Posted by Paolo Foletto Sun, 16 Sep 2007 13:56:00 GMT

Volevo segnalare unprogetto open source scritto in Java. Si tratta di un clone di MS project, riuscito direi bene. E’ un buon strumento per lo gestione di piccoli progetti, e’ molto comodo per aprire dei file di MS project, e per avere facilmente qualche grafico.

Per la gestione di progetti più grossi esiste una versione online a pagamento con un canone mensile

https://sourceforge.net/projects/openproj/

Posted in  | Tags , , ,  | no comments

JUG Events

Posted by Lucio Benfante Mon, 03 Sep 2007 21:01:28 GMT

JUG Events è finalmente online!

www.jugevents.org

A parte l’utilità dell’applicazione per il nostro e gli altri JUG, mi preme qui sottolineare che è la prima applicazione sviluppata dal JUG Padova, e spero non l’ultima.

Gli sviluppatori di JUG Events siamo stati principalmente io ed Enrico, con il supporto di Paolo F. Ma l’applicazione usa il nostro framework Parancoe, quindi gran parte del merito va anche a tutti quelli che hanno contribuito e partecipano al suo sviluppo.

Posted in ,  | no comments

Iterating on non-iterable classes

Posted by Lucio Benfante Fri, 27 Jul 2007 11:42:00 GMT

(You’ll find all the code of this post in Benfante’s Utilities mini-library)

One of the futures I ‘m reappraising is the JDK 5 enhanced for statement.

I still consider it too limited, but it’s very comfortable in the simplest (and maybe common) cases.

But…what if the elements on which you want to iterate are not managed by an Iterable class?

For example, this happens with the XOM library, where the Element.getChildElements returns an instance of the Elements class, wich is neither a Collection, or an Iterable class. So, for iterating on children elements, you have to use the basic for statement:

for (int i=0; i < elements.size(); i++) {
  Element element = elements.get(i);
  // etc...
}

I would like to write simply:

for (Element element: elements) {
  // etc...
}

So I wrote an Iterabletor class that builds a proxy around a class, enhancing it with the Iterable interface.

Now You can write:

Iterable<Element> iterable =
  new Iterabletor<Element>(elements).getIterable();

for (Element element: iterable) {
  // etc...
}
Read more...

Posted in ,  | Tags , , , ,  | 4 comments

Parancoe e Glassfish

Posted by Lucio Benfante Mon, 02 Jul 2007 13:38:00 GMT

Normalmente Tomcat è più che sufficiente per un’applicazione sviluppata con Parancoe. Ma a volte potrebbe servirvi (o potreste essere costretti ad usare) un application server J(2)EE completo, come, ad esempio, Glassfish.

Se questo è il vostro caso, potrebbe interessarvi un articolo presente nel Wiki di Parancoe:

Using Parancoe with Glassfish

Posted in  | no comments | no trackbacks

LWJGL 1.0 released

Posted by Dario Santamaria Mon, 26 Feb 2007 19:51:00 GMT

After several years of development, finally the first stable release of the Lightweight Java Game Library (LWJGL) arrived.

The Lightweight Java Game Library (LWJGL) is a solution aimed directly at professional and amateur Java programmers alike to enable commercial quality games to be written in Java. LWJGL provides developers access to high performance crossplatform libraries such as OpenGL (Open Graphics Library) and OpenAL (Open Audio Library) allowing for state of the art 3D games and 3D sound. Additionally LWJGL provides access to controllers such as Gamepads, Steering wheel and Joysticks. All in a simple and straight forward API.

Take a look at here: LWJGL Web Site

Posted in  | Tags , ,  | no comments | no trackbacks

Older posts: 1 2