- Remove all stopped containers
docker container prune
- Remove all dangling images
# list
// using online bookmarklet tools | |
// https://www.yourjs.com/bookmarklet/ | |
function createButton(label) { | |
const btn = document.createElement('button'); | |
btn.innerHTML = label; | |
btn.style.fontSize = '50px'; | |
btn.style.position = 'absolution'; | |
btn.style.top = 0; | |
btn.style.marginTop = '100px'; |
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
// ==UserScript== | |
// @name instagram easy save | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.instagram.com/ | |
// @grant none | |
// ==/UserScript== |
const fs = require('fs'); | |
const requestDefault = require('request'); | |
const curlParser = require('parse-curl'); | |
const Jimp = require('jimp'); | |
const jar = requestDefault.jar(); | |
const request = requestDefault.defaults({ jar }); | |
const requestPromise = (requestOption) => new Promise((resolve, reject) => { | |
request(requestOption, (err, res) => { |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import _ from 'lodash'; | |
// todos | |
// - move the ref of each item componnent to it's parent | |
// - check the SSR result, because the actual content only rendered after did mount | |
// d - is set containerDOM.style.height in did update necessary? | |
// d - rename padding elements to beforePadder, afterPadder | |
// - set the buffer height to the height of container by default |
// ==UserScript== | |
// @name Student Portal Auto Login | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description enter something useful | |
// @author You | |
// @match http://localhost/login* | |
// @grant none | |
// ==/UserScript== |