Skip to content

Instantly share code, notes, and snippets.

View VivekMChawla's full-sized avatar

Vivek M. Chawla VivekMChawla

View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 28, 2024 08:25
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@VivekMChawla
VivekMChawla / 00 - Salesforce Snippets: Comment Headers.md
Last active May 22, 2024 17:35
Collection of Apex "Comment Header" snippets.

This gist contains multiple files. Each file contains a specific type of Apex or Visualforce comment header.

When code is no longer used, but can not be deleted from your org, add the @deprecated annotation to the File or Method Header.

@joshbirk
joshbirk / 1_WarehousePull.cls
Last active December 14, 2015 11:29
WarehousePullData Example
public with sharing class WarehousePullData {
public WarehousePullData() {}
//WarehousePullData.pullData();
public static String pullData() {
// Instantiate a new http object
Http h = new Http();
// Instantiate a new HTTP request, specify the method (GET) as well as the endpoint
HttpRequest req = new HttpRequest();