Skip to content

Instantly share code, notes, and snippets.

@willingc
willingc / reviews.txt
Created November 16, 2024 19:08
Search for reviews done
https://github.com/pulls?q=is%3Apr+reviewed-by%3Awillingc+created%3A%3E2024-01-01+
@willingc
willingc / poc.ipynb
Created November 5, 2024 19:46
napari hub lite proof of concept
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willingc
willingc / cpython_open_docs_prs_core_review.md
Created November 1, 2024 23:38
CPython Open Docs PRs "Awaiting Core Review"

GitHub Pull Requests Search Results

Search Query: label:docs label:"awaiting core review" is:open is:pr

Title URL Created At Labels
gh-126180: Remove getopt and optparse deprecation notices Link 2024-10-31T05:35:32Z docs; awaiting core review; DO-NOT-MERGE
gh-126165: Improve docs of function math.isclose Link 2024-10-31T00:45:05Z docs; awaiting core review; skip news
gh-123832: Adjust socket.getaddrinfo docs for better POSIX compliance Link 2024-10-30T13:16:11Z docs; awaiting core review; skip news
gh-125897: Fix the range function refering to step as a kwarg Link 2024-10-24T22:51:04Z docs; awaiting core review; skip news

GitHub Pull Requests Search Results

Date: 2024-11-01

Search Query: is:pr is:open label:docs

Title URL Created At Labels
gh-126180: Remove getopt and optparse deprecation notices Link 2024-10-31T05:35:32Z docs; awaiting core review; DO-NOT-MERGE
Explain what a DBM database is and point to shelve earlier Link 2024-10-31T02:32:13Z docs; skip issue; awaiting review; skip news
@willingc
willingc / dataviz.md
Created May 10, 2024 20:14
Visualizing Data for Problem Solving
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"dashboard": {
"type": "object",
"properties": {
"multiViews": {
"type": "array",
"items": {
@willingc
willingc / gource.md
Created December 21, 2022 22:27
Gource video of multiple repos

Retro Video Process

Use gource, ffmpeg packages to do the primary work. They can be brew installed.

Basic process

You will take a repo and use gource to generate a log file of timestamps and commits.

Then you can feed that log into gource to render a video of the timeline.

@willingc
willingc / dev-rel-notes.md
Last active January 3, 2022 20:31
DevRel Resources
@willingc
willingc / bash.md
Last active September 5, 2021 17:35
Bash Commands

Use the following syntax to enter Bash commands.

One-Line Command

! is used to execute a one-line command.

For example, use the following to list all files:

! ls -a