“Command & Conquer” als HTML-5-Nachbau gratis im Web spielen

Entwickler hat erfolgreiches Echtzeit-Strategiespiel in HTML 5 und JavaScript nachgebaut. Mehr Infos

good Java based CMS

So currently I am facing the challenge of creating a system for which I need a Java based CMS. While looking for a feasible solution I came to the following site, giving me a very profound overview and comparison of several Java based content management systems: http://www.cmsmatch.com/compare/content-management-systems/170+180+557+1457+679+695+792

This nice charts and tables on the site mentionend, give a very wide overview of the differences between the listet CMS. From doing more research in this field, I found out that these CMS a really among the widest used and best CMS systems, so the comparison is really helpful indeed. (see also this wikipedia article for a list of CMS based on Java).

Hope I could help you so far ;)

FBI: Internetusern droht der Blackout

Mehr als 33.000 Internetnutzer in Deutschland sind nach Schätzung des FBI derzeit von einer Schadsoftware betroffen, die Kriminelle nutzten, um die Surfer auf manipulierte Websites zu lotsten. Die Gefahr der Manipulation ist gebannt, dafür droht diesen Nutzern nun neues Ungemach: Ab dem 8. März dieses Jahres sind sie vom Internet abgeschnitten, wenn sie jetzt nicht handeln. Lt. dem Handelsblatt

Hier kann man prüfen ob Ihre Computer betroffen ist http://www.dns-ok.de/  (deutsche Telekom)

 

 

Vanity URL für Facebook-Seite

Die “Vanity URL” oder “Facebook Nutzername” genannt ist die Adresse für eine Facebook-Fanpage. Sie ist für Google auffindbar und für KundenInnen leicht zu merken.

Anfangs hieß die Seite: https://www.facebook.com/pages/masterstudios%C3%B6del/249849. Nach der Änderung des Namens auf https://www.facebook.com/username/
lautet die neue FB-Adresse https://www.facebook.com/MasterStudios.net. Kleine Effekte die Ihren Pagerank erhöhen und den Kunden das Leben erleichtern.

 

Unterstützung von “Mein A1″

Master Studios war bei der Entwicklung des App-Projekts “Mein A1″ maßgeblich beteiligt. Nach mehreren Monaten der Entwicklung können nun die A1 Kunden ihren aktuellen Telefonverbrauch jederzeit und überall abrufen.

Was das Jahr 2012 am App-Markt bringt

Wolfgang Lünenbürger-Reidenbach gehört zu denrenommiertesten Online -Strategen des Landes.

Wolfgang Lünebürger-Reidenbach twittert unter @luebue.

Der Digitalchef der Hamburger Agentur Achtung sorgt auch als Blogger (“Haltungsturnen”) immer wieder für Aufsehen. Für W&V Online hat er sechs Thesen und Prognosen für 2012 formuliert: über Zielgruppen, Social Media, Daten, Social Commerce und warum der App-Boom endet.

Zum Artikel

Open files from the assets folder

Recently I was working on an Android-app and had following problem to solve: I had to read the contents of a text file located within the assets folder of the app …

Here’s how I got it working:

First you need an instance of the class Context, so for example an Activity. On that instance you can call the getAssets() method to retrieve the AssetManager for the app’s assets folder. So for example within a subclass of Activity you could do it as follows:

AssetManager manager = getAssets();
InputStream inStream = manager.open("file.txt");

So as you see getAssets() return the AssetManager, an the method open(…) returns an InputStream for the required ressource.

After that you can read the contents from the input stream or convert it into a string by processing it by a scanner:

String fileContents = "";
Scanner scanner = new Scanner(plistStream);
while(scanner.hasNextLine()) {
 fileContents += scanner.nextLine();
}

free good wordpress themes

Unable to locate the Javac Compiler in – eclipse and maven – SOLVED

if you wonder why your eclipse “problems”-window shows up the error:

Unable to locate the Javac Compiler in ….

and you are unable to start to start the project, just switch to “Problems” window and do an unbelievable thing:

click right on the error and click “delete”

design for free

we found a design which was created for us. if you want you can have it.

absolute vodka background – shot in our office

nice shortcuts on a news page

trends

some good links for trends:

http://www.springspotters.com
http://www.agendainc.com
http://www.thecoolhunter.net
http://www.coolbusinessideas.com
http://www.cscout.com/
http://www.influxinsights.com
http://www.trendcentral.com
http://www.techcrunch.com
http://www.psfk.com
http://www.springwise.com
http://www.trendbird.co.kr
http://www.trendhunter.com
http://www.trendwatching.com

idealo.at export interface for oscommerce

this little script is the interface export for idealo.at.

idealo.at export for oscommerce

synce xtCommerce db to osCommerce db – tool

following little php file syncs a xtCommerce db to osCommerce db. du to the fact, that an osCommerce db has less columns in the tables as the xtCommerce db it only syncs the table columns which are available. this script does NOT sync the whole db. if you use it, you have to do it table after table. just see the script and modify the parameters.

Sync xtCommernce to osCommernce