Skip to content

Instantly share code, notes, and snippets.

View Riiiad's full-sized avatar
🎯
Focusing

Riad Zejnilagic Trumic Riiiad

🎯
Focusing
View GitHub Profile
@ErHaWeb
ErHaWeb / README.md
Last active March 15, 2024 19:04
TYPO3 Auto-Installation Bash scripts to install and remove v10, v11, v12, v13 and dev

TYPO3 Auto-Installation

Since I need a TYPO3 test environment from time to time, I use these bash scripts for the automatic installation and removal of TYPO3. The installation script currently supports TYPO3 versions 10, 11, 12, 13 and dev.

Installation

I have stored the scripts under:

~/.shellscripts/typo3/

I use the following aliases:

@calien666
calien666 / newContentElement.php
Created May 6, 2022 07:28
New TYPO3 content element generator with ddev command
<?php
// place as .ddev/scripts/newContentElement.php
/**
* Markus Hofmann
* 07.07.21 15:39
* typo3-default-sitepackage
*/
$classLoader = require __DIR__.'/../../vendor/autoload.php';
@nijicha
nijicha / install_nodejs_and_yarn_homebrew.md
Last active January 30, 2024 12:14
Install NVM, Node.js, Yarn via Homebrew
@bradtraversy
bradtraversy / npmcrashcourse.txt
Last active April 13, 2024 04:54
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
@zeuxisoo
zeuxisoo / gist:980174
Created May 19, 2011 04:15
How to use git diff to patch file

Create patch file

git diff --no-prefix > [path file name]

Apply path file

patch -p0 < [path file name]