Skip to content

Instantly share code, notes, and snippets.

View cmj's full-sized avatar
💭
📠

cmj cmj

💭
📠
View GitHub Profile
@cmj
cmj / shell-timer-examples.md
Created January 1, 2025 17:48
Bash script timer examples

Bash builtin timer

SECONDS=0
sleep 3.45
echo "$SECONDS seconds"

3 seconds

Bash builtin epoch seconds and arithmetic

start=$EPOCHSECONDS
@cmj
cmj / tw-search.py
Last active December 26, 2024 05:53
Twitter search example with twikit
import sys
import asyncio
from twikit import Client
search = ' '.join(sys.argv[1:])
limit = 4
client = Client(language='en-US') #, proxy='http://127.0.0.1:8888') # charles proxy
client.load_cookies('cookies.json')
async def main():
@cmj
cmj / tv-guide.sh
Last active December 25, 2024 04:25
Terminal TV-Guide
#!/bin/bash
# TV-Guide output to a terminal
# https://www.tvguide.com/listings/zip/98101-seattle-wa/
# open devtools -> network, filter by 'start=' and grab numeric provider value from url
provider=9100000649
# find current 30min interval in %s
d=$(date -I'seconds')
#start=$(dateutils.dseq --compute-from-last ${d:0: -10}0 -30m 00:00:00 -f '%s' | head -1) # incorrect seconds value
@cmj
cmj / 20241211-200902.md
Last active December 12, 2024 06:26
Birdwatch (community notes) for an old @JoeBiden tweet. A note 6 months later about Hunter is approved.

NOT MISLEADING

There was no context needed. Presidents of the United States are legally allowed to pardon those who they deem worthy of being pardoned. He is within his authority.

https://constitution.congress.gov/browse/essay/artII-S2-C1-3-1/ALDE_00013316/

Whine about your opinions on RTs.

NOT MISLEADING

Trump has been convicted of 34 felonies and a NY Judge stated he committed rape by every legal definitions.

@cmj
cmj / sounding-img.sh
Last active December 10, 2024 03:56
Select and print PacNW WRF-GFS 4 km Sounding graphic to Kitty term
#!/bin/bash
# Print PacNW WRF-GFS 4 km Forecast Sounding graphic to Kitty term
PS3="Choose station location ('enter' for list, 'q' to quit): "
options=(
"Comox, BC"
"Victoria, BC"
"Vancouver, BC"
"Kelowna, BC"
"Hoquiam, WA"
@cmj
cmj / sounding.sh
Last active December 10, 2024 03:55
Print PacNW WRF-GFS 4 km Forecast Sounding graphic to Kitty term
#!/bin/bash
# Print PacNW WRF-GFS 4 km Forecast Sounding graphic to Kitty term
# with pretty-printed graph
station=$1
default=ksea
default() {
#echo "no station selected, default is $default"
station=$default
@cmj
cmj / gettrump.md
Created December 7, 2024 03:36
gettrump domains

bigettrump.com
cantgettrump.com
dontforgettrump.com
dontgettrump.cm
dontgettrumpedagain.com
dontgettrumped.com
dontgettrumped.org
dontgettrumped.us
dontgettrumpe.us
dontgettrumpled.com \

{
"data": {
"audioSpace": {
"metadata": {
"rest_id": "1MnxnDvYzmyGO",
"state": "Running",
"title": "The Conversation",
"media_key": "28_1863063554318114816",
"created_at": 1733023940041,
"started_at": 1733023941371,
@cmj
cmj / tv.md
Last active November 28, 2024 06:09
Twitter TV app feed
@alecsbutt (ᴀʟᴇᴄ 🍃)

This fight scene goes crazy 💪💥 https://t.co/D8PJRF7hYG
╰─> https://video.twimg.com/amplify_video/1861845168116187136/vid/avc1/1280x720/0QCRR8v2nYUBaHVm.mp4

@PapiTrumpo (il Donaldo Trumpo)

I was NOT expecting this response from Mexico...😳😂😂😂 https://t.co/C2ItyQhtxC
╰─> https://video.twimg.com/ext_tw_video/1861465870976909312/pu/vid/avc1/1280x720/tMJRxvmiTyng8ofe.mp4

@C__Herridge (Catherine Herridge)

In the fall of 2023 I brought CBS News a proposed interview with Elon Musk. Executives at the network said the interview couldn’t be done live, rather it had to be pre-recorded so they had the ability to edit the final product viewers would see. “We don't know what [@ElonMusk]… https://t.co/0LOEKohJdj \

@cmj
cmj / birdwatch-fetch.sh
Created November 27, 2024 14:58
Fetch community notes from tweet
#!/bin/bash
# Fetch Birdwatch Notes (Community Notes) from tweet by id
# Requires Twitter account, 2 parameters from header
# direct tweet url or id as input
# ex ./birwatch-fetch.sh https://x.com/elonmusk/status/1838337595970847103
x_csrf_token=''
auth_token=''
####