Tuesday, September 15, 2015

Blender 2.7x - 3D Models out of unicode symbols and icon font entities

What its about: I wondered how to use unicode symbols in Blender e.g.  ♳☀︎☺︎☤ ... to create 3D Objects from them that later on can be added to existing Models. This will help to reduces the amount of time spent on recreating of thought through iconography. Motivation: I know it's some...

Friday, April 17, 2015

Fingerprinting as a technique to distinguish and track clients or create client IDs using Javascript

What is it about I'm currently on a task to create a client's fingerprint on a website to recognize if he's comming back or a first-timer on my page. The whole thing shall be done with clients side Javascript only. Some people are on this task for some time now: https://panopticlick.eff.org/ http://www.heise.de/newsticker/meldung/EFF-demonstriert-den-Fingerabdruck-des-Browsers-918262.html (german) There...

Wednesday, May 21, 2014

check if a checkbox .is :not :checked ...

8:18 AM Posted by Unknown No comments
So many ways to check if a checkbox is (not) checked :) especially if you mix in a little jQuery ...and the winner is: !$('#my-test-checkbox')[0].checked even though i like to read $('#my-test-checkbox').is(':not(:checked)') http://jsperf.com/not-checked-vs-not-checked ...

Thursday, June 13, 2013

I want Dinosaurs and Trees! - It's about CSS and HTML)

6:11 AM Posted by Unknown No comments
... sitting in a Cafe in the center of Hannover and try to browse some websites, google store, mail etc. Even though its 2013, 3G / 4G is not the fastest and resources for all those websites and Apps out there take some seconds to load...  Who got some spare seconds these days ?!? What If... ......

Friday, August 31, 2012

Building Drip-Castles using JS and CSS

9:31 AM Posted by Unknown , , No comments
[Post written by Mario August 22nd, 2010 at 3:10 pm] ...recovered While looking for some way to draw HTML (sooo lazy :) I came up with some kind of Structure Generation based on divide & conquer. With some CSS it turned out to look like "Kleckerburgen" (engl. Drip Castles). Done by capturing "Mouse-Over" - Event on the initial Element-node, that get divided in 2 child-nodes and so on until...

Lichtatmer Hallo Welt!

9:13 AM Posted by Unknown No comments
Augen zu – und…… warten!Wenn dann die Äuglein wieder etwas Licht in den Kopf lassen, die ersten paar Momente richtig mitfühlen.Licht atmen! Gar nicht so einfach – aber beruhigt und lässt einen selbst ein paar tolle Dinge entdecken.Einfach selber mal ausprobieren.Da die meisten Dunkelheit zusammen mit Unbehagen und Unsicherheit empfinden evtl. zuerst in den eigenen 4+x Wänden testen. Später dann auch...

Tuesday, August 28, 2012

Normalize Number Delimiter for different locales with Javascript

9:34 AM Posted by Unknown , , , No comments
Working with a Web-Application based on Java/Spring and FTL / JSP on the Template side you might know that you got some build in localization support(e.g. for number formatting). Various locales(java example locales). result in different number formatting: de_DE,german - 1.000,30 € cs_CZ,czech - 1 000,30 Kč en_GB,english - £1,000.30 ... Sometimes this is not that great Currently some external...