Skip to content

Instantly share code, notes, and snippets.

@mikeyp
mikeyp / tidal.lua
Created January 31, 2022 17:55
Control Tidal with Hammerspoon
local function togglePlayPause()
hs.applescript([[
tell application "System Events"
tell process "TIDAL"
click menu item 0 of menu "Playback" of menu bar 1
end tell
end tell
]])
end
@mikeyp
mikeyp / keybase.md
Created October 4, 2019 16:54
keybase verification

Keybase proof

I hereby claim:

  • I am mikeyp on github.
  • I am mikey_p (https://keybase.io/mikey_p) on keybase.
  • I have a public key ASAgV94YdqtQYImyx-wLC26un9olZsODy9fs_BIenRbNKgo

To claim this, I am signing this object:

<?php
namespace Drupal\waiting_queue\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Command\Command;
use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
use Drupal\Console\Core\Style\DrupalStyle;
use Drupal\Console\Annotations\DrupalCommand;
<?php
class WaitingQueueSignalHandler {
/**
* Flag indicating that a restart is necessary.
*
* @var bool
*/
protected $rebootRequired = FALSE;
/**
server {
listen [::]:6789;
listen 6789;
server_name unifi.shomeyabuild.space;
access_log /var/log/nginx/unifi-access.log;
error_log /var/log/nginx/unifi-error.log;
location / {
gzip on;
server {
listen [::]:8080;
listen 8080;
server_name unifi.shomeyabuild.space;
access_log /var/log/nginx/unifi-access.log;
error_log /var/log/nginx/unifi-error.log;
location / {
gzip on;
ts := $(shell /bin/date "+%Y%m%d%H%M%S")
root_domain := example.com
archive_file := ${root_domain}-archive-$(ts)
all: clean generate
clean:
rm -rf *o archive;
rm -rf *o ${root_domain}-archive*.tar.gz;
@mikeyp
mikeyp / mymodule.install
Created March 1, 2017 17:41
Update a Drupal 8 entity definition without uninstall/reinstalling the module.
<?php
/**
* @file
* Install, update and uninstall functions for mymodule.
*/
/**
* Update the schema for my entity.
*/
@mikeyp
mikeyp / instructions.md
Created August 9, 2016 17:17
PHPStorm and Drupal 8

Development

Enabling PHPStorm Support

PHPStorm 8 supports most D8 features including Twig templates, container links, namespaces etc. To enable full support:

  1. Log into the admin section at localhost:8888/user.
  2. Make sure that the following plugins are enabled:
diff --git a/composer.json b/composer.json
index 4aeec9e..244b773 100644
--- a/composer.json
+++ b/composer.json
@@ -11,7 +11,7 @@
"repositories": [
{
"type": "composer",
- "url": "https://packagist.drupal-composer.org"
+ "url": "https://packages.drupal.org/8"