A dataset containing named CSS colors.
from MDN: CSS Colors.
A dataset containing named CSS colors.
from MDN: CSS Colors.
| Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, โand what is the use of a book,โ thought Alice โwithout pictures or conversations?โ So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear the Rabbit say to itself, โOh dear! Oh dear! I shall be late!โ (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, Alice sta |
| # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
| # generate server.pem with the following command: | |
| # openssl req -new -x509 -keyout key.pem -out server.pem -days 365 -nodes | |
| # run as follows: | |
| # python simple-https-server.py | |
| # then in your browser, visit: | |
| # https://localhost:4443 | |
| import http.server |
I was ready to throw it away, I opened it up and didn't find anything wrong with it. After a quick Google Search, turns out Apple fucked up their users (again) and locked this drive to only one laptop : the MacBook Air.
Bellow is the tweak (found online) to make it usable on Linux
# Debian/linux only - Linux SCSI generic driver
sudo apt install sg3-utils -y| // Adapted from @delucis | |
| // https://github.com/delucis/pellicola/blob/735bd7487bdc597ac7272e4ddce9473c15f68d09/lib/frame-maker.js#L99-L134 | |
| const canvasSketch = require('canvas-sketch'); | |
| const settings = { | |
| dimensions: [ 512, 512 ], | |
| duration: 3, | |
| animate: true, | |
| fps: 24 |
| # Feel free to edit this config. Don't remove any options. | |
| declare -A config=( | |
| # Directories. No trailing slashes. | |
| ["content"]="content" | |
| ["output"]="www" | |
| ["templates"]="templates" | |
| # Add .html extention to generated files |
| [ | |
| "๐", | |
| "๐", | |
| "๐", | |
| "๐", | |
| "๐ ", | |
| "๐", | |
| "๐", | |
| "๐", | |
| "๐", |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>collab editing, yo</title> | |
| <link rel="stylesheet" href="http://codemirror.net/lib/codemirror.css"> | |
| <link rel="stylesheet" href="http://codemirror.net/theme/ambiance.css"> | |
| <script src="http://codemirror.net/lib/codemirror.js"></script> | |
| <script src="http://codemirror.net/addon/mode/overlay.js"></script> | |
| <script src="http://codemirror.net/mode/xml/xml.js"></script> |
| # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
| # generate server.xml with the following command: | |
| # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
| # run as follows: | |
| # python simple-https-server.py | |
| # then in your browser, visit: | |
| # https://localhost:4443 | |
| import BaseHTTPServer, SimpleHTTPServer | |
| import ssl |