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
[ | |
{ | |
"code": "us-east-1", | |
"region": "US East", | |
"city": "Virginia", | |
"lat": 38.9940541, | |
"long": -77.4524237, | |
"country": "US" | |
}, | |
{ |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"code": "AAA", | |
"lat": "-17.3595", | |
"lon": "-145.494", | |
"name": "Anaa Airport", | |
"city": "Anaa", | |
"state": "Tuamotu-Gambier", | |
"country": "French Polynesia", | |
"woeid": "12512819", |
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
# Desktop entry for FileZilla Pro | |
# | |
# Copy to | |
# ~/.local/share/applications | |
[Desktop Entry] | |
Name=FileZilla Pro | |
GenericName=FTP client | |
GenericName[da]=FTP-klient | |
GenericName[de]=FTP-Client |
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
# Read more about setting it up | |
# https://medium.com/@ljmocic/deploying-react-application-to-aws-s3-using-github-actions-85addacaeace | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: |
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 | |
# Pull files from git repo and force overwrite of local changes | |
# http://stackoverflow.com/questions/1125968/how-to-force-git-pull-to-overwrite-local-files | |
# | |
# git fetch [remote] [local-branch] | |
# git reset --hard [remote]/[remote-branch] | |
git fetch origin master | |
git reset --hard origin/master |