This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| #!/usr/bin/env python | |
| """ | |
| Use byzanz to create a GIF screencast of a specific window. | |
| Required tools: | |
| sudo apt-get install byzanz x11-utils xdotool | |
| A tip: use an extra-long duration (-d 100), record your shot, and use | |
| gimp to shorten the duration of the last frame. You need to rename the layer | |
| from "Frame 123 (100000 ms) (combine)" to "Frame 123 (1000 ms) (combine)". |
| <# | |
| ================ | |
| PATCHEXTRACT.PS1 | |
| ================= | |
| Version 1.25 Microsoft MSU Patch Extraction and Patch Organization Utility by Greg Linares (@Laughing_Mantis) | |
| This Powershell script will extract a Microsoft MSU update file and then organize the output of extracted files and folders. | |
| Organization of the output files is based on the patch's files and will organize them based on their archicture (x86, x64, or wow64) | |
| as well as their content-type, ie: resource and catalog files will be moved to a JUNK subfolder and patch binaries and index files will |
| license: gpl-3.0 | |
| height: 420 | |
| border: no |
| <?xml version="1.0" encoding="UTF-16"?> | |
| <Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> | |
| <RegistrationInfo> | |
| <Date>2018-12-20T17:30:53.9213074</Date> | |
| <Author>Carlin Scott</Author> | |
| <URI>https://gist.github.com/carlin-q-scott</URI> | |
| </RegistrationInfo> | |
| <Triggers> | |
| <EventTrigger> | |
| <Enabled>true</Enabled> |
| /* | |
| * Matching regular expressions by boost. | |
| */ | |
| #include <iostream> | |
| #include <string> | |
| #include <boost/regex.hpp> // require "boost-regex-dev" | |
| using namespace std; | |
| /* |
| var OFF = 0, WARN = 1, ERROR = 2; | |
| module.exports = exports = { | |
| "env": { | |
| "es6": true | |
| }, | |
| "ecmaFeatures": { | |
| // env=es6 doesn't include modules, which we are using | |
| "modules": true |
| license: gpl-3.0 |