Continuing my little JavaFX framework for game development, right now focused on use those tiles I’m drawing and posting here in my blog. This framework…
Continuing my little JavaFX framework for game development, right now focused on use those tiles I’m drawing and posting here in my blog. This framework…
For those who uses Eclipse IDE: there’s already a JavaFX plugin for you. Check out here. To try out, Paul Bakker wrote a post introduction…
A simple gaussian elimination implemented in C. To simplify, I hard coded the linear system 10 x1 + 2 x2 + 3 x3 + 4…
[youtube]NRwRTHPGg6M[/youtube] In a game I wrote some years ago we handled simple rectangular collisions. Given the points: We did: // returning 0 means collision int…
Durante a apresentação do Tarso Bessa em Sobral alguém na platéia perguntou sobre um equivalente a biblioteca GD no PHP. O GD é uma biblioteca…
A simple Java servlet that looks for some well known databases drivers. import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public…
I created some illustrative and simple implementations of common Unix commands. For those who are familiar with Unix-like systems them make easier to understand Java.…
One thing that I like a lot to do with JavaFX is draggable objects. Due to some recent changes in the JavaFX syntax my old…
Inkscape is a Open Source vector graphics editor that works with SVG (Scalable Vector Graphics) format, Inkscape works with transparency, gradients, node editing, pattern fills,…
A really cool piece of code I read today in the book Ruby on Rails: Up and Running. class Talker def method_missing(method) if method.to_s =~…