Skip to content

Instantly share code, notes, and snippets.

View louiskueh's full-sized avatar

Louis Kueh louiskueh

View GitHub Profile
@louiskueh
louiskueh / .hyper.js
Created January 14, 2021 22:46
Hyper terminal settings
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@louiskueh
louiskueh / microEdgeAPITutorial.js
Created July 12, 2018 15:08
Simple NodeJS app to access Gifts Online API
var request = require('request');
var keys = require('./keys')
// require('request-debug')(request);
// Get contact ID, user ID and private key from command line arguments
var contactId = "149"
var userId = keys.getuserID()
var privateKey = keys.getprivateKey()
@louiskueh
louiskueh / API-functions.js
Created July 10, 2018 11:27
BlackBaud API exploration
var helper = {
processCodings: function (codingArray) {
// ID = 6, description: Fund
var fund;
// ID = 4, description : "Program Area "
var programArea;
for (var i = 0; i < codingArray.length; i++) {
var obj = codingArray[i]