- Install and download the free Scriptable app on your iOS device.
- Inside the app, press the "Plus" icon to create a new script
- Paste the content of the JS file into the script
- Place a Scriptable widget on your home screen
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
### Generic Dockerfile demonstrating good practices | |
### Imports | |
# Bad. You risk both the stability and security of your application | |
# You don't know what they might merge into their image or who they may give control of the project | |
# https://twitter.com/b0rk/status/1226856930875932672/photo/1 | |
FROM random-person/golang:latest | |
# Bad-ish. We don't need Ubuntu, it comes with unnecessary bloat |