Skip to content

Instantly share code, notes, and snippets.

@rsrg
rsrg / mvc.pl
Created November 9, 2017 13:35 — forked from sciurius/mvc.pl
wxPerl program showing MVC design pattern
#!/usr/bin/perl
use strict;
use warnings;
# An example of trivial wxPerl application using a
# Model-View-Controller architecture.
# Copyright 2014 Johan Vromans. All rights reserved.
# License: Artistic.
@rsrg
rsrg / Kicad circular layout
Created September 4, 2018 09:33 — forked from vlad-ivanov-name/Kicad circular layout
Kicad circular layout
"""
Usage: open pcbnew and select Tools — Scripting console
Enter the following and press enter:
execfile("path/to/script.py")
Script settings can be adjusted below
"""
import pcbnew
import sys
@rsrg
rsrg / rtlsdr-to-gqrx.c
Last active September 26, 2019 07:23 — forked from DrPaulBrewer/rtlsdr-to-gqrx.c
rtlsdr-to-gqrx SDR file format converter
#include <complex.h>
#include <stdio.h>
#include <stdlib.h>
// rtlsdr-to-gqrx Copyright 2014 Paul Brewer KI6CQ
// License: GNU GPL 3.0
//
// IQ file converter for Software Defined Radio Programs rtl_sdr, gqrx
// from rtl_sdr recording format -- interleaved unsigned char
// to gqrx/gnuradio .cfile playback format -- complex64
@rsrg
rsrg / diagrams.md
Created March 14, 2023 07:02 — forked from blackcater/diagrams.md
Markdown Diagrams

Diagrams

Markdown Preview Enhanced supports rendering flow charts, sequence diagrams, mermaid, PlantUML, WaveDrom, GraphViz, Vega & Vega-lite, Ditaa diagrams. You can also render TikZ, Python Matplotlib, Plotly and all sorts of other graphs and diagrams by using Code Chunk.

Please note that some diagrams don't work well with file exports such as PDF, pandoc, etc.

Flow Charts

This feature is powered by flowchart.js.