View nostr_relays.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains 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
nostr.mutinywallet.com | |
relay.snort.social | |
nostr.wine | |
nos.lol | |
relay.damus.io | |
nostr-pub.wellorder.net |
View s3_upload.py
This file contains 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 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 |
View nostr_upload_file.py
This file contains 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
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) |
View flask_files.py
This file contains 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
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' |
View nostr_post.py
This file contains 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 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: |
View AAInflight.py
This file contains 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 requests | |
import time | |
from geopy.distance import geodesic | |
last_coords = None | |
speed = None | |
time_btwn_change = 1 | |
check_freq = 10 | |
#https://server.ad.logic-prod.viasat.io/afr.php?zoneid=95¶meters=%7B%22origin%22:%22KMCO%22,%22destination%22:%22KDFW%22%7D&fid=N132AN-KMCO-KDFW-2022-03-05T01:56:12Z&fleetType=&isUSDomestic=true&guid=6f3003e9-9c27-11ec-927e-06df78a0305b&subtag=&source=https:%2F%2Fwww.aainflight.com%2F&origin=https:%2F%2Fwww.aainflight.com&li=0 | |
#https://www.aainflight.com/iptv/channelList | |
#https://www.aainflight.com/iptv/programGuide/grid?channelId=12%2C13%2C14%2C15%2C16%2C17%2C19%2C24%2C26%2C27%2C34%2C35&startDateTime=20220305T0300Z&endDateTime=20220305T0700Z |
View aircraft_type_fuel_consumption_rate.json
This file contains 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
{ | |
"EA50": { | |
"name": "Eclipse 550", | |
"galph": 76, | |
"category": "VLJ" | |
}, | |
"LJ31": { | |
"name": "Learjet 31", | |
"galph": 202, | |
"category": "Light" |
View acas.json
This file contains 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
{"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": |
View closest_airport_openflights.py
This file contains 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
def get_closest_airport(latitude, longitude): | |
import csv | |
from geopy.distance import geodesic | |
plane = (latitude, longitude) | |
header = ["id", "name", "city", "country", "iata", "icao", "lat", "lng", "alt", "tz", "dst", "tz_db", "type", "source"] | |
with open('airports.dat', encoding='utf-8') as airport_dat: | |
airport_dat_reader = csv.DictReader(filter(lambda row: row[0]!='#', airport_dat), header) | |
for airport in airport_dat_reader: | |
airport_coord = float(airport['lat']), float(airport['lng']) | |
airport_dist = float((geodesic(plane, airport_coord).mi)) |
View ADSBXv1Response.json
This file contains 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
{ | |
"ac": [ | |
{ | |
"postime": "1615518192631", | |
"icao": "AA733B", | |
"reg": "N7723E", | |
"type": "B737", | |
"wtc": "2", | |
"spd": "426.8", | |
"altt": "0", |
NewerOlder