Skip to content

Instantly share code, notes, and snippets.

@fm-labs
fm-labs / aws_regions.json
Created May 11, 2023 14:43 — forked from atyachin/aws_regions.json
AWS Regions / Datacenters Geo Locations
[
{
"code": "us-east-1",
"region": "US East",
"city": "Virginia",
"lat": 38.9940541,
"long": -77.4524237,
"country": "US"
},
{
@fm-labs
fm-labs / airports.json
Created June 14, 2021 07:49 — forked from tdreyno/airports.json
JSON data for airports and their locations
This file has been truncated, but you can view the full file.
[
{
"code": "AAA",
"lat": "-17.3595",
"lon": "-145.494",
"name": "Anaa Airport",
"city": "Anaa",
"state": "Tuamotu-Gambier",
"country": "French Polynesia",
"woeid": "12512819",
# 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
# 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:
@fm-labs
fm-labs / git_pull_overwrite_local_changes
Created January 3, 2017 08:59
Git pull overwrite local changes
#!/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