Skip to content

Instantly share code, notes, and snippets.

View Jxck-S's full-sized avatar
🏠
Working from home

Jack Sweeney Jxck-S

🏠
Working from home
  • Student
  • Orlando Florida
View GitHub Profile
@Jxck-S
Jxck-S / acas.json
Created April 7, 2021 00:00
ADSBExchange ACAS List of JSONs of a single aircraft
{"hex":"abc515","type":"adsb_icao","flight":"ENY3725 ","r":"N858AE","t":"E135","alt_baro":11150,"alt_geom":11550,"gs":268.0,"track":44.24,"baro_rate":-1024,"squawk":"5237","emergency":"none","category":"A2","lat":32.660910,"lon":-97.306469,"nic":8,"rc":186,"seen_pos":0.3,"version":2,"nic_baro":1,"nac_p":9,"nac_v":1,"sil":3,"sil_type":"perhour","gva":2,"sda":2,"alert":0,"spi":0,"mlat":[],"tisb":[],"messages":45207249,"seen":0.0,"rssi":-6.4,"acas_ra":{"utc":"2021-04-05 00:07:16.0","unix_timestamp":1617581236.02,"df_type":17,"bytes":"E2C00006A9DFE4","ARA":"1100000","RAT":"0","MTE":"0","RAC":"0000","advisory_complement":"","advisory":"Level Off","TTI":"01","threat_id_hex":"aa77f9"}}
{"hex":"abc515","type":"adsb_icao","flight":"ENY3725 ","r":"N858AE","t":"E135","alt_baro":11125,"alt_geom":11525,"gs":268.0,"track":44.24,"baro_rate":-1088,"squawk":"5237","emergency":"none","category":"A2","lat":32.662354,"lon":-97.304787,"nic":8,"rc":186,"seen_pos":0.3,"version":2,"nic_baro":1,"nac_p":9,"nac_v":1,"sil":3,"sil_type":
@Jxck-S
Jxck-S / GoogleMapNearestAirport.py
Last active March 3, 2023 09:45
Lookup nearest airport from coordinates using Google Maps. Not a very good way much better options and better data.
#Scraped this for airports.dat from https://openflights.org/data.html use haversine formula to calculate distance from each airport, lowest is closest.
#Or use https://rapidapi.com/sujayvsarma/api/ourairport-data-search?endpoint=apiendpoint_157e1886-2798-46cf-83e6-b71c2cb76273 from https://ourairports.com/data/
import googlemaps
import json
import configparser
config = configparser.ConfigParser()
config.read('config.ini')
def getAirport(rank_by, latitude, longitude):
nrby_key = config.get('GOOGLE', 'NEARBYSEARCHKEY')
@Jxck-S
Jxck-S / flask_files.py
Created May 9, 2023 01:11
Flask file server, post or get files, requires api key for post. Can be used for nostr photo/video sharing.
from flask import Flask, request, send_from_directory
from werkzeug.utils import secure_filename
import os
import time
import threading
app = Flask(__name__)
# Set the upload folder and allowed extensions
app.config['UPLOAD_FOLDER'] = 'uploads'
@Jxck-S
Jxck-S / nostr_upload_file.py
Created May 9, 2023 01:16
Upload image/video to various nostr focused sharing platforms
def nostr_build_upload(file_name):
"""Uploads an image/video to nostr build and returns the URL of it."""
import requests
url = 'https://nostr.build/api/upload/ios.php'
with open(file_name, 'rb') as f:
files = {'fileToUpload': f}
data = {'submit': 'Upload'}
response = requests.post(url, files=files, data=data)
@Jxck-S
Jxck-S / s3_upload.py
Created May 9, 2023 01:18
Upload a file/image to AWS S3 bucket, meant for use with nostr for image hosting.
import boto3
def upload(file_name, bucket, aws_access_key, aws_access_key_sec):
s3 = boto3.client('s3', aws_access_key_id=aws_access_key, aws_secret_access_key=aws_access_key_sec)
s3.upload_file(file_name, bucket, file_name)
url = f"https://{bucket}.s3.amazonaws.com/{file_name}"
return url
@Jxck-S
Jxck-S / nostr_post.py
Last active May 15, 2023 15:25
Post to nostr from Python, with helpful info on how to post a photo
import json
import ssl
import time
from nostr.event import Event
from nostr.relay_manager import RelayManager
from nostr.message_type import ClientMessageType
from nostr.key import PrivateKey
def nostr_post(note, private_key, image_url=None):
if image_url:
@Jxck-S
Jxck-S / VIR136.json
Created July 3, 2023 19:48
Logging of inflight data from Virgin Atlantic Flight on Board from the IFE API. VIR136 on G-VLIB
{
"info": {
"departBaggageId": "MCO",
"departureId": "KMCO",
"departureLat": 28.429443359375,
"departureLon": -81.3088912963867,
"destBaggageId": "LHR",
"destinationId": "EGLL",
"destinationLat": 51.4667015075684,
"destinationLon": -0.449999988079071,
@Jxck-S
Jxck-S / VirginAtlanticIFELogger.py
Created July 3, 2023 19:50
Logs flight data from the IFE API's on a Virgin Atlantic Flight
import requests, json, time
from datetime import datetime
l_flight = {'info': {}, 'updates': []}
log_keys = ['groundSpeedKnots',
'headWindSpeedKnots',
'mach',
'pitch',
'roll',
'airSpeedKnots',
'altitudeFeet',
@Jxck-S
Jxck-S / aircraft_type_fuel_consumption_rate.json
Last active July 5, 2023 09:08
Fuel consumption rates by ICAO type of aircraft
{
"EA50": {
"name": "Eclipse 550",
"galph": 76,
"category": "VLJ"
},
"LJ31": {
"name": "Learjet 31",
"galph": 202,
"category": "Light"
@Jxck-S
Jxck-S / nostr_relays.csv
Last active July 12, 2023 05:08
A list of popular/free nostr relays that my plane-notify program can use for posting.
URL FAILS
wss://nostr.mutinywallet.com 0
wss://relay.snort.social 0
wss://nostr.wine 0
wss://nos.lol 0
wss://relay.damus.io 0