Skip to content

Category: Programming

HTTP Status Codes Explained
Programming

HTTP Status Codes Explained

As part of the HTTP protocol HTTP Status Codes are returned to allow software to easily identify what the problem is and what they should do in response.

July 19, 2016
Programming

Asynchronous Programming in Salesforce

What is Asynchronous Programming? In synchronous programming, each step is performed one after the previous one is finished executing. This means that…

July 15, 2016
How to Use Salesforce Custom Settings
Programming

How to Use Salesforce Custom Settings

When developing on Salesforce’s force.com platform it’s essential to avoid hardcoding application settings because a deployment will be required every time something…

June 28, 2016
Programming

AWS/ Serverless Fixing AccessDeniedException

“Unhandled rejection AccessDeniedException: Your access has been denied by EC2, please make sure your function execution role have permission to CreateNetworkInterface. EC2…

June 2, 2016
Everything You need to Know About Creating Tasks in Salesforce Apex
Salesforce

Everything you need to know about creating Tasks in Salesforce Apex

Salesforce task records are basically action items or items on a to-do list. Tasks are commonly logged against relevant records like a Lead, Opportunity, Contact, or Account. Sometimes, depending, on your organization's data model it may also make sense to log tasks against custom objects. In this post, we cover how to automatically create a task in Apex.

May 3, 2016
JavaScript

Avoiding Globals in JavaScript

JavaScript uses functions as the primary way to define scope any variable defined inside of a function is in the local scope. A variable defined outside of a function is in the global scope.

March 15, 2016
Salesforce Logo
Programming

How to have a Visualforce Page Download as a pdf

When creating applications it's a pretty common request to be able to create a formatted report or file in pdf file format. For the most part, most customized pages and data can be easily converted into a PDF file without having to make many changes. In Salesforce, we can change customized Visualforce pages to create a pdf file by using the renderAs property and set the value to pdf.

March 8, 2016
jQuery Logo
Salesforce

Using jQuery in Visualforce

jQuery is one of the most utilized JavaScript libraries and can be easily be integrated into any visualforce page regardless of whether…

February 20, 2016
Salesforce Logo
Salesforce

Security in Salesforce

Salesforce has quite a bit of built in security; and has lots of security features that can be customized. Access to most…

February 19, 2016
JavaScript

Node.js & Environment Variables

Environment variables, also known as env, allow us to have applications we build behave differently based on the environment that they are running in. Well designed applications use environment variables and allow us to rapidly deploy to new environments.

February 9, 2016
Bootstrap Logo
Programming

How to use Bootstrap In Visualforce

Bootstrap is a free and really popular open source CSS framework that works pretty well for designing responsive websites and web applications.…

January 5, 2016