makes 3 dozen
My mom made these when we were kids, and they were so good. She got the recipe from her mom, Doris, and she could bake! These have always been a good source of comfort and nostalgia for me.
- 3/4 cup Crisco
| # - title: | |
| # subtitle: | |
| # author: | |
| # img: https://images-na.ssl-images-amazon.com/images/P/#.01._SCLZZZZZZZ_.jpg | |
| # url: | |
| # rating: | |
| # notes: | |
| - year: 2018 | |
| books: | |
| - title: Showa 1953-1989 |
| import React, { Component } from 'react'; | |
| import './App.css'; | |
| import { TextField, PrimaryButton, Checkbox, ProgressIndicator} from "office-ui-fabric-react"; | |
| class App extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| todo: null |
If applicable, make sure your design component accounts for all these states. This is basically copied from the Nine States of Design Medium article. 😛
| from scapy.all import * | |
| import requests | |
| import time | |
| MAGIC_FORM_URL = 'http://put-your-url-here' | |
| def record_poop(): | |
| data = { | |
| "Timestamp": time.strftime("%Y-%m-%d %H:%M"), | |
| "Measurement": 'Poopy Diaper' | |
| } |
| { | |
| "repositories": [ | |
| { | |
| "type": "path", | |
| "url": "../relative/project/path" | |
| } | |
| ], | |
| "require": { | |
| "${project}": "dev-${branch}" | |
| } |
| <?php | |
| // Please see https://github.com/Lewiscowles1986/WordPressSVGPlugin from now on |
| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
##Sass Functions Cheat Sheet
I published this email exchange as a full post at csswizardry.com/…/can-css-be-too-modular.