| description | Tools for interacting with GitHub Actions CI/CD workflows |
|---|---|
| context | fork |
This skill provides tools for working with GitHub Actions workflows, including checking build status, retrieving logs, and analyzing CI failures.
| https://danluu.com/web-bloat/ | |
| https://danluu.com/octopress-speedup/ | |
| https://tonsky.me/blog/pwa/ | |
| https://hpbn.co/ | |
| https://idlewords.com/talks/website_obesity.htm | |
| https://blog.codinghorror.com/an-exercise-program-for-the-fat-web/ | |
| https://developers.google.com/speed | |
| https://mobile.twitter.com/danluu/status/1252792626257866754 (Google AV1 announcement) | |
| https://developers.google.com/search/blog#speed-and-google-search (1st link from Google Pagespeed Insights, "Read the latest Google Search Central blog posts about performance & speed." | |
| https://calendar.perfplanet.com/2020/the-mythical-fast-web-page/ |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| ;;- -*-scheme-*- | |
| ;;; rabbit compiler | |
| ;;- This is the source code to the RABBIT Scheme compiler, by Guy Steele, | |
| ;;- taken from the Indiana Scheme repository and annotated by me, Darius | |
| ;;- Bacon. I converted it from all-uppercase to all-lowercase and | |
| ;;- reindented it with Emacs for better readability. I've added the | |
| ;;- comments starting with either ;- or ;*. Other comments are by Steele. | |
| ;;- The ;- comments were things I'd figured out, while ;* denoted things | |
| ;;- for me to look into. (Sometimes I didn't bother to type in the answer |
| Write a program that does what it’s supposed to do | |
| Write idiomatic code | |
| Debug a program that you wrote | |
| Debug a program someone else wrote | |
| Debug the interaction between a system you wrote and one you didn’t | |
| File a good bug report | |
| Modify a program you didn’t write | |
| Test a program you wrote | |
| Test a program you didn’t write | |
| Learn a new programming language |
You got your hands on some data that was leaked from a social network and you want to help the poor people.
Luckily you know a government service to automatically block a list of credit cards.
The service is a little old school though and you have to upload a CSV file in the exact format. The upload fails if the CSV file contains invalid data.
The CSV files should have two columns, Name and Credit Card. Also, it must be named after the following pattern:
YYYYMMDD.csv.
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
| /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump | grep -B6 bindings:.*: |
| find $(manpath | tr ':' '\n') -iname '*.1' | xargs cat | (LC_CTYPE=C tr -C '[:alnum:]-_' '\n') | egrep '^--[\-_[:alnum:]]+$' | sort | uniq -c | sort -n |