Skip to content

Instantly share code, notes, and snippets.

View martenmatrix's full-sized avatar
👀

Marten martenmatrix

👀
View GitHub Profile
@martenmatrix
martenmatrix / convert-empty-username-to-null.py
Created March 30, 2024 16:55
Replace empty usernames in a exported firefox password csv with a null string to allow the import of the file into safari
import csv
with open('YOURPASSWORDFILE.csv', 'r') as passwords:
reader = csv.reader(passwords)
headers = next(reader)
rowsToExport = []
for row in reader:
username = row[1]
if username == "":
@martenmatrix
martenmatrix / main.go
Last active March 18, 2024 11:59
Check for available places in exercise
package main
import (
"fmt"
stineapi "github.com/martenmatrix/stine-api/cmd"
"strings"
"time"
)
func playSound() {