Home Software Github Colabs Shell Basics Apis Webscraping Nbdev Javascript Packages Cloud Functions Browser Extensions Path Css Css Animations Fonts Unicode Ascii Javascript Llm Paradigms Protocols Shortcuts Webrtc Websites Windows

Don't Look! I'm changing!

URL Copied

mingw -Sucks powershell - needed but sucks wsl - where its at

#!/bin/bash cd c:/Users/charl/Documents/github/karpatic explorer . code .

import re import sqlite3

def print_sticky_notes(): conn = sqlite3.connect('plum.sqlite') c = conn.cursor() c.execute("SELECT Text FROM Note") rows = c.fetchall() for row in rows: text = re.sub(r'\id.*?\s', '', row[0]) # remove text between '\id' and first space print(text) conn.close()