Podcasts marked as (new)
are still in review, and might be removed if they don't deliver.
- SmartLess - Jason Bateman, Sean Hayes, Will Arnett
- Conan O’Brien Needs A Friend - Team Coco & Earwolf
(new)
The Problem With Jon Stewart
#!/usr/bin/env python3 | |
import json | |
import re | |
import sys | |
from urllib.parse import quote as urlquote | |
from urllib.request import urlopen | |
def main(): |
import Levenshtein | |
from rapidfuzz.distance import Indel | |
sentence_pairs = ( | |
("The sky is blue.", "It looks like rain."), | |
("I love reading books.", "My favorite genre is fantasy."), | |
("She enjoys playing piano.", "He prefers the guitar."), | |
("Coffee wakes me up.", "Tea relaxes me."), | |
("We are going to the park.", "They are staying home."), | |
("The dog barked loudly.", "The cat quietly meowed."), |
import re | |
import sys | |
if len(sys.argv) == 1: | |
sys.exit("Provide the log file as an argument") | |
ips = {} | |
filter = re.compile(r"fwd=\"([\d.]+)\"") | |
threshold = 10 | |
# Copy from Heroku settings |
from glob import glob | |
import csv | |
import os | |
import re | |
import sys | |
# Pass a path as an argument, the script will go through all .csv files included. | |
if len(sys.argv) < 2: | |
sys.exit("Missing path argument") | |
path = os.path.abspath(sys.argv[1]) |
#!/usr/bin/env python3 | |
import argparse | |
import datetime | |
import json | |
import urllib.parse as url_parse | |
import urllib.request as url_request | |
from collections import defaultdict | |
api_token = "TOKEN" |
#! /usr/bin/env bash | |
# This script requires git-cinnabar and jq installed | |
# https://github.com/glandium/git-cinnabar | |
# https://jqlang.github.io/jq/download/ | |
# | |
# If you pass a path to the script, it will search for locale clones in that folder. | |
# If that's not available, it will clone the remote repository for the locale. | |
clones_path=$1 |
import json | |
import sys | |
from urllib.request import urlopen | |
# Get translations | |
translations_url = "https://raw.githubusercontent.com/mozilla-l10n/nimbus-l10n/main/.github/storage/windows_bg_notifications_2023.json" | |
try: | |
r = urlopen(translations_url) | |
translations = json.load(r)["translations"] | |
except Exception as e: |
#! /usr/bin/env python3 | |
import json | |
from urllib.parse import quote as urlquote | |
from urllib.request import urlopen | |
def main(): | |
query = """ | |
{ |
#!/usr/bin/env python3 | |
""" | |
This script is used to check top locales for Fenix in specific countries, | |
and try to find a best match in Pontoon locales. | |
It expects a CSV file stored as "android_data.csv" from this query | |
https://sql.telemetry.mozilla.org/queries/89302 | |
""" |