Silveira’s Blog
Quidquid latine dictum sit, altum viditur…Netbeans: your first plugin
Posted February 24th, 2008 in englishNetbeans have a modular architecture that permits plug and unplug functionalities easily using the Plugin Manager.
It’s also easy create new plugins using Netbeans itself.
JavaFX: Side-scrolling
Posted February 20th, 2008 in englishAn side-scrolling game attempt.

I used two images, this mountain background made with Gimp (xcf sources here) and that ship above made with Inkscape (svg sources here).
import javafx.ui.*;
import javafx.ui.canvas.*;
var scroll;
scroll = [1..800] dur 60000 linear continue if true;
var mountains = Clip{
transform: bind translate(-scroll,0)
shape: Rect {x:bind scroll, y:0, width:400, height:200}
content: [ImageView {
transform: translate(0,0)
image: Image { url: "http://silveiraneto.net/downloads/mountains.png"}
},
ImageView {
transform: translate(800,0)
image: Image { url: "http://silveiraneto.net/downloads/mountains.png"}
}
]
};
var h = 50;
var ship = ImageView {
cursor: HAND
transform: bind translate(0,h)
image: Image { url: "http://silveiraneto.net/downloads/jfx_plane.png"}
onMouseDragged: operation(e) {
h += e.localDragTranslation.y;
}
};
Canvas {
content: [mountains, ship]
}
More photos from Reggie and Simon in Fortaleza
Posted February 15th, 2008 in englishAs I promised before, more pictures from Reggie Hutcherson (manager of the Sun Technology Evangelism group) and Simon Ritter (Java Technology Evangelist at Sun Microsystems) here in Fortaleza.
The talk was a success and with a large audience, more than 500 people!
Here some pictures I selected.




And you can see too all pictures in our jug album or here:
Reggie and Simon here in Fortaleza
Posted February 13th, 2008 in englishReginald (Reggie) Hutcherson is the manager of the Sun Technology Evangelism group. Simon Ritter is a Java Technology Evangelist at Sun Microsystems. They were here in Brazil to some events and we bring them to Fortaleza (Ceará) to talk too in our local jug event (Café com Tapioca de Coco).
Sign we made to find them in the airport.

Me and Rafael got them in the airport and showed some some cool places in the city. They already knew what they wanted to eat: barbecue!
Reggie, me, Rafael and Simon.
They are really cool guys. Soon I’ll put some photos of event itself.
Unfortunately I could not stay for the event due my flight to São Paulo in order to be in the Campus Party Brasil 2008.
JavaFX Wheel of Fortune
Posted February 9th, 2008 in englishDisclaimer: from now on I will occasionally post in English too.
A first release of an Wheel of Fortune made with JavaFX. There’s still has a lot of bugs but is already usable. Let’s say that version is 0.8.
Silveira’s Blog is proudly and spiffily powered by WordPress. Spiffty theme by Noel Cower.


![See in fullscreen [Press F11] Fullscreen](http://btemplates.googlepages.com/fullscreen.gif)









