Motion tracking mit JS
Javascript motion tracking
Hier ist das Demo Video dazu. Da kann man live mit spielen also kein fertiges.
Bananas Development Blog: share your thoughts
We are thrilled. There honestly is no better place for us to continue building our platform. But perhaps even more significantly, this represents a huge step forward in bringing fonts to the web.
The WhatWasThere project was inspired by the realization that we could leverage technology and the connections it facilitates to provide a new human experience of time and space – a virtual time machine of sorts that allows users to navigate familiar streets as they appeared in the past.
Researchers have discovered a serious weakness in virtually all websites protected by the secure sockets layer protocol that allows attackers to silently decrypt data that's passing between a webserver and an end-user browser.
$(window).load(function() {
$("#socialMediaExtended").click(function() {
var url = "/getSocialBarExtended";
$.ajax({
url: url,
cache: false,
success: function(html) {
$('#socialFrame').html(html);
addthisInit();
}
});
});
addthisInit();
});
function addthisInit() {
var addthisScript = 'http://s7.addthis.com/js/250/addthis_widget.js#domready=1';
if(window.addthis) {
window.addthis = null;
}
$.getScript(addthisScript, function() { addthis.init(); });
}People who create web forms, databases, or ontologies are often unaware how different people’s names can be in other countries. They build their forms or databases in a way that assumes too much on the part of foreign users. This article will first introduce you to some of the different styles used for personal names, and then some of the possible implications for handling those on the Web.
This article doesn't provide all the answers – the best answer will vary according to the needs of the application, and in most cases, it may be difficult to find a 'perfect' solution. It attempts to mostly sensitize you to some of the key issues by way of an introduction. The examples and advice shown relate mostly to Web forms and databases.
Although the new web standard does not do your laundry, it has features that enable the creation of powerful applications—using only HTML, CSS and JavaScript (a Rails back-end can bring additional firepower to the table). This post will go over some key concepts and features of HTML5, setting the stage for more advanced subjects.
The Debian Mozilla team provides various versions of some Mozilla related packages for use on different Debian systems. The following wizard helps you to find the packages suitable for your system.
window.onbeforeprint = printFix;
function printFix() {
$("footer").replaceWith(function () {
var attClass = $(this).attr('class');
var attId = $(this).attr('id');
var attStyle = $(this).attr('style');
var add = '';
if(attClass) { add = 'class="'+attClass+'"' };
if(attId) { add = add+' id="'+attId+'"' };
if(attStyle) { add = add+' style="'+attStyle+'"' };
return "" + $(this).html() + "";
});
}