This file contains hidden or 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
<table id="did-method-table-curated" class="simple"> | |
<thead> | |
<tr> | |
<th>DID Method</th> | |
<th>Registry</th> | |
<th>Contact</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |
This file contains hidden or 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 | |
/** | |
* Documents used, in order of precedence. | |
* | |
* * https://www.w3.org/TR/did-resolution/ (Draft 2025-08-03) | |
* * https://www.w3.org/TR/did-1.1/ (Draft 2025-07-31) | |
* * https://www.w3.org/TR/cid-1.0 (Recommendation 2025-05-15) | |
* * https://www.w3.org/TR/did-1.0/ (Recommendation 2022-07-19) TODO: replace with did-core | |
* | |
* The interfaces here are for sake of example, and are not intended to be the final implementation. |
This file contains hidden or 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
@view-transition { | |
navigation: auto; | |
} | |
::view-transition-group(*) { | |
animation-duration: 0.3s; | |
} |
This file contains hidden or 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/bash | |
# recommend running this as "./rectorize | tee rectorize.log" in order to commit the log to git as well | |
RECTOR_VERSION='^2.0.15' | |
function main () { | |
if [[ -f rector.php ]]; then | |
echo "rector.php already exists -- move or delete it first" >&2 | |
exit 1 |
This file contains hidden or 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\Services; | |
// Based on https://github.com/BluePsyduck/symfony-process-manager/tree/master | |
use App\Services\Interfaces\ProcessManagerInterface; | |
use Closure; |
This file contains hidden or 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\Services; | |
use DateTime; | |
use Psr\Log\AbstractLogger; | |
use Psr\Log\LogLevel; | |
use RuntimeException; |
This file contains hidden or 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 volume create --driver local -o o=bind -o type=none -o device="$YOUR_DIRECTORY" $VOLUME_NAME |
This file contains hidden or 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
//////////////// | |
module My\Stuff\MyModule; // implies “namespace My\Stuff\MyModule” | |
export class Foo { } | |
export function foo() { } | |
function bar() { } // not exported | |
export string $message = “your ad here”; |
This file contains hidden or 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
#NoEnv ; recommended for performance and compatibility with future | |
autohotkey releases. | |
#UseHook | |
#InstallKeybdHook | |
#SingleInstance force | |
SendMode Input |
This file contains hidden or 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
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
set show-all-if-ambiguous on | |
set completion-ignore-case on |
NewerOlder