Skip to content

Instantly share code, notes, and snippets.

View minitech's full-sized avatar

Ryan O’Hara minitech

  • British Columbia, Canada
View GitHub Profile
addDataset(id: string, content: string): Promise<InsightResponse> {
return new Promise(function (fulfill, reject) {
let zip = new JSZip();
let courseStringsPromises: Promise<string>[] = [];
if (id === "" || id === null) {
reject({"code": 400, "body": {"error": "invalid id"}});
}
if (content === "" || content === null) {
@minitech
minitech / dabblet.css
Created July 15, 2013 17:37 — forked from bhargav2785/dabblet.css
Pure CSS wave effect *
/** Pure CSS wave effect **/
div.wave{
position: absolute;
left: 0;
right: 0;
bottom: 0;
}
div.wave > span{
display: inline-block;
width: 10%;