I hereby claim:
- I am lwcooper on github.
- I am lwcooper (https://keybase.io/lwcooper) on keybase.
- I have a public key ASBOd0fVzm3ieUt-evUwErujkcSrpJonojg3uifrjGjPwgo
To claim this, I am signing this object:
document.documentElement.className = document.documentElement.className.replace(/(\s|^)no-js(\s|$)/, '$1js$2'); |
.img-wrapper { | |
width: 300px; | |
height: 150px; | |
overflow: hidden; | |
position: relative; | |
float: left; | |
margin: 20px; | |
} | |
img { |
/** | |
* Grid | |
*/ | |
.hero, | |
.main { | |
box-sizing: border-box; | |
} | |
/* Content faking */ |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
I hereby claim:
To claim this, I am signing this object:
function fetchUsersFromCognito (options) { | |
const defaults = { | |
UserPoolId: AWS_COGNITO_USER_POOL_ID | |
}; | |
const params = Object.assign({}, defaults, options); | |
return new Promise((resolve, reject) => { | |
client.listUsers(params, (error, data) => { | |
if (error) { | |
reject(error); |
// You can run this script as part of your build step in your package.json | |
// eg: | |
// ... | |
// "scripts": { | |
// "build": "node get-content.js && hugo" | |
// } | |
// ... | |
var fs = require('fs'); //to access filewrite | |
var toMarkdown = require ('to-markdown'); //to convert HTML to Markdown |
# Remove all images | |
docker rmi $(docker images -a -q) | |
# Stop and remove all containers | |
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) | |
# Remove volumes | |
docker volume ls | |
docker volume rm volume_name |
I hereby claim:
To claim this, I am signing this object:
{/* A <Switch> looks through its children <Route>s and | |
renders the first one that matches the current URL. */} | |
<Switch> | |
<Route path="/about"> | |
<About /> | |
</Route> | |
<Route path="/users"> | |
<Users /> | |
</Route> | |
<Route path="/"> |