- https://www.who.int/health-topics/disability#tab=tab_1
- https://www.accessibility.com/complete-report-2020-website-accessibility-lawsuits
- https://arstechnica.com/tech-policy/2019/10/accessibility-the-future-and-why-dominos-matters/
- https://www.applause.com/blog/what-dominos-case-means-for-accessibility
- https://www.levelaccess.com/winn-dixie-decision-florida-sets-landmark-precedent-digital-accessibility/
- https://www.bigdropinc.com/blog/risks-non-ada-compliant-website/
- https://go.applause.com/rs/539-CKP-074/images/dont-leave-accessibility-to-chance.pdf
- https://www.rivkinradler.com/publications/judge-weinstein-deep-dive-website-accessibility-lawsuits/
- https://www.lflegal.com/2020/03/bank-of-america-at-20/
- https://www.lflegal.com/faqs/#Structured-Negotiation-Questions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Virtual memory settings. | |
# Kernel documentation: https://docs.kernel.org/admin-guide/sysctl/vm.html. | |
# Arch zram: https://wiki.archlinux.org/title/zram#Optimizing_swap_on_zram. | |
# Gaming tuning: https://pastebin.com/fwzW9whL. | |
# PopOS tuning: https://github.com/pop-os/default-settings/pull/163. | |
# MaxPerformanceWizard (MPW) https://gitlab.com/cscs/maxperfwiz/-/blob/master/maxperfwiz. | |
boot.kernel.sysctl = { | |
# Tunes how aggressively kernel evicts memory pages until a specific amount of free memory is left for your active working set | |
## Sweet spot for gaming is 125-200, near 200 makes kswapd swap too aggressive |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# import an MS SQL .bak backup file to an MS SQL database, then export all | |
# tables to csv. run this script as `import.sh <filename>`. It expects to be | |
# run in the same directory as the backup file. | |
# this is only tested on my mac (OS X Catalina). I tried to stick to posix, but | |
# It will probably require some tweaking for you. I hope it gives a general | |
# sense of what you need to do at the very least. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
class CategoryIndex < Page | |
def initialize(site, base, dir, category) | |
@site = site | |
@base = base | |
@dir = dir | |
@name = 'index.html' | |
self.process(@name) | |
self.read_yaml(File.join(base, '_layouts'), 'category_index.html') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An example Jekyll generator. Utilizes the new plugin system. | |
# | |
# 1. Make a _plugins directory in your jekyll site, and put this class in a file there. | |
# 2. Upon site generation, version.html will be created in your root destination with | |
# # the version of Jekyll that generated it | |
module Jekyll | |
class VersionReporter < Generator | |
safe true |