Saturday, July 21, 2012

KnowledgeBlackBelt

I have just registered at http://knowledgeblackbelt.com. The page full of the best eLearning courses of Java and all related frameworks.

Wednesday, November 2, 2011

JPA 2 - "Maven in Netbeans rocks" continued

Last time I wanted to add JPA 2 to my existing maven project, I just clicked New -> Entity Class.
It not only helped me to create persistent.xml file, but it also added all necessary libraries to my pom as dependencies.
    <dependency>
      <groupId>org.eclipse.persistence</groupId>
      <artifactId>eclipselink</artifactId>
      <version>2.2.0</version>
    </dependency>
    <dependency>
      <groupId>org.eclipse.persistence</groupId>
      <artifactId>javax.persistence</artifactId>
      <version>2.0.3</version>
    </dependency>
    <dependency>
      <groupId>asm</groupId>
      <artifactId>asm</artifactId>
      <version>3.3</version>
    </dependency>
    <dependency>
      <groupId>org.eclipse.persistence</groupId>
      <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
      <version>2.2.0</version>
      <scope>provided</scope>
    </dependency>

Tuesday, October 18, 2011

Android Open Accessory Development Kit ADK

Android Open Accessory Development Kit is based on open hardware platform adruino. A few toys built on top of it was presented on GDD. I choose  one.



More from GDD

Hash tags

twitter hash tag #gddcz - http://twitter.com/#!/search?q=%23gddcz
twitter hash tag #gdd2011 - http://twitter.com/#!/search?q=%23gdd2011
google plus hash tag #gddcz - https://plus.google.com/s/%23gddcz
google plus hash tag #gdd2011 - https://plus.google.com/s/%23gdd2011


Presentations

Make Your Clock Widget - http://yfrog.com/nvhfuwqj
Google Places API - http://mano-demos.googlecode.com/svn/trunk/slides/gddplaces2011-cz/Geo-Places-API/index.html#1


Others

Circle of speakers - https://plus.google.com/110634877589748180443/posts/NBi8ZR4zxgE


Quadricopter

https://plus.google.com/photos/112061390929794285511/albums/5664852148429076737

Four blade helicopter (Quadricopter) with camera - It was fun to ride it by tablet.

Earth on 5 computers at once


 How to handle it
pull up - zoom out
push down - zoom in
move horizontally in plane to all dirrections - move map
tilt to any side - change the angle of view
rotate - rotate view


3D Printer evolution

This 3d open hardware printer is able to clone itself REPRAP.COM

Kick Ass Games in the Cloud

Here is the link to AngryBirds game based on App Engine and PlayN framework hosted on appspot.

http://chrome.angrybirds.com/

All sessions from GDD are available at http://gddcz.cz.

Bigger than I tought - Galaxy Note

I have already seen Note on a lot of pictures. I have to say, from my own experience, ... too big.

GDD 2011 Prague keynote




Monday, October 17, 2011

Maven support in Netbeans really surprised me

I had always been using M2Eclipse plugin for Eclipse to support maven projects. It is not so long ago when support for maven was absolutely missing in Netbeans. But nowdays Netbeans has great support for Maven projects. The biggest advantage of it is, that maven's pom.xml is enough definition of the project for Netbeans. So if you have maven project, you just open it in Netbeans. You don't have to import anything like it is in Eclipse. Dependency graph is still not as good as the M2Eclipse's one, but it's not so bad.

Dependency Graph in Netbeans