Category: kb

Remote Ubuntu Desktop

Goal is to setup an Ubuntu Desktop which is accessible by RDP Protocol – The desktop will run in a virtual instance with no fancy graphics card, only plain 2D – The protocol should be RDP as nowadays on every client RDP is available – if it’s nice looking it’s a plus – performance should …

Continue reading

jQuery reference: basic jquery

Basic jquery template: $(document).ready(function() { $(‘thingToTouch’).event(function() { $(‘thingToAffect’).effect(); }); }); Beispiel #1: $(document).ready(function() {     $(‘div’).click(function() {         $(‘div’).fadeOut(‘fast’);     });     $(‘div’).hover(function() {         $(‘div’).addClass(‘red’);     }); }); Beispiel #2: $(document).ready(function() { $(‘div’).mouseenter(function() { $(‘div’).fadeTo(‘fast’, 1); }); $(‘div’).mouseleave(function() { $(‘div’).fadeTo(‘fast’, 0.25); }); });

WordPress: Karte von einem GPS track erstellen

Voraussetzung ist das WordPress Plugin: wordpress.org/extend/plugins/osm/ Dies erlaubt in peliebige posts, verschieden Karten einzufügen. Hier die Anleitung für eine Karte mit einem GPS Track: Post erstellen GPS Track zu artikel hochladen In WordPress -> Settings -> OSM: Zentrum und zoomstuffe der Karte erstellen z.B. [*osm_map lat=”46.324″ long=”7.839″ zoom=”10″ width=”600″ height=”450″ type=”Mapnik”] für den GPS Track …

Continue reading