Skip to content

Instantly share code, notes, and snippets.

@filip1
filip1 / gist:7bcff67d8d8ad878378e5e41acd851f4
Last active May 26, 2022 08:06 — forked from kekscom/gist:5053306
JavaScript Date.toLocalISOString() method
Date.prototype.toLocalISOString = function() {
var off = this.getTimezoneOffset();
return new Date(this.getFullYear(), this.getMonth(), this.getDate(), this.getHours(), this.getMinutes() - off, this.getSeconds(), this.getMilliseconds()).toISOString().slice(0,-1);
}
@filip1
filip1 / ode-tlkio-styles.css
Created July 18, 2016 16:10
Styles for ODE's tlk.io embed
#header .header-bar, #header .header-channel {
background-color: #44841A;
color: white;
}
body, #header .header-channel {
font-family: Arial,Helvetica,"Nimbus Sans L",sans-serif;
}