Skip to content

Instantly share code, notes, and snippets.

View veresh's full-sized avatar

Veresh Jain veresh

  • Intalio
  • Bangalore
View GitHub Profile
{
"openapi" : "3.0.1",
"info" : {
"title" : "API Specifications",
"contact" : {
"email" : "apiteam@swagger.io"
},
"version" : "1.0"
},
REM 1. Download nircmd from here http://www.nirsoft.net/utils/nircmd.html
REM 2. Unzip to a folder
REM 3. Copy paste this script to a bat file
REM 4. Double click this script, it will move mouse evert 60 seconds, so your monitor wont be locked :)
set PATH=<Path to folder which has nircmd>;%PATH%
for /l %%x in (1, 1, 1000000000) do ( nircmd movecursor 500 500 & echo %%x & timeout 60 & nircmd setcursor %%x %%x & timeout 60 )
@veresh
veresh / Get-All-SFDCObjects.cs
Last active April 15, 2016 06:37
C# code to get list of all objects from SFDC instance.
using log4net;
using log4net.Config;
using SFDCtoCRM_Migration.WebReference;
using System;
using System.Configuration;
// Code assumes that you have imported SFDC Enterprise WSDL into your solution
namespace SFDCtoCRM_Migration
{
class Migrate
{