Skip to content

Instantly share code, notes, and snippets.

View kevin-chau's full-sized avatar
🌴
On vacation

Kevin Chau kevin-chau

🌴
On vacation
View GitHub Profile
@kevin-chau
kevin-chau / Wanhao_Cura_Profile16.ini
Created February 19, 2019 16:12 — forked from joshgerdes/Wanhao_Cura_Profile16.ini
Monoprice Maker Select Plus (Wanhao i3 Plus) Setup
[profile]
layer_height = 0.16
wall_thickness = 1.2
retraction_enable = True
solid_layer_thickness = 1.2
fill_density = 10
nozzle_size = 0.4
print_speed = 50
print_temperature = 200
print_temperature2 = 0
@kevin-chau
kevin-chau / bittrex_private_and_public_api.gs
Created August 20, 2017 08:24 — forked from learntheropes/bittrex_private_and_public_api.gs
Bittrex private and public API for Google Apps Script (Google Sheet)
// work in progress
// you need a bittrex API key and secret with read account option enabled
// I assume that all the keys are in the "keys" spreadsheet. The key is in cell B5 and the secret in cell C5
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("keys");
var key = sheet.getRange("B5").getValue()
var secret = sheet.getRange("C5").getValue();
var baseUrl = 'https://bittrex.com/api/v1.1/';
var nonce = Math.floor(new Date().getTime()/1000);
@kevin-chau
kevin-chau / .block
Created September 9, 2016 05:01 — forked from mbostock/.block
Box Plots
license: gpl-3.0