Skip to content

Instantly share code, notes, and snippets.

@Dulani
Dulani / markdown-details-collapsible.md
Created February 12, 2020 19:05 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

A collapsible section containing markdown

Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets
@Dulani
Dulani / stitch_transcript.py
Created June 25, 2020 03:10 — forked from turtlemonvh/stitch_transcript.py
Stitch together AWS Transcribe transcripts, including speaker labels
#!/usr/bin/env python
"""
Stitch multiple files worth of AWS transcripts together.
Does not attempt to match speakers across filesm but does label all speaker changes.
Usage:
python stitch_transcript.py *.mp3.json -o out.txt
See blog post: http://turtlemonvh.github.io/aws-transcribe-for-long-zoom-meetings.html
@Dulani
Dulani / example.md
Created April 7, 2021 02:12 — forked from ericclemmons/example.md
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here
@Dulani
Dulani / THREDDS_Radar_Server_AWS.ipynb
Created January 11, 2023 03:47 — forked from dopplershift/THREDDS_Radar_Server_AWS.ipynb
A Jupyter notebook showing how to use Python to access the NCEI radar archive on Amazon S3 through Unidata's THREDDS server.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Dulani
Dulani / alpine-remove-desktop.sh
Created September 8, 2025 05:51 — forked from eznix86/alpine-remove-desktop.sh
This is the inverse of setup-desktop in Alpine Linux
# copy and paste to /sbin/remove-desktop
#!/bin/sh
PREFIX=
: ${LIBDIR=$PREFIX/lib}
. "$LIBDIR/libalpine.sh"
usage() {
cat <<-__EOF__