Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<title>Test dark mode</title>
<style type="text/css">
body.dark {
background-color: #212529;
color: #6c757d;
}
@jc91715
jc91715 / gist:f3fb2cfc150da7a3e6c7e4e9a7ad52fb
Created June 28, 2019 11:21 — forked from tobek/get-image-urls.js
Save images from chrome inspector network tab
/* right click on an entry in the network log, select Copy All as Har
* type in console: x = [paste]
* paste the following JS code into the console
* copy the output, paste into a file
* then wget -i [that file]
*/
(function(logObj, mime) {
var results = [];
logObj.log.entries.forEach(function (entry) {
if (mime && entry.response.content.mimeType !== mime) return;
@jc91715
jc91715 / README.md
Created April 15, 2018 01:00 — forked from hofmannsven/README.md
Notes on working with October CMS