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
# Assumes you have an `upstream bsky-pds` somewhere; you can replace `http://bsky-pds` with the URL to your PDS | |
# if you'd prefer | |
server { | |
listen 443 ssl; | |
listen 443 quic; | |
# Replace with your base handle domain(s) | |
# This will act as a fallback, so if you have anything else hosted on subdomains they won't be affected | |
server_name *.pds.example.com; |
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
<register> | |
<dim>24</dim> | |
<dimIncrement>4</dimIncrement> | |
<dimName>PIO0</dimName> | |
<name>PIO0[%s]</name> | |
<description>Generic I/O configuration for PIO, port 0.</description> | |
<addressOffset>0x000</addressOffset> | |
<fields> | |
<field> | |
<name>FUNC</name> |
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
/* Declaration file for js-binary */ | |
declare module "js-binary" { | |
export class Data { | |
public constructor(capacity: number); | |
private _buffer: Buffer; | |
private _length: number; | |
public appendBuffer(data: Buffer): void; | |
public writeUInt8(value: number): void; | |
public writeUInt16(value: number): void; |
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
[ { type: 'identifier', match: 'The' }, | |
{ type: 'identifier', match: 'quick' }, | |
{ type: 'identifier', match: 'brown' }, | |
{ type: 'identifier', match: 'dog' }, | |
{ type: 'identifier', match: 'jumped' }, | |
{ type: 'identifier', match: 'over' }, | |
{ type: 'identifier', match: 'the' }, | |
{ type: 'identifier', match: 'lazy' }, | |
{ type: 'identifier', match: 'rabbit' }, | |
{ type: 'operator', match: '=' }, |