How to write a good Bug Report ?
Why good Bug report? If your bug report is effective, chances are higher that it will get fixed. So fixing a bug depends on how effectively you report it. Reporting a bug is nothing but a skill and I will tell you how to achieve this skill. “The point of writing problem report(bug report) is [...]
Read MoreUnderscore.js
Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects. It’s the tie to go along with jQuery‘s tux. Underscore provides 60-odd functions that support both the usual functional suspects:map, select, invoke — as well as more specialized [...]
Read MoreLaunchpad Software Development Strategic
Software Development Branch Guideline Launchpad Branch… Now, we’ll create one branch by module with the guideline : Status Experimental : module under active development. Development : module shaping up nicely, but incomplete or untested, and not yet ready for production use. Mature : Completely addresses the issues it is supposed to, tested, and stable enough for production use. Merged : Not [...]
Read MoreWebGL Javascript with canvas
New Generation Javascript Technology. New feature of javascript , via you can build great applications for animation and more… ==================================================== Javascript Code : canvas = document.getElementById(“canvas”); gl = tdl.webgl.setupWebGL(“viewContainer”, canvas); if (!gl) { return; // Do nothing } ===================================================== This uses the technologies are webgl, html, javascript,socket.io, node.js Get Code hg clone https://webglsamples.googlecode.com/hg/ [...]
Read Moreprototype javascript , Dynamic web Application javascript
Prototype is a JavaScript Framework that aims to ease development of dynamic web applications. Featuring a unique, easy-to-use toolkit for class-driven development and the nicest Ajax library around, Prototype is quickly becoming the codebase of choice for web application developers everywhere. Download it : Just Click API Documentation Like Unlike
Read MorezBugs-css compression-JavaScript compression
zBugs has an easy to use interface which makes compressing and minifying easy. The coolest thing of all, if you sign up they give you a FREE CDN link to your compressed and minified files. They also have an xml sitemap generator, which is handy. Be sure to check them out, well worth the look [...]
Read MoreJavaScript Socket IO-javascript server programming
Socket.IO aims to make realtime apps possible in every browser and mobile device, blurring the differences between the different transport mechanisms. It’s care-free realtime 100% in JavaScript. Server Code: var app = require(‘express’).createServer() , io = require(‘socket.io’).listen(app); app.listen(80); app.get(‘/’, function (req, res) { res.sendfile(__dirname + ‘/index.html’); }); io.sockets.on(‘connection’, function (socket) { socket.emit(‘news’, { [...]
Read MoreXML-RPC JavaScript Message Builder
It’s an XML-RPC message builder, written in JavaScript. It takes JavaScript data objects and converts them into an XML-RPC message. There are actually two components available here. One is the message builder, the other a PHP gateway called xmlrpc-socket that forwards XML-RPC requests to remote servers over the Internet. Together they turn your browser into an XML-RPC [...]
Read MoreJavascript trim function
/** Javascript trim **/ function trim(str, chars) { return ltrim(rtrim(str, chars), chars); } function ltrim(str, chars) { chars = chars || “\\s”; return str.replace(new RegExp(“^[" + chars + "]+”, “g”), “”); } function rtrim(str, chars) { chars = chars || “\\s”; return str.replace(new RegExp(“[" + chars + "]+$”, “g”), “”); } Trim a string and [...]
Read MoreOpen Source Technology
Hello, Here we share the complete information regarding the Open Source tools and technologies are available. we share information as well as the snippet/code/script and open source projects. we guide you a right way to select the technology. here we ready to work for open source technologies. We have effecting timely working team which [...]
Read More