- to build, same as
$ gulp build
. Includes clean, sourcemap, SASS compilation, autoprefixer.
$ gulp
- to watch changes and compile
$ gulp watch
Directory Structure: | |
└── ./ | |
└── src | |
└── routes | |
├── api | |
│ └── +page.md | |
├── components | |
│ └── +page.md | |
├── concepts |
Directory Structure: | |
└── ./ | |
└── src | |
└── docs | |
├── accent-color.mdx | |
├── adding-custom-styles.mdx | |
├── align-content.mdx | |
├── align-items.mdx | |
├── align-self.mdx |
Directory Structure: | |
└── ./ | |
├── src | |
│ └── content | |
│ └── docs | |
│ └── en | |
│ ├── basics | |
│ │ ├── astro-components.mdx | |
│ │ ├── astro-pages.mdx |
#!/usr/bin/env bash | |
set -eEuo pipefail | |
MARKER_FILE_NAME="${DOCKER_PRUNER_MARKER:-DOCKER-PRUNER-MARKER-FILE}" | |
DOCKER_PATH="${DOCKER_PATH:-/var/lib/docker/overlay2}" | |
function _used_dirs() { | |
for docker_obj in $(docker ps -aq) $(docker image ls -aq); do | |
lowerdir="$(docker inspect "$docker_obj" | jq '.[].GraphDriver.Data.LowerDir' -r)" |
uname -a | |
dpkg --list | egrep -i --color 'linux-image|linux-headers|linux-modules' | awk '{ print $2 }' > kernels.txt | |
grep -v $(uname -r) kernels.txt > kernels_to_delete.txt | |
# Verify current kernal version is not in the list | |
grep $(uname -r) kernels_to_delete.txt | |
cat kernels_to_delete.txt | xargs sudo apt purge -y | |
sudo apt autoremove |
parameters: | |
http.response.debug_cacheability_headers: true | |
twig.config: | |
debug: true | |
auto_reload: true | |
cache: false | |
services: | |
cache.backend.null: | |
class: Drupal\Core\Cache\NullBackendFactory |
# Ignore directories generated by Composer | |
/drush/contrib/ | |
/vendor/ | |
core/ | |
modules/contrib/ | |
themes/contrib/ | |
profiles/contrib/ | |
libraries/ | |
# Ignore paths that contain user-generated content. |
# Original blog post: <https://mnx.io/blog/a-proper-server-naming-scheme/> | |
# Original word list: <http://web.archive.org/web/20091003023412/http://tothink.com/mnemonic/wordlist.txt> | |
# Sample usage: `curl <gist> | tail --lines +4 | shuf | head --lines 1` | |
acrobat | |
africa | |
alaska | |
albert | |
albino | |
album | |
alcohol |
After finding a lot of other posts on the topic that didn't work out for me this one did the trick so I'm reposting for my own sense of self preservation.
Copy the Virtualbox autostart plist template file to your system's LaunchDaemons folder.
sudo cp \
/Applications/VirtualBox.app/Contents/MacOS/org.virtualbox.vboxautostart.plist \