A Pen by molotov.bliss on CodePen.
Tooll3 from Still
-
Clone the Repo
-
Download VS Studio, in the Installer click ".net Desktop Application development", on the right side should appear ".net 4.7.1" (or higher). Click it.
<canvas id="canvas"></canvas> |
<html> | |
<body> | |
<head></head> | |
<h1 style="color:#00ff69">molotov.bliss</h1> | |
<hr> | |
<h1>BACKGROUND</h1> | |
<hr> |
Useful Commands
If a lot of changes has happened upstream you can replay your local changes on top of these, this is done with rebase, e.g.:
git fetch upstream
git rebase upstream/master
This will fetch changes and re-apply your commits on top of these.
<FilesMatch \.php$> | |
<If "%{HTTP_COOKIE} =~ /XDEBUG_SESSION/"> | |
SetHandler "proxy:fcgi://10.0.2.2:9172" | |
</If> | |
<Else> | |
SetHandler "proxy:fcgi://10.0.2.2:9072" | |
</Else> | |
ProxyFCGISetEnvIf "true" PATH_INFO "%{reqenv:SCRIPT_NAME}" | |
ProxyFCGISetEnvIf "true" SCRIPT_FILENAME "/var/www/vhosts/magento/pub%{reqenv:SCRIPT_NAME}" | |
</If> |
(function () { | |
var scenes = window.xeogl.scenes; | |
for (var sceneId in scenes) { | |
if (scenes.hasOwnProperty(sceneId)) { | |
scenes[sceneId].input.on("mouseclicked", function (coords) { | |
var hit = this.scene.pick({ // "this" points to the xeogl.Input component | |
canvasPos: coords, | |
pickSurface: true | |
}); | |
console.log("=================== DEBUG PICKED ======================="); |
Often, when writing an XSLT file, you’ll want to test it quickly, without contacting a FileMaker Server or otherwise accessing the rest of the world. On Linux and OS X, you can use the command-line utility, ‘xsltproc’, to run XSLT programs quickly:
xsltproc transform.xsl input.xml
This applies the stylesheet in the file transform.xml to the XML in input.xml, and writes the output to your terminal. You can instead write the output to a file:
xsltproc transform.xsl input.xml > output.xml
- Add the innodb options to the
warden/environments/magento2.base.yml
docker-compose YML file. - Restart warden environment
warden env down && warden sync stop && warden env up -d && warden sync start
- Import the .sql file with
warden db import
. - Remove options & restart warden enviornment once import completed.
innodb_buffer_pool_size
: Will cache frequently read data
#!/usr/bin/env bash | |
[[ ! ${WARDEN_COMMAND} ]] && >&2 echo -e "\033[31mThis script is not intended to be run directly!" && exit 1 | |
source "${WARDEN_DIR}/utils/env.sh" | |
WARDEN_ENV_PATH="$(locateEnvPath)" || exit $? | |
loadEnvConfig "${WARDEN_ENV_PATH}" || exit $? | |
pushd "${WARDEN_DIR}" >/dev/null | |
# docker exec -ti <CONTAINER_ID> php -d xdebug.remote_autostart=on -d xdebug.remote_host=host.docker.internal bin/magento | |
containerid=$(docker ps -qf "name=debug") |