This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blinker==1.8.2 | |
click==8.1.7 | |
Flask==3.0.3 | |
itsdangerous==2.2.0 | |
Jinja2==3.1.4 | |
MarkupSafe==2.1.5 | |
Werkzeug==3.0.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
trans-to-blog.py | |
~~~~~~~~~~~~~~~~ | |
A simple script that, given a podcast transcript file (in any format), will use OpenAI | |
to parse the transcript and create a blog post in Markdown format based on the | |
contents of the transcript. | |
Requirements | |
~~~~~~~~~~~~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# | |
# This script will remove the metata from all video files in the given | |
# directory. | |
# | |
# @requires ffmpeg | |
# @usage ./strip-video-metadata.sh </path/to/folder> | |
# Loop through all files in the directory | |
for f in "$1"/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for context: https://twitter.com/rdegges/status/1447066985213292544?s=20 | |
import csv | |
ORIG_FILE = 'contacts.csv' | |
NEW_FILE = 'contacts-clean.csv' | |
PHONE_NUMBER_INDEX = 41 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ip: '8.8.8.8', | |
location: { | |
country: 'US', | |
region: 'California', | |
city: 'Mountain View', | |
lat: 37.40599, | |
lng: -122.078514, | |
postalCode: '94043', | |
timezone: '-07:00', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); | |
const okta = require("okta"); | |
const app = express(); | |
app.use(okta()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "hi"; | |
test.call(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client.listUsers(u => { | |
console.log(user); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PS1=' | |
👻 %{$purple%}%n%{$reset_color%} in %{$limegreen%}%~%{$reset_color%}$(ruby_prompt_info " with%{$fg[red]%} " v g "%{$reset_color%}")$vcs_info_msg_0_%{$orange%} λ%{$reset_color%} ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"catchAll": "false", | |
"disposable": "false", | |
"dns": "OK", | |
"emailAddress": "[email protected]", | |
"free": "false", | |
"mxs": [ "mail.protonmail.ch" ], | |
"smtp": "OK", | |
"validFormat": "OK" | |
} |
NewerOlder