Skip to content

Instantly share code, notes, and snippets.

@extratone
Created January 28, 2023 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save extratone/8bffc3ec136b5007070b168d1a9953db to your computer and use it in GitHub Desktop.
Save extratone/8bffc3ec136b5007070b168d1a9953db to your computer and use it in GitHub Desktop.
My Aviation-specific TextExpander Snippet Group.
Snippet Expansion Description
airnav https://www.airnav.com/airport/%filltext:name=ICAO:width=4:default=% Construct an AirNav airport information page URL by ICAO.
flightradar24 https://apps.apple.com/app/id382233851 App Store share URL for Flightradar 24.
avshare https://app.textexpander.com/public/c5feb65737639a9c13d184dcf6d983ab Share the public URL to this Snippet Group :)
ifassistant https://apps.apple.com/us/app/in-flight-assistant/id1180642964 App Store share URL for In-Flight Assistant.
ifoperations https://apps.apple.com/us/app/in-flight-operations/id1448204117 App Store share URL for In-Flight Operations.
ifvmap https://ifvarb.com/liveflightmap.php?callsign=%filltext:name=Callsign:width=6:default=FDXV%&apikey=c57949-5f6fd2-b8ae49-f88722-e0211b Construct a IFVARB Live Flight Map URL.
liveatc https://www.liveatc.net/search/?icao=%filltext:name=ICAO:width=4:default=% Construct a LiveATC.net URL by ICAO.
skyvector https://skyvector.com/airport/%filltext:name=IATA:width=3:default=% Construct a SkyVector airport URL by IATA (3 characters) code.
tz `#! /bin/bash /* Enter a time using 24H. 1:30pm is 13:30 */ ENTERTIME=%filltext:name=Hour:width=2%:%filltext:name=Minute:width=2% timezones=( America/Los_Angeles America/Chicago Europe/Dublin ) for zone in ${timezones[@]} do TZ=$zone date -jf %H:%M %z $ENTERTIME $(date +%z) +%H:%M %Z; done` Convert time in multiple timezones.
vpl http://skyvector.com/?fpl=%pasteboard Construct a SkyVector flight plan URL from a series of waypoints on the system clipboard.
Snippet Expansion Description
airnav https://www.airnav.com/airport/%filltext:name=ICAO:width=4:default=% Construct an AirNav airport information page URL by ICAO.
flightradar24 https://apps.apple.com/app/id382233851 App Store share URL for Flightradar 24.
avshare https://app.textexpander.com/public/c5feb65737639a9c13d184dcf6d983ab Share the public URL to this Snippet Group :)
ifassistant https://apps.apple.com/us/app/in-flight-assistant/id1180642964 App Store share URL for In-Flight Assistant.
ifoperations https://apps.apple.com/us/app/in-flight-operations/id1448204117 App Store share URL for In-Flight Operations.
ifvmap https://ifvarb.com/liveflightmap.php?callsign=%filltext:name=Callsign:width=6:default=FDXV%&apikey=c57949-5f6fd2-b8ae49-f88722-e0211b Construct a IFVARB Live Flight Map URL.
liveatc https://www.liveatc.net/search/?icao=%filltext:name=ICAO:width=4:default=% Construct a LiveATC.net URL by ICAO.
skyvector https://skyvector.com/airport/%filltext:name=IATA:width=3:default=% Construct a SkyVector airport URL by IATA (3 characters) code.
tz #! /bin/bash /* Enter a time using 24H. 1:30pm is 13:30 */ ENTERTIME=%filltext:name=Hour:width=2%:%filltext:name=Minute:width=2% timezones=( America/Los_Angeles America/Chicago Europe/Dublin ) for zone in ${timezones[@]} do TZ=$zone date -jf %H:%M %z $ENTERTIME $(date +%z) +%H:%M %Z; done Convert time in multiple timezones.
vpl http://skyvector.com/?fpl=%pasteboard Construct a SkyVector flight plan URL from a series of waypoints on the system clipboard.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment