- 6 slices bacon chopped
- 6 boneless skinless chicken thighs
- Salt and pepper
- 1 tablespoon salted butter
- 2 cloves of garlic, minced
- 3 ounces baby spinach
- 1 cup heavy whipping cream
- 1/2 ounce parmesan cheese, grated (about 1/2 cup)
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
| let UserContext = React.createContext(); | |
| class App extends React.Component { | |
| state = { | |
| user: null, | |
| setUser: user => { | |
| this.setState({ user }); | |
| } | |
| }; |
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
| // π₯ Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('β'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } |
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
| // π₯ Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('β'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } |
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
| import jsdom from 'jsdom'; | |
| const doc = jsdom.jsdom('<!doctype html><html><body></body></html>'); | |
| global.document = doc; | |
| global.window = doc.defaultView; |
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://github.com/webpack-contrib/sass-loader/issues/40 | |
| $bootstrap-sass-asset-helper: true; | |
| @import "~bootstrap-sass/assets/stylesheets/bootstrap"; |
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
| #!/bin/bash | |
| ## Install Mysql | |
| yum install mysql-server | |
| service mysql-start | |
| grep 'Temporary Password' |
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
| { | |
| "name": "MyProject", | |
| "scripts": { | |
| "docs": "./node_modules/.bin/jsdoc src -r -d docs" | |
| } | |
| } |
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
| date.timezone = "Europe/London" | |
| expose_php = 0 | |
| extension = phar.so | |
| extension = fileinfo.so | |
| extension = intl.so | |
| suhosin.executor.include.whitelist = phar | |
| [opcache] | |
| zend_extension=opcache.so |