Skip to content

Instantly share code, notes, and snippets.

View Pengor's full-sized avatar
🍮
Doing flantastic

Drew M Johnson Pengor

🍮
Doing flantastic
View GitHub Profile
@Pengor
Pengor / drew.omp.json
Last active May 21, 2025 19:33
Oh My Posh theme for PowerShell and Bash
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"palette": {
"arch": "#1793d1",
"debian": "#d70751",
"git": "#ffceca",
"mid-gray": "#9e9e9e",
"modified": "yellow",
"path": "#585858",
"path_old": "#91ddff",

Keybase proof

I hereby claim:

  • I am pengor on github.
  • I am pengor (https://keybase.io/pengor) on keybase.
  • I have a public key ASD-gDXTeNMPQl-O1CJeVaCbg3RAElpV75cmEhrWOWBt-go

To claim this, I am signing this object:

@Pengor
Pengor / IteratedToTimed.py
Created April 8, 2015 03:27
Converts iterated data to timed data. For use with OpenBCI output files.
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("in_file", type=str)
parser.add_argument("out_file", type=str)
args = parser.parse_args()
inFile = open(args.in_file,'r')
outFile = open(args.out_file,'w')