This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// There are hundreds of coupons each week. Load them all just in case. | |
document.querySelectorAll('.js-load-to-card').forEach(button => button.click()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sets": [ | |
{ | |
"name": "rabbit", | |
"sad": "https://i.imgur.com/qickpZA.jpg", | |
"happy": "https://i.imgur.com/STeEP2W.jpg" | |
}, | |
{ | |
"name": "dog", | |
"sad": "https://i.imgur.com/PYNvUnA.jpg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html#migrating-from-react.proptypes | |
# I didn't feel like downloading their codeshift. | |
# | |
# in all files in current directory, replace: | |
# import React, {Component, PropTypes} from 'react'; | |
# | |
# with: | |
# import React, {Component} from 'react'; | |
# import PropTypes from 'prop-types'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo Cleaning files.. | |
rm -r test CONTRIBUTING.md .travis.yml package.json Gruntfile.js bower.json demo.html | |
echo "# README" > README.md | |
echo Done |
NewerOlder