Skip to content

Instantly share code, notes, and snippets.

View DioVayne's full-sized avatar

Dio Vayne DioVayne

View GitHub Profile
@DioVayne
DioVayne / radio.html
Created September 26, 2017 07:49
radiobuttons styled
<div class="radio">
<input id="radio-1" name="radio" type="radio" checked>
<label for="radio-1" class="radio-label">Checked</label>
</div>
@DioVayne
DioVayne / sql.mysql
Last active October 5, 2017 04:32
find and replace in mysq database
UPDATE `Kolom` k
LEFT JOIN `Rij` r ON k.rowId = r.rowId
SET `columnText` = replace(columnText, '140-142', '140')
WHERE INSTR(columnText, '140-142') > 0 AND r.siteId = 23;
@DioVayne
DioVayne / radial-pulse.css
Created June 13, 2018 11:45
radial-pulse
@keyframes radial-pulse {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
}
100% {
box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
}
}
/*!
* imagesLoaded PACKAGED v4.1.4
* JavaScript is all like "You images are done yet or what?"
* MIT License
*/
!function (e, t) { "function" == typeof define && define.amd ? define("ev-emitter/ev-emitter", t) : "object" == typeof module && module.exports ? module.exports = t() : e.EvEmitter = t() }("undefined" != typeof window ? window : this, function () { function e() { } var t = e.prototype; return t.on = function (e, t) { if (e && t) { var i = this._events = this._events || {}, n = i[e] = i[e] || []; return n.indexOf(t) == -1 && n.push(t), this } }, t.once = function (e, t) { if (e && t) { this.on(e, t); var i = this._onceEvents = this._onceEvents || {}, n = i[e] = i[e] || {}; return n[t] = !0, this } }, t.off = function (e, t) { var i = this._events && this._events[e]; if (i && i.length) { var n = i.indexOf(t); return n != -1 && i.splice(n, 1), this } }, t.emitEvent = function (e, t) { var i = this._events && this._events[e]; if (i && i.length) { i = i.slice(0), t = t || []; for (var n = this._once