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
# Block common Wordpress paths. | |
RewriteCond %{REQUEST_URI} ^/wp-(.*)? [NC] | |
RewriteRule ^ - [F] |
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 App\Maker; | |
use Symfony\Bundle\MakerBundle\ConsoleStyle; | |
use Symfony\Bundle\MakerBundle\Maker\AbstractMaker; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Bundle\MakerBundle\DependencyBuilder; |
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
id: redirects | |
label: Old article paths. | |
migration_group: content | |
source: | |
plugin: url | |
data_fetcher_plugin: http | |
data_parser_plugin: simple_xml | |
urls: http://kevinquillen.com/atom.xml | |
namespaces: | |
atom: http://www.w3.org/2005/Atom |
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
openssl req -newkey rsa:2048 -x509 -nodes -keyout cert.key -new -out cert.crt -subj /CN=*.docker.localhost -reqexts SAN -extensions SAN -config <(cat /etc/ssl/openssl.cnf <(printf '[SAN]\nsubjectAltName=DNS:*.docker.localhost')) -sha256 -days 3650 |
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); | |
/** | |
* Implements hook_token_info(). | |
*/ | |
function mymodule_token_info() : array { | |
$info['tokens']['node']['custom_year'] = array( | |
'name' => t('Year Field Value'), |
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
#!/bin/sh | |
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'master$'); do | |
if [[ "$(git log $branch --since "12 months ago" | wc -l)" -eq 0 ]]; then | |
# I have to do this because "git log" for me returns current directory contents... not sure why yet. | |
if [[ ${branch} == *".sh" ]]; then | |
continue | |
fi | |
local_branch_name=$(echo "$branch" | sed 's/remotes\/origin\///') |
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 Drupal\harlib_surprise_me\Controller; | |
use Drupal\Core\Controller\ControllerBase; | |
use Drupal\node\Entity\Node; | |
use Symfony\Component\HttpFoundation\JsonResponse; |
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 Drupal\harlib_surprise_me\Controller; | |
use Drupal\Core\Controller\ControllerBase; | |
use Drupal\node\Entity\Node; | |
use Symfony\Component\HttpFoundation\JsonResponse; |
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 ResourceNotFoundController. | |
*/ | |
class ResourceNotFoundController extends ControllerBase { | |
/** | |
* Display the Resource Not Found message. | |
* |
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 Drupal\harlib_open_now\Controller; | |
use Drupal\Core\Controller\ControllerBase; | |
use Symfony\Component\HttpFoundation\JsonResponse; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
use Drupal\Component\Serialization\Json; |
NewerOlder