Tuesday, April 30, 2013

Backbone resources

Official site
http://backbonejs.org

Developing Backbone.js Applications
http://addyosmani.github.io/backbone-fundamentals

Monday, April 29, 2013

Webrtc resources

WebRTC 1.0: Real-time Communication Between Browsers
http://dev.w3.org/2011/webrtc/editor/webrtc.html

Google website for webrtc
http://www.webrtc.org/

Getting Started with WebRTC
http://www.html5rocks.com/en/tutorials/webrtc/basics/

WebRTC Experiments & Demos
https://webrtc-experiment.appspot.com/

Mozilla WebRTC Articles
https://hacks.mozilla.org/category/webrtc/as/complete/


Javascript tips

Use === to Test Equality
Include All Necessary Semicolons
Use JSLint
Use a Namespace
Avoid Using Eval
Use Decimals Cautiously
Start Blocks on the Same Line
Use Explicit Blocks
Declare All Variables First
Do Not Use "With"
Be Careful Using typeof
Treat parseInt With Care
Do Not Use Switch Fall Through
Avoid For...In Loops
Use Var to Declare Variables
Avoid Reserved / Special Words
Read Good Code

http://www.codeproject.com/Articles/580165/JavaScript-Best-Practices

Tuesday, April 16, 2013

Email campaign tools

Email on Acid
Litmus
MailChimp
Campaign Monitor
Email It
Campayn
Contactology Email Marketing Software
MailerLite
Campaign Bird
SendBlaster
OpenEMM
Newsletter.ie

Wednesday, April 3, 2013

requestb.in highly recommended

Wrote in python with very simple UI and functionality, but provides a quick way to test callback URL without setting up a web server. From its website description: RequestBin lets you create a URL that will collect requests made to it, then let you inspect them in a human-friendly way. Use RequestBin to see what your HTTP client is sending or to look at webhook requests.

When we inspect outbound request, we usually use HttpAnalyzer, fiddler, and other network utility tools. But when we try to inspect inbound request, we usually need setup server, capture log, use tcp dump or other network utility tools. Now we have requestb.in hosted service, it is very handy to inspect inbound http requests with headers and content.