Skip to content

Instantly share code, notes, and snippets.

@netdoggy
netdoggy / ANSI.md
Created August 9, 2022 19:48 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@netdoggy
netdoggy / sdrsharp2sdrpp.py
Created August 8, 2021 21:32
sdrsharp to sdrpp frequency manager list converter
import xml.etree.ElementTree as ET
import json
tree = ET.parse('frequencies.xml')
root = tree.getroot()
freq_list = {}
for child in root:
name = child.find("Name").text
group = child.find("GroupName").text