Use the gh
CLI to generate a comprehensive weekly development intelligence report that goes far beyond basic commit summaries.
Data Collection:
- All commits from the past week with full diff analysis
- Pull requests created, reviewed, and merged
Use the gh
CLI to generate a comprehensive weekly development intelligence report that goes far beyond basic commit summaries.
Data Collection:
#!/usr/bin/env node | |
import { LinearClient } from "@linear/sdk"; | |
import dotenv from "dotenv"; | |
const README = ` | |
# Linear Team Info Extractor | |
------------------------- | |
Setup: |
I hereby claim:
To claim this, I am signing this object:
function transfer | |
if test (count $argv) -eq 0 | |
echo "No arguments specified. Usage:" | |
echo "transfer /tmp/test.md" | |
echo "cat /tmp/test.md | transfer test.md" | |
return 0 | |
end | |
set tmpfile (mktemp -t transferXXX) |
""" | |
Hacky parse through ESPN's NFL schedule page. | |
""" | |
import pickle | |
import requests | |
from collections import namedtuple | |
from bs4 import BeautifulSoup as bs | |
base_url = 'http://www.espn.com' | |
Stats = namedtuple('Stats', ['home', 'home_val', 'away', 'away_val', 'score']) |