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
# 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 |
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
(function(){ | |
let list=document.querySelectorAll('.event--vote-stars'); | |
let score = 0; | |
for (let i=0,l=list.length;i<l;i++) { | |
let el=list[i]; | |
score+=el.querySelectorAll('a.star.is-selected').length; | |
} | |
console.info(score/list.length); | |
})(); |
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 | |
/** | |
* This file is part of the corahn_rin package. | |
* | |
* (c) Alexandre Rock Ancelet <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source 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
<?php | |
declare(strict_types=1); | |
namespace Tests; | |
use Symfony\Bundle\FrameworkBundle\KernelBrowser; | |
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase as BaseWebTestCase; | |
use Symfony\Component\BrowserKit\Cookie; | |
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; |
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
# Change the current background according to a distant URL. | |
# Needs the "feh" package to work. | |
DISPLAY=:0 XAUTHORITY=$HOME/.Xauthority feh --bg-center http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_natural_color.jpg | |
# Source: https://twitter.com/docteur_klein/status/1130730930031779840 |
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 | |
declare(strict_types=1); | |
/* | |
* (c) Alexandre Rock Ancelet <[email protected]> and Studio Agate. | |
* | |
* Licensed with MIT | |
*/ |
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
docker run \ | |
--name=mysql_host \ | |
-dit -e MYSQL_ROOT_PASSWORD=mysql \ | |
-p 3306:3306 \ | |
mysql:5.7 |
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
RTDIR = ${REQUEST_TRACKER_DIR} | |
echo: | |
@echo "${WOW}" | |
## | |
## RequestTracker | |
## -------------- | |
## |