Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| #!/bin/sh | |
| # | |
| # For each ref, validate the commit. | |
| # | |
| # - It disallows deleting branches without a /. | |
| # - It disallows non fast-forward on branches without a /. | |
| # - It disallows deleting tags without a /. | |
| # - It disallows unannotated tags to be pushed. |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| { | |
| "monolog": { | |
| "title": "Monolog log file", | |
| "description": "Monolog log format", | |
| "url": "https://github.com/Seldaek/monolog", | |
| "regex": { | |
| "default": { | |
| "pattern": "\\[(?P<timestamp>.*)\\] (?P<logger>\\w+).(?P<level>\\w+): (?P<message>.+) (?P<context>[\\[\\{].*[\\]\\}]) (?P<extra>[\\[\\{].*[\\]\\}])$" | |
| } | |
| }, |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; | |
| // Manually authenticate user in controller | |
| $token = new UsernamePasswordToken($user, null, 'main', $user->getRoles()); | |
| $this->get('security.token_storage')->setToken($token); | |
| $this->get('session')->set('_security_main', serialize($token)); |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.