Acronyme | Définition |
---|---|
Les principes SOLID : | |
• SRP | Single Responsibility Principle |
• OCP | Open/Closed principle |
• LSP | Liskov Substitution Principle (un acronyme féministe, du nom de la mathématicienne Barbara Liskov !) |
• ISP | Interface Segregation Principle (tu vois que ça fait conflit avec "ISP - Internet Service Provider", LAULE) |
• DIP | Dependency Inversion Principle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class RawObjectMapper | |
{ | |
public static function mapObjects(string $targetClassName, object $sourceObject): object | |
{ | |
$sourceClass = \get_class($sourceObject); | |
$targetObject = (new \Doctrine\Instantiator\Instantiator())->instantiate($targetClassName); | |
$setter = \Closure::bind(static function (string $property, $value) use ($targetObject, $targetClassName): void { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --silent "https://symfony.com/doc/current/index.html?$(Get-Random -minimum 0)" | htmlq '.thanks strong:first-child' --text | sed -E 's/ +//g' | php -r "echo trim(file_get_contents('php://stdin'));" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {spawn} from "child_process"; | |
const yarn_path = process.env.npm_execpath; | |
const node_path = process.env.npm_node_execpath; | |
const create_process = function(name, args) { | |
let child = spawn(node_path, [yarn_path, ...args], {stdio: 'inherit'}); | |
child.on('close', (code) => console.log(`child process ${name} exited with code ${code}`)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_TITLE := "\033[32m[%s]\033[0m %s\n" | |
_ERROR := "\033[31m[%s]\033[0m %s\n" | |
obliterate: | |
@printf $(_ERROR) "WARNING" "This will remove EVERYTHING and result into a setup similar to a fresh \"git clone\"." | |
@printf $(_TITLE) "Project" "Stopping & deleting all containers, volumes, etc." | |
@docker-compose down --volumes --remove-orphans --rmi all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# When you run "make full-reset", you see a warning message telling you to | |
# re-run the command with an environment variable if you're sure. | |
# | |
# So to *actually* execute the command, you have to run "make -e RESET=1 full-reset". | |
# Feel free to change the "resetting" scripts as you want. | |
# | |
# These are helper vars to use to have a nicer display for messages | |
_TITLE := "\033[32m[%s]\033[0m %s\n" # Green text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove Windows directories from WSL's PATH | |
export PATH=$(echo $PATH \ | |
| sed 's/:/\n/g' \ | |
| sort -u \ | |
| grep -v -e'/mnt/[a-z]/' \ | |
| sed -z 's/\n/:/g' \ | |
| sed 's/:$//' | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To use the "confirm" target inside another target, | |
# use the " if $(MAKE) -s confirm ; " syntax. | |
mycommand: | |
@if $(MAKE) -s confirm ; then \ | |
execute_your_command_here ; \ | |
fi | |
.PHONY: mycommand | |
# The CI environment variable can be set to a non-empty string, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use it like this: | |
# | |
# $ printf $(_TITLE) "Something in green" "The message" | |
# | |
# This will output something like this: | |
# | |
# [Something in green] The message | |
# | |
# (of course, with proper colors) | |
_TITLE := "\033[32m[%s]\033[0m %s\n" # Green text |
NewerOlder