This file contains 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
#!/bin/bash | |
# NAME: dropshadow.sh | |
# VERSION: | |
# AUTHOR: (c) 2017 Taylor Thurlow | |
# DESCRIPTION: - adds transparent dropshadow to images (e.g. screenshots) | |
# - moves them to predefined screenshot folder | |
# - notifies the user | |
# FEATURES: | |
# DEPENDENCIES: imagemagick suite | |
# |
This file contains 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
This file is used to be tracked and identified by https://lrc-maker.github.io |
This file contains 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
# WARNING: This locking algorithm is not yet production-tested and should not | |
# be used in production without further testing. Testing on a local machine | |
# seems to suggest that things are working as expected, but I am anticipating | |
# that there will be edge cases that I have missed. If you find one then feel | |
# free to contact me. | |
# | |
# The goal of this class is to model and provide a distributed (Redis-backed) | |
# multiple-reader, multiple-writer lock. | |
# | |
# The lock is read-preferring, meaning that readers will be able to read |