Skip to content

Instantly share code, notes, and snippets.

View bijayrungta's full-sized avatar

Bijay Rungta bijayrungta

View GitHub Profile
@bijayrungta
bijayrungta / osx_setup.md
Created October 24, 2016 07:50 — forked from mcls/osx_setup.md
Setup mac for ruby dev
@bijayrungta
bijayrungta / jiraRefreshTickets.js
Created December 30, 2015 20:05 — forked from rtrcolin/jiraRefreshTickets.js
Super simple Google Docs integration with Jira Issues/Tickets
// URL for Jira's REST API for issues
var getIssueURL = "https://[Your Jira host]/rest/api/2/issue/";
// Personally I prefer the script to handle request failures, hence muteHTTPExceptions = true
var fetchArgs = {
contentType: "application/json",
headers: {"Authorization":"Basic [Your BASE64 Encoded user:pass]"},
muteHttpExceptions : true
};
@bijayrungta
bijayrungta / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console