Skip to content

Instantly share code, notes, and snippets.

@rowild
rowild / install-aimeos-typo3-dist-with-composer.md
Last active June 11, 2020 11:29
Setup the aimeos TYPO3 distribution 19.4 (as of June 2020) via command line and composer

The aimeos/aimeos-typo3-dist v19.4 composer installation is buggy. Here is a work-around:

command line

composer create-project typo3/cms-base-distribution:~9.5 ./dev.aimeos.test
cd ./dev.aimeos.test

Then, add the following to the "composer.json" on the root level:

open http://www.google.com/?q=$(sysctl -n machdep.cpu.brand_string | awk '{FS=" " ; print $1 "+" $3 "+" $3}')+site:ark.intel.com
# or, on a Linux machine
xdg-open http://www.google.com/?q=$(fgrep 'model name' /proc/cpuinfo | head -n 1 | awk '{FS=" " ; print $5 "+" $6}')+site:ark.intel.com
@rowild
rowild / machine.js
Last active April 8, 2021 19:10
Generated by XState Viz: https://xstate.js.org/viz
const editorMachine = Machine({
id: 'editor',
initial: 'idle',
context: {
// The item we want to edit
itemToEdit: { title: '', content: '' }
},
states: {
idle: {
enter: {
@rowild
rowild / MKV_and_MP4_video_conversion_notes.md
Last active January 31, 2023 13:09 — forked from pjobson/MKVToolNix_notes.md
Notes for creating, editing, and extracting MKV files.

MKVToolNix Notes

Various notes for using MKVToolNix.

Probe a Video

mkvinfo lists all elements contained in an MKV container file.

mkvinfo container.mkv
@rowild
rowild / pimcore-setup-with-ddev.sh
Created February 27, 2023 07:52
Picore setup with ddev
# Sources:
# https://github.com/pimcore/demo
# https://www.fastlane-design.de/ddev-pimcore-install/
# https://stackoverflow.com/questions/58763897/is-there-a-working-pimcore-nginx-config-for-ddev
mkdir pimcore-project
cd ./pimcore-project
ddev config --project-type=php --php-version 8.1 --doc-root=web --create-docroot