Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Oct 12, 2023
2 parents cca782c + 24a8648 commit 3ce6039
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 24 deletions.
6 changes: 0 additions & 6 deletions .codespellrc

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,19 @@ jobs:
uses: "DavidAnson/markdownlint-cli2-action@v9"
with:
globs: "**/*.md"

links:
name: "Links"
runs-on: "ubuntu-22.04"
timeout-minutes: 10
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v4"
-
name: "Run Lychee"
uses: "lycheeverse/[email protected]"
with:
args: "--verbose --no-progress --require-https './**/*.md'"
output: "${{ runner.temp }}/lychee/out.md"
fail: true
21 changes: 5 additions & 16 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: "Spelling"

on: # yamllint disable-line rule:truthy
on:
pull_request: null
push:
branches:
Expand All @@ -17,25 +17,14 @@ concurrency:
cancel-in-progress: true

jobs:
spell_check:
name: "文A Spell check"
typos_check:
name: "文A Typos"
runs-on: "ubuntu-22.04"
timeout-minutes: 1
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v3"
-
name: "Cache pip"
uses: "actions/cache@v3"
with:
path: "~/.cache/pip"
key: "${{ runner.os }}-pip-codespell"
-
name: "Install codespell"
run: |
pip install --user 'codespell>=2.2'
uses: "actions/checkout@v4"
-
name: "Search for misspellings"
run: |
"$(python -m site --user-base)/bin/codespell"
uses: "crate-ci/typos@master"
3 changes: 3 additions & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/%7B%7B
^https://www\.skillshare\.com/
^https://twitter\.com/
4 changes: 2 additions & 2 deletions src/posts/keep-it-simple-stupid.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ github: 'https://github.com/conedevelopment/bite-sized-a11y/blob/master/src/post

In my opinion, accessibility is an area that rewards simplicity the best. On the web, you can solve the same thing in many ways. If you design with [WCAG](https://www.w3.org/WAI/standards-guidelines/wcag/), you will have an opinionated guide to form your creative thinking.

In many scenarios, you can choose to create a straightforward solution. Leave a carousel from your design and use a simple grid, eliminating the JS dependency and complexity. Usually, what is simple - in an HTML way - is accessible.
In many scenarios, you can choose to create a straightforward solution. Leave a carousel out of your design and use a simple grid, eliminating the JS dependency and complexity. Usually, what is simple - in an HTML way - is accessible.

The [Motherfucking Website](http://motherfuckingwebsite.com/) is an excellent example of this methodology called [KISS](https://en.wikipedia.org/wiki/KISS_principle). It is an example site that shows how complex today’s web development can sometimes be because of us.
The [Motherfucking Website](https://motherfuckingwebsite.com/) is an excellent example of this methodology called [KISS](https://en.wikipedia.org/wiki/KISS_principle). It is an example site that shows how complex today’s web development can sometimes be because of us.

Of course, life is more complex. We often don’t have the freedom to decide, but designing and creating with a mentality that focuses on simplicity will spare you and your users a lot.

0 comments on commit 3ce6039

Please sign in to comment.