Skip to content

Instantly share code, notes, and snippets.

View neusse's full-sized avatar
🏠
Splunk Engineer

Neusse neusse

🏠
Splunk Engineer
  • Neusse Tech Consulting
  • Seattle, WA
  • 10:38 (UTC -08:00)
View GitHub Profile
@neusse
neusse / rect-starlink-cable-hack.md
Created June 17, 2022 03:46 — forked from darconeous/rect-starlink-cable-hack.md
Hacking the Rectangular Starlink Dishy Cable
@neusse
neusse / btree.py
Created May 8, 2022 17:34 — forked from teepark/btree.py
a pure-python B tree and B+ tree implementation
import bisect
import itertools
import operator
class _BNode(object):
__slots__ = ["tree", "contents", "children"]
def __init__(self, tree, contents=None, children=None):
self.tree = tree
@neusse
neusse / cheatsheet.md
Created September 2, 2021 15:43 — forked from domanchi/cheatsheet.md
[splunk cheatsheet] Splunk snippets, because their syntax is so confusing. #splunk

Splunk Queries

I really don't like Splunk documentation. Why is it so hard to find out how to do a certain action? So this is a cheatsheet that I constructed to help me quickly gain knowledge that I need.

Analysis

Events over time

index="my_log"
This is a Gist of useful Splunk Queries.
@neusse
neusse / docx2md.md
Created April 21, 2020 16:51 — forked from aembleton/docx2md.md
Convert a Word Document into MD

Converting a Word Document to Markdown in One Move

The Problem

A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.

Installing Pandoc

On a mac you can use homebrew by running the command brew install pandoc.

The Solution