Category: Tech Tips
-
Frequently Used Git Commands
Most frequently used Git commands by developers
-
What is Micro Services
I have read many posts and watched video to understand Microservices precisely however I found Martin Fowler’s explanation about Microservices most helpful. This blog post is just the recap & summary of what I understood about Microservices Architecture. Characteristics of Microservices Build services in form of Components Components can be independently replaceable and upgradable Components…
-
How to setup Git Server using Bitvise SSH
Step by step guide to setup Git Server using Bitvise SSH Server
-
How to use Symbolic Link to move Google Chrome AppData folder to other location
Using Symbolic Link to move high storage folders to new location like moving Google Chrome AppData folder to other location
-
Fix Git errors : Permission denied , Cannot spawn , No supported authentication methods available
Recently, I came across few errors of Git and found very time consuming to fix those. Let’s discuss what are those errors and how we can fix it. Error : Permission denied (publickey). fatal : could not read from remote repository This error came while trying to push changes to remote repository using ssh keys.…
-
Using Selenium to test workflow field update action – Salesforce automated testing – Video tutorial – Part 2
We have already discussed basics of selenium and how we can use this tool for automated testing. Here we will see how we can take advantage of Selenium to test workflow field update. in this article we will create a simple workflow rule on Lead object and update “Description” field by adding fields “Number of Employees” and…
-
Getting started with Git and Bitbucket in 5 minutes with TortoiseGit | Video Tutorial
This is very short video tutorial which explains how easily we can use Git to manage source code on bitbucket using Tortoisegit in almost 5 minutes.
-
Using CCTray to monitor continuous integration setup using Jenkins for Salesforce | Video Tutorial
In previous article, I have explained that how to use Jenkins to setup Continuous integration for Salesforce. Now, once Jenkins is up and its doing its job to build Salesforce changes. Next task is to monitor build result. We already setup post deployment task by creating chatter message to notify everyone about build result, however there is…
-
Resolve Error : Eclipse SSH key is not matching the SSH key(s) that is associated with your Heroku account
We have seen that how to create First Heroku application using Eclipse. However it is possible that after following all steps properly in above article you may receive error saying the Eclipse SSH key is not matching the SSH key(s) that is associated with your Heroku account. To fix this error, you can: – Associate your…
-
IndexedDB – Client Side Database
One of many features of HTML5 is capability to store data on client machine with the help of “Indexed Database API“. Using this technique web developers can add offline capabilities to their application. Currently almost every modern browser supports “IndexedDB”. Unlike traditional RDBMS, IndexedDB doesn’t have table or columns which supports SQL. In RDBMS, it…