Posts

Install Flash player on Ubuntu 12.04

Do you have any problem with installing Flash player on Ubuntu 12.04 1st step: sudo apt-add-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" 2nd step: sudo apt-get update && sudo apt-get install flashplugin-installer acroread sometimes you may need to install ubuntu restricted-extras (if above 2 steps don't show flash content properly on your browser on Ubuntu, then install restricted-extras & see: sudo apt-get install ubuntu-restricted-extras) original source: here I think, this has helped you :) 

Flash CS5 AS3 XML delete node

Flash CS5 AS3 remove node through XML object does not exist, therefore all you have to do is just skip & do it through this way: http://zandadev.com/atom/?p=56&cpage=1#comment-72 Elas, take the revenge from AS3

Sbt (Scala) with Spring, Hibernate & Vaadin

Though it is said that it is not recommended to use sbt & Spring,Hibernate to build Scala based projects, I have done a little testing application with all those technologies. And later I extended it to use Vaadin also. And I'm not interested in telling all the techneques by line by line. I assume that you'll have some basic knowledge on sbt, scala, & vaadin and average level in Spring & Hibernate, Java. And you must first be sure that you have installed apache maven, Scala compiler , Sbt & mysql(other intellij idea). I have used to build these 2 projects Intellij Idea. you can run these in command prompt(or terminal) & see. Run Hibernatejava using "mvn clean install" & HibernateScala using "sbt update", then "sbt" then "jetty". Before running for Hibernatejava example you need not create a database, but for HibernateScala you have to create a database named "hibernate_test" using mysql. (And I'm not...