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 'react-native'; | |
import 'jest-enzyme'; | |
import Adapter from 'enzyme-adapter-react-16'; | |
import Enzyme from 'enzyme'; | |
import { global } from 'core-js'; | |
import { JSDOM } from 'jsdom'; | |
const jsdom = new JSDOM(); | |
const { window } = jsdom; |
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
/* | |
Instructions: | |
1) Download this script to a folder | |
2) Install axios | |
2.1) npm install axios | |
2.2) yarn add axios | |
3) Run: "node repoMove.js" to see usage | |
*/ | |
const fs = require('fs'); |
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
title GitFlow | |
participant "<color #orange>develop</color>" as develop | |
lifelinecolor develop #orange | |
participant "<color #purple>feature/MP-02</color>" as feature/MP-02 | |
lifelinecolor feature/MP-02 #purple | |
participant "<color #purple>feature/MP-01</color>" as feature/MP-01 | |
lifelinecolor feature/MP-01 #purple |
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
const fs = require('fs'); | |
/* | |
File contains the output of: | |
"aws ec2 describe-security-groups --filters Name=vpc-id,Values=<vpc_id> --output json" | |
This could also be an AWS SDK invocation | |
*/ | |
const data = fs.readFileSync('./data.json'); | |
const json = JSON.parse(data); |
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
grep -ohe '\${var\.[0-9a-zA-Z_.]*}' ./*.tf | sort --unique |