Skip to content

Instantly share code, notes, and snippets.

@holydevil
holydevil / keybase.md
Created October 31, 2014 17:44
keybase.md

Keybase proof

I hereby claim:

  • I am holydevil on github.
  • I am holydevil (https://keybase.io/holydevil) on keybase.
  • I have a public key whose fingerprint is D3A5 5736 D89A 160B 15FE 9C52 7365 3624 0838 61E0

To claim this, I am signing this object:

$ curl -IL http://me.yahoo.com/
HTTP/1.1 302 Found
Date: Sat, 01 Nov 2014 17:39:02 GMT
P3P: policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
Location: https://me.yahoo.com/
Cache-Control: private
Vary: Accept-Encoding
Content-Type: text/html
Age: 0
Connection: close
@holydevil
holydevil / cloudSettings
Created February 21, 2019 00:13
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-02-21T00:13:45.454Z","extensionVersion":"v3.2.4"}
@holydevil
holydevil / z-index.js
Created August 27, 2019 15:18
Script to list out z-index values of all parent nodes
//source: https://stackoverflow.com/a/46541425
var el = document.getElementById("#yourElement"); // or use $0 in chrome;
do {
var styles = window.getComputedStyle(el);
console.log(styles.zIndex, el);
} while(el.parentElement && (el = el.parentElement));