Tests how GitHub renders code blocks
Code fence, no language set
```
echo "foo"
```
from unittest.mock import patch | |
import boto3 | |
from botocore.stub import Stubber | |
# create an ssm client | |
ssm = boto3.client("ssm") | |
# create an sqs client | |
sqs = boto3.client("sqs") |
""" | |
Add users to a Mastodon instance list. | |
Uses https://mastodonpy.readthedocs.io/ | |
""" | |
from os import environ | |
from pathlib import Path | |
from mastodon import Mastodon | |
from mastodon.errors import MastodonNotFoundError, MastodonServiceUnavailableError |
DIAGRAMS := $(wildcard *.puml */*puml) | |
SVGS := $(DIAGRAMS:.puml=.svg) | |
PNGS := $(DIAGRAMS:.puml=.png) | |
all: $(SVGS) $(PNGS) | |
%.png: %.puml | |
plantuml -tpng "$<" | |
%.svg: %.puml |
try: | |
# importlib.metadata is present in Python 3.8 and later | |
import importlib.metadata as importlib_metadata | |
except ImportError: | |
# use the shim package importlib-metadata pre-3.8 | |
import importlib_metadata as importlib_metadata | |
try: | |
__version__ = importlib_metadata.version(__package__ or __name__) | |
except importlib_metadata.PackageNotFoundError: |
class Hypermail < Formula | |
desc "Hypermail is a free (GPL) program to convert email from Unix mbox format to html." | |
homepage "http://www.hypermail-project.org/" | |
url "https://github.com/hypermail-project/hypermail/releases/download/v2.4.0/hypermail-2.4.0.tar.gz" | |
sha256 "f97995b9bb1ece888968467cdad05e3daa7662ff3e3a5739e378b4f3adeb26c6" | |
license "GPL-2.0" | |
depends_on "bison" => :build | |
depends_on "gcc" |
flip(inputInt) { | |
return inputInt = 1 - inputInt; | |
} | |
void main() { | |
print(flip(0)); | |
print(flip(1)); | |
} |
from github import Github | |
gh = Github('SET_GITHUB_ACCESS_TOKE_HERE') | |
org = gh.get_organization('SET_ORG_NAME_HERE') | |
repos = org.get_repos() | |
for repo in repos: | |
if repo.archived: |
void main() { | |
Duration duration = new Duration(minutes: 1, seconds: 59, milliseconds: 99); | |
print(secondRounder(duration)); | |
} | |
// Rounds Duration to seconds based on milliseconds | |
// This is semi-equivalent to a non-existing `Duration.ceil(milliseconds)` | |
Duration secondRounder(Duration duration) { | |
int roundedDuration; |