Salta la navigazione

CSS and XHTML 1.0 Transitional
http://grid.mindplay.dk

Html5 CSS Javascript
http://gridpak.com/

Start from here
http://dev.day.com/docs/en/cq/current/getting_started/download_and_startworking.html
Download
http://dev.day.com/docs/en/cq/current.html#Exploring%20the%20CQ%20Platform

Blog resource
http://blogs.adobe.com/contentmanagement/

Apache Felix is a community effort to implement the OSGi R4 Service Platform and other interesting OSGi-related technologies under the Apache license. 
http://felix.apache.org/site/index.html
Bundle tutorial
http://felix.apache.org/site/apache-felix-tutorial-example-1.html

Apache Sling web application framework (provides REST-based request resolution) that use Jackrabbit for JCR
http://sling.apache.org/site/the-sling-engine.html

The OSGi Alliance is a non-profit corporation founded in March 1999.
The alliance provides specifications, reference implementations, test suites and certification to foster a valuable cross-industry ecosystem.

Modularity reduces software complexity; OSGi is the best model to modularize Java. The OSGi technology facilitates the componentization of software modules and applications and assures remote management and interoperability of applications and services over a broad variety of devices

http://www.osgi.org/Specifications/HomePage

http://blog.mailchimp.com/introducing-hairball-an-air-app-for-really-complicated-mailchimp-lists/

UI
http://www.mac-and-i.net/2011/05/termkit-next-generation-terminal-and.html
http://blog.easytech.com.ar/2011/05/21/playing-with-termkit-with-chrome/
UI
http://appjs.org/

https://github.com/zcbenz/node-gui

http://news.ycombinator.com/item?id=3816868

https://github.com/rogerwang/node-webkit

Web CSS frontend
http://www.erikzaadi.com/2011/04/21/node-js-frontend-fu-node-fe-fu/

The project
http://banchaproject.org/
https://github.com/Bancha/BanchaScaffold

ExtJS grid
http://www.sencha.com/blog/bancha-seamlessly-integrates-cakephp-with-ext-js-and-sencha-touch/

Ant for PHP
http://www.phing.info/

A responsive Joomla Frontend Framework based on Foundation3 from Zurb

http://foundation3.ws-responsive.com/index.php/styling/list-styles

Zurb’s Foundation in a WordPress Theme

http://320press.com/wp-foundation/v2-0-foundation-wordpress-theme/

Drupal themes:

Do you like grid systems? How about rapid prototyping? Do you believe in mobile first? Then this theme is for you.

http://drupal.org/project/zurb-foundation

https://github.com/drewkennelly/foundation7

Cogito is a base theme for Drupal 7

http://drupal.org/project/cogito

 

Socialite provides a very easy way to implement and activate a plethora of social sharing buttons
http://socialitejs.com/

A tiny javascript library for dynamically generating progress pie charts in your favicons.
http://lipka.github.com/piecon/

Freetile is a plugin for jQue­ry that en­ables the or­ganiza­tion of web­page con­tent in an ef­ficient, dynamic and re­spon­sive layout
http://yconst.com/web/freetile/

Audiolet is a JavaScript library for real-time audio synthesis and composition from within the browser
https://github.com/hakimel/Audiolet

Avgrund is a jQuery plugin for modal boxes and popups
http://labs.voronianski.com/jquery.avgrund.js/#

Bonsai is a graphics library which includes an intuitive graphics API and an SVG renderer
http://docs.bonsaijs.org/

Using HTML5 and Flash, SoundManager 2
http://www.schillmania.com/projects/soundmanager2/demo/api/
http://www.schillmania.com/projects/soundmanager2/demo/cassette-tape/

powerful Javascript library that allows you to easily take advantage of the new HTML5 audio element
http://buzz.jaysalvat.com/

server:

var dgram = require(“dgram”);

var server = dgram.createSocket(“udp4”);
var messageToSend = new Buffer(“A message to send”);

server.on(“message”, function (msg, rinfo) {
console.log(“server got: ” + msg + ” from ” +
rinfo.address + “:” + rinfo.port);
});

server.on(“listening”, function () {
var address = server.address();
console.log(“server listening ” +
address.address + “:” + address.port);
});

server.bind(41234);
// server listening 0.0.0.0:41234

client:

var dgram = require(‘dgram’);
var message = new Buffer(“Some mother fucking bytes”);
var client = dgram.createSocket(“udp4”);

client.send(message, 0, message.length, 41234, “localhost”,
function (err, bytes) {
if (err) {
throw err;
}
console.log(“Wrote ” + bytes + ” bytes to socket.”);
client.close();
});