S3 Static Sites
What this will cover
- Host a static website at S3
- Redirect
www.website.com
towebsite.com
- Website can be an SPA (requiring all requests to return
index.html
) - Free AWS SSL certs
- Deployment with CDN invalidation
# Turn on the simulator screen capture | |
xcrun simctl io booted recordVideo ~/simulator.mov | |
# Convert the iPhone 6s screen shot into a gif: | |
ffmpeg -i ~/simulator.mov -vf scale=320:-1 -r 6 -f gif -y simulator.gif |
What this will cover
www.website.com
to website.com
index.html
)watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache verify && yarn install && yarn start -- --reset-cache |
## Android | |
Active files: 471 | |
Active lines: 56,744 | |
Total commits: 822 | |
Note: Files matching MIME type image, binary has been ignored | |
+----------------+--------+---------+-------+--------------------+ | |
| name | loc | commits | files | distribution (%) | |
Number of lines in a repo:
git ls-files | xargs wc -l
Breakdown of lines in a repo by contributor:
git ls-files | while read f; do git blame -w -M -C -C --line-porcelain "$f" | grep -I '^author '; done | sort -f | uniq -ic | sort -n
find . -iname "*.js" -exec bash -c 'mv "$0" "${0%\.js}.ts"' {} \; |
brew install mongodb
Set up launchctl to auto start mongod
$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
/usr/local/opt/mongodb/
is a symlink to /usr/local/Cellar/mongodb/x.y.z
(e.g., 2.4.9
)
git filter-branch -f --index-filter "git rm -rf --cached --ignore-unmatch FOLDERNAME" -- --all | |
rm -rf .git/refs/original/ | |
git reflog expire --expire=now --all | |
git gc --prune=now | |
git gc --aggressive --prune=now | |
git push --all --force |
Here is one thing you can do. | |
Copy the image you want to multiply. (CtrlA and CtrlC) | |
Make a new 'Black' color layer and click 'add mask'. | |
alt-click the Mask icon, so that you can enter to mask edit mode. | |
Paste your 'multiply' images in the mask (b/w) , and then invert it. | |
You will have a black layer with your multiply material masked. | |
You can adjust opacity of that layer to find best looking image. (30~40%?) | |
If you save it as transparent PNG file, you are done. |