This was inspired by the concise works of jeff's Skinner Box
Primary Article to begin with:
Lets make sure that we have all the sheilds up!
| // please check https://docs.netlify.com/configure-builds/environment-variables/#declare-variables for most up to date info | |
| // this was created before those docs existed | |
| process.env = { | |
| /** | |
| * | |
| * AUTOMATICALLY SET BY NETLIFY. IMMUTABLE! | |
| * docs: https://www.netlify.com/docs/continuous-deployment/#environment-variables | |
| * | |
| */ |
| #!/usr/bin/env bash | |
| ### Bash Environment Setup | |
| # http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
| # https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html | |
| # set -o xtrace | |
| set -o errexit | |
| set -o errtrace | |
| set -o nounset | |
| set -o pipefail |
| .flex { | |
| display: flex; | |
| .align-center { | |
| margin: auto; | |
| align-self: center; | |
| } | |
| .align-left { | |
| margin-right: auto; |
| "use strict"; | |
| // Load plugins | |
| const autoprefixer = require("autoprefixer"); | |
| const browsersync = require("browser-sync").create(); | |
| const cp = require("child_process"); | |
| const cssnano = require("cssnano"); | |
| const del = require("del"); | |
| const eslint = require("gulp-eslint"); | |
| const gulp = require("gulp"); |
| # SOURCES: | |
| # http://unix.stackexchange.com/a/122188 | |
| # https://natelandau.com/my-mac-osx-bash_profile | |
| # https://jonsuh.com/blog/bash-command-line-shortcuts | |
| # https://news.ycombinator.com/item?id=8159771 | |
| # .bashrc: https://gist.github.com/evdokimovm/67e4fcd938af98528aa108574626e522 | |
| # --------------------------- | |
| # ETC | |
| # --------------------------- |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Description: Updates all metadata in the Tautulli database after moving Plex libraries. | |
| # Author: /u/SwiftPanda16 | |
| # Requires: plexapi, requests | |
| from plexapi.server import PlexServer | |
| import requests |
| <# | |
| Note: Eliminate `-WhatIf` parameter to get action be actually done | |
| Note: PS with version prior to 4.0 can't delete non-empty folders | |
| #> | |
| Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force -WhatIf |
This was inspired by the concise works of jeff's Skinner Box
Primary Article to begin with:
Lets make sure that we have all the sheilds up!
| // install | |
| // npm i gulp-cache gulp-imagemin imagemin-pngquant imagemin-zopfli imagemin-mozjpeg imagemin-giflossy -f | |
| // node node_modules/jpegtran-bin/lib/install.js | |
| // node node_modules/gifsicle/lib/install.js | |
| // node node_modules/zopflipng-bin/lib/install.js | |
| // node node_modules/mozjpeg/lib/install.js | |
| // node node_modules/giflossy/lib/install.js | |
| // node node_modules/pngquant-bin/lib/install.js |
| ---------------------------------------------------------------------------- | |
| -- Copy this section of the file to a file called MyMedia.lua, and enter | |
| -- your media's information, using the examples shown below. | |
| ---------------------------------------------------------------------------- | |
| local LSM = LibStub("LibSharedMedia-3.0") | |
| -- START of the section that you should be editing | |
| -- | |
| -- NB: any line beginning with "--" is ignored - so the lines |