A comprehensive guide to the patterns that actually move the needle
Reverse-engineered from 2000+ hours of LLM-assisted coding
Export of my own styles for the Stylus chrome extension.
Sure! Here's a large, complex README.md file example that includes:
If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
| #!/bin/bash | |
| set -e | |
| show_help() { | |
| echo "Usage: ./test.sh <REPO_OWNER> <REPO_NAME> <WORKFLOW_ID> <COMMIT_SHA>" | |
| echo "" | |
| echo "This script polls the status of a GitHub Actions workflow run." | |
| echo "" | |
| echo "Arguments:" |
| <?xml version="1.0"?> | |
| <!DOCTYPE module PUBLIC | |
| "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" | |
| "https://checkstyle.org/dtds/configuration_1_3.dtd"> | |
| <!-- | |
| Checkstyle configuration that checks the Google coding conventions from Google Java Style | |
| that can be found at https://google.github.io/styleguide/javaguide.html | |
| Checkstyle is very configurable. Be sure to read the documentation at |
| /* | |
| This DataviewJS View helps to add functionality to a Dataview Table. | |
| THIS IS A BETA RELEASE - there are bugs and its not feature-complete | |
| Version: v0.6.0 | |
| Given a Dataview Query, this view will | |
| - Execute the query | |
| - Extract the headers/columns of the result | |
| - Render filters to adjust the Dataview table results | |
| - Render the table results, filtering and re-rendering on filter changes |
| .canvas-node-container:has(.diamond) { | |
| transform:rotate(42deg); | |
| overflow: visible; | |
| contain: none; | |
| position: absolute; | |
| width: 150px; | |
| height: 150px; | |
| } | |
| .canvas-node-content:has(.diamond) { |
| #!/usr/bin/env bash | |
| # TODO convert to a role in https://github.com/serpro69/ansible-collection-devexp | |
| # installs https://virtualenv.pypa.io/en/latest/index.html | |
| # requires pipx - https://pypi.org/project/pipx/ | |
| # pipx install virtualenv | |
| # pip install --user --no-deps virtualenvwrapper # use no-deps to skip installing virtualenv via pip since it's installed via pipx | |
| # export |
| #!/usr/bin/env bash | |
| # TODO convert to a role in https://github.com/serpro69/ansible-collection-devexp | |
| # https://guake.readthedocs.io/en/latest/user/installing.html#install-from-pypi | |
| is_not_root() { | |
| [ "${EUID:-$(id -u)}" -ne 0 ] | |
| } |