Skip to content

Instantly share code, notes, and snippets.

View owenblacker's full-sized avatar

Owen Blacker owenblacker

View GitHub Profile
@selfthinker
selfthinker / intentionally-inaccessible.md
Last active October 19, 2025 22:21
Intentionally inaccessible websites

Intentionally inaccessible websites (and apps)

People make intentionally inaccessible websites for various educational purposes: training, empathy, tests, demos, etc. This lists all such websites I am aware of. Please let me know if you know of any others to be added to this list.

website explanations by license last update
Awesome Recipes (from Deque University Demo Sites) (none) Deque (none) ?
Dream Destination (from Deque University Demo Sites) (none) Deque (none) ?
Gefälscht (from Deque University Demo Sites) (none) Deque (none) ?
@benjystanton
benjystanton / accessible-powerpoint-presentations.md
Last active February 19, 2025 14:33
Accessible PowerPoint presentations

Accessible PowerPoint presentations

Make your slides available

  • Share your slides
  • Before the meeting starts ideally
  • Or at the beginning of the presentation
  • So people can follow at their own pace

When speaking

@canwaf
canwaf / Eurovision 2020 Songs.md
Last active February 5, 2024 07:39
Eurovision Songs
@subfuzion
subfuzion / global-gitignore.md
Last active September 4, 2025 23:38
Global gitignore

There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules directory) as well as files that are generated (and regenerated) as artifacts of a build process.

All other files should be in your own global gitignore file:

  • Create a file called .gitignore in your home directory and add any filepath patterns you want to ignore.
  • Tell git where your global gitignore file is.

Note: The specific name and path you choose aren't important as long as you configure git to find it, as shown below. You could substitute .config/git/ignore for .gitignore in your home directory, if you prefer.

@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active May 20, 2025 13:11
Whiteboard Picture Cleaner - Shell one-liner/script to clean up and beautify photos of whiteboards!

Description

This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.

The script is here:

#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"

Results

@tomjn
tomjn / composer.json
Last active January 3, 2016 13:49
Fixes oEmbedding tweets after Twitter's changes in Jan 2014. To use, download by clicking the "Download Gist" button below, upload to your WordPress site and activate. You will then need to re-save any posts edited or published since the 17 January.
{
"name": "cftp/twitteroembed-hotfix",
"description": "Fixes oEmbedding tweets after Twitter's changes in Jan 2014",
"license": "GPL-2.0+",
"type": "wordpress-plugin",
"authors": [
{
"name": "Tom J Nowell",
"email": "[email protected]",
"homepage": "http://tomjn.com"
@SeanJA
SeanJA / GIFEncoder.class.php
Last active November 8, 2021 17:39
dynamic animated gif clock
<?php
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Formerly known as:::
:: GIFEncoder Version 2.0 by László Zsidi, http://gifs.hu
::
:: This class is a rewritten 'GifMerge.class.php' version.
::
:: Modification: