Skip to content

Instantly share code, notes, and snippets.

View dienncrelipa's full-sized avatar

dienncrelipa

View GitHub Profile
@dienncrelipa
dienncrelipa / .drone.yml
Created September 27, 2018 17:47 — forked from d0x2f/.drone.yml
.drone.yml example
workspace:
base: /build
pipeline:
dbnode1:
detach: true
image: mysql/mysql-cluster:7.5
commands:
- sleep 5
@dienncrelipa
dienncrelipa / no-comments.js
Created August 2, 2018 04:29 — forked from Darep/no-comments.js
Remove all comments from GitHub Pull Request
// Sometimes it's necessary to do a bit of clean-up
Array.prototype.forEach.call(document.querySelectorAll('.js-comment-delete button'), function(el, i) {
el.removeAttribute('data-confirm');
el.click();
});