HTML

TwitterFacebook
Get flash to fully experience Pearltrees

31 Must See HTML5 Experiments - acrisdesign.com

Today HTML5 is one of the popular topics for developers. So in today article we have a collection of some incredible and impressive HTML5 canvas and java-script http://www.queness.com/community-news/9268/31-must-see-html5-experiments
WebGL Water This project was an experiment in realtime water rendering with WebGL. The focus was on the rendering aspect, not on the simulation, so the behavior of the water isn't that realistic.

Projects - Made by Evan

http://madebyevan.com/
So as we’ve mentioned occasionally around here , we think that HTML5 app development is something that even real developers (we kid! we kid!) should be keeping their eye on as a likely method of first resort for cross-platform development and non-AppStore distribution; and here (h/t: @Dylan_Beadle ) is a LIVE! ONLINE!

22 Tutorials for HTML5 Mobile Web Development | Mobile Zone

http://mobile.dzone.com/news/html5-mobile-web-development
http://www.initializr.com/ About Initializr Initializr is here to kick-start the development of your new projects. It generates templates based on HTML5 Boilerplate by allowing you to choose which parts you want or don't want from it. A responsive template has also been added to start from a basic design instead of a blank page.

Initializr - Start your HTML5 project in 15 seconds!

http://www.script-tutorials.com/10-exceptional-examples-of-html5-canvas-and-applications/

10 Exceptional Examples of HTML5 Canvas and Applications – Script Tutorials

10 Great HTML5 Canvas demos This is collection of most incredibly HTML5 canvas demos. Today, during browsing web I was amazed with so big amount of various html5 demonstration. And glad to share what I was able to collect.
http://www.hongkiat.com/blog/html5-web-applications/

HTML5-Powered Web Applications: 19 Early Adopters

HTML5, rumored as Flash killer , is a brand new web technology that raises a revolution lead by Apple in web application development. It contains canvas element for images and animation drawings, support video and audio embedding, and includes storage database for offline web applications. Most important of all, you don’t need a plugin to get all these features, your latest browser supports that. Sounds pretty cool, but what HTML5 can do actually?

Eureka! Google breakthrough makes SSL less painful • The Register

http://www.theregister.co.uk/2011/05/19/google_ssl_breakthrough/ Google researchers say they've devised a way to significantly reduce the time it takes websites to establish encrypted connections with end-user browsers, a breakthrough that could make it less painful for many services to offer the security feature. What's more, the technique known as False Start requires that only simple changes be made to a user's browser and appears to work with 99 percent of active sites that offer SSL, or secure sockets layer, protection. "We implemented SSL False Start in Chrome 9, and the results are stunning, yielding a significant decrease in overall SSL connection setup times," Google software engineer Mike Belshe wrote in a blog post published Wednesday. "SSL False Start reduces the latency of a SSL handshake by 30%. That is a big number."
This is the second post in a series on creating custom interactive visualizations in canvas. The first post is here . The canvas API contains five methods (rotate, scale, translate, transform, and setTransform) used to transform the drawing context. http://blog.carbonfive.com/2011/03/31/taming-2d-transforms/

Taming 2D Transforms in HTML5 Canvas | Carbon Five Community

My favorite web technology is quickly becoming the WebSocket API. WebSocket provides a welcomed alternative to the AJAX technologies we've been making use of over the past few years. This new API provides a method to push messages from client to server efficiently and with a simple syntax. http://davidwalsh.name/websocket

WebSocket and Socket.IO

HTML5 Techniques - Ultimate Collection of Tutorials | Tutorial Lounge

http://www.tutoriallounge.com/2010/11/html5-techniques-ultimate-collection-of-tutorials/ As my experience we always close to the latest technologies as we have one step ahead on web development techniques as HTML5 . HTML 5 is the advanced version of HTML . HTML 5 is giving new techniques and advanced features/structure in designing. These new features and tags makes designing very easy to create a web page. CSS3 and HTML 5 are capable of revolutionizing the way we design websites.
I want to emulate HTML5's geolocation API in Java without having to fire-up a browser. Also, I'm going to restrict my hardware to a netbook without a GPS receiver, RFID or Bluetooth; the machine's only connection to the wider world will be through WiFi. This leaves two starting points for finding my location: IP and MAC addresses. The diagram at the top of this page shows the various ways I'll be using IP and MAC addresses in this chapter. The IP and MAC addresses of my netbook aren't much use, because they're for a mobile device.

Chapter 35. Geolocation without GPS

These days we use GeoLocation related services in almost all the applications and sometimes we don't want to be dependent on third party GeoLocation API's for doing some simple operations as mentioned above. For these purposes I tried to use sample code available at different sites, but some of them gave wrong results and some of them did not suit our requirements. So, I decided to write it myself. In this blog I am not going to explain the trigonometric formulae for performing the above operations, but will present you with Java code that you can use.

Swarm of XeBees » Working with GeoLocations

Swarm of XeBees » HTML5 – Multithreading in JavaScript with Web Workers

Single Threaded Model The way javascript handles various asynchronous ajax calls or various timer functions, it makes us feel that javascript runs in multiple threads. Now, how does browser handle the UI events when it is executing a particular block of code, or how does browser handle the asynchronous timer and ajax calls when it just has a single thread for execution. The answer to all these questions lies in the way browser queues up various functions for execution. Let us take an example of the following script

WebSockets is cool, but what can you do today? | Clay Lenhart's Blog

WebSockets is a new feature that appears to be a great way to send messages from the server to the browser, however today there isn’t much support, both in browsers and on the server in IIS and ASP.Net. Today you can use a Comet technique (in particular, Ajax with long polling ) which is available in all browsers. Using this concept, the browser makes a standard AJAX call to the server that waits until it receives a message. Asynchronous Pages and Asynchronous Controller allow you to have long running HTTP requests without using precious ASP.Net threads. For a typical ASP.Net application (and ASP.Net MVC application), an HTTP request always uses an ASP.Net thread.

Introducing HTML5 Web Sockets – taking bidirectional communication on the web to the next level | Web Builder Zone

For a long long time we have tried to be able to push information from the server out to the end users without having to poll the server all the time. Background My first memory of pushing out information to the end user was a feature in Internet Explorer 4 when you could subscribe to information and get it pushed out to you. If my memory serves me correctly, it wasn’t really seamless, but nevertheless, it was my first experience of it.