Category: Web Technology
-
Chrome Extension to Boost Productivity
Source code of google chrome extension on how to block websites and improve productivity
-
Getting Started with Jasmine Test Framework
Introduction to Jasmine framework and getting started with Behavior Driven Development (BDD) testing, along with Complete Source code and Video
-
Tips to effectively use Google chrome developer tool
While building Lightning Components in Salesforce, how to effectively use Google chrome developer tools to troubleshoot and analyze issue
-
Change Style of Console.log debug statements in JavaScript
Applying css style to console.log statements in JavaScript
-
Addthis plugin for wordpress – serving request to b.scorecardresearch.com
Recently my website was slow and I tried to search for possible causes. While checking network traffic in google chrome, I found that my website was making request to “b.scorecardresearch.com” and reputation is not good at all for this site. I did my research on wordpress forums and found that “addthis” plugin was making requests…
-
Getting started with React
React is open source Javascript library used by Facebook and currently very popular amongst web developers to create user interface. React can be used as View part of MVC design pattern with powerful templating feature supported by “JavaScript syntax extension (JSX)“. React focuses on component based development where each components has its own life cycle.…
-
Salesforce – Drag and Drop File Uploader Component with Progress Bar – HTML5 and Pure Javascript Based
You may find many ways to upload attachments in Salesforce using visualforce however most of them uses some Javascript libraries (means either you need to depend on static resources or add CDN in remote site settings) or they do not have progress bar or they are not drag and drop. I thought to create one simple Visualforce…
-
Access Camera and Audio recorder of Mobile device in Visualforce and upload as chatter file
In this article we will see how to use Camera and Audio recorder of mobile device in Visualforce and upload as chatter file. It may look that it is very tricky to access device camera and audio control in Visualforce however you may be right if there were no HTML5. Thanks to HTML5 for magic.
-
How to use PostgreSQL in Nodejs
I have written many articles on Node.js and AngularJs. In this article, I will demonstrate how to use PostgreSQL with Node.js and deploy on Heroku. I think you already smelled that this is one of starting article which will finally merged with Salesforce to create some cool application. Assuming you already have some background knowledge…