Skip to content

Instantly share code, notes, and snippets.

View mreinstein's full-sized avatar
PUT the COFFEE....DOWN.

Michael mreinstein

PUT the COFFEE....DOWN.
View GitHub Profile
@mreinstein
mreinstein / css-color-invert.js
Last active June 12, 2024 06:12
invert all colors on a web page
// invert all colors on the page
export default function invert() {
let css = 'html {-webkit-filter: invert(100%);' +
'-moz-filter: invert(100%);' +
'-o-filter: invert(100%);' +
'-ms-filter: invert(100%); }',
head = document.getElementsByTagName('head')[0],
style = document.createElement('style')
if (!window.counter) {
@mreinstein
mreinstein / index.md
Created August 2, 2017 17:15
determine the TCP port on which a node.js program listens

Find the pid of the running process if you don't know it:

$ ps ax | grep node
1012 ?        Ssl    0:03 node /usr/bin/signalhub listen -p 8000

In this case we're running a node program and it's pid is 1012