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
| /* | |
| * Spacing helpers for consistent margin and padding on elements. Uses rems (not px!) | |
| * | |
| * With the current default settings, generates classes like: | |
| * .mts = margin-top: 0.5rem | |
| * .phl = padding-left: 2rem; padding-right: 2rem; // h = horizontal = left/right | |
| * | |
| * Inspired by: | |
| * https://github.com/mrmrs/css-spacing | |
| * https://getbootstrap.com/docs/4.0/utilities/spacing/ |
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
| # If "Disk Utility" can't erase a demaged disk and throw errors, like these: | |
| # a) "-69888: Couldn't unmount disk"; | |
| # b) "Couldn't modify partition map". | |
| # You can repair disk (if it is damaged partially, just by a program error, while changing partition map of a disk in) by | |
| # FULL ERASING OF A DISK - you can do that ONLY in A COMMAND LINE, using "diskutil" command (on OS X) | |
| # 1. Firstly you must get path of a drive in a system, like this: | |
| diskutil list | |
| # Than complete erasing of a disk: | |
| diskutil eraseDisk free EMPTY /dev/disk4 |
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
| #!/bin/sh | |
| set -e | |
| if [ "$(elm --version)" != "0.19.1" ]; then | |
| echo "Globally installed elm 0.19.1 is required" | |
| exit 1 | |
| fi | |
| export packages=~/.elm/0.19.1/packages |
OlderNewer