I hereby claim:
- I am mikestaub on github.
- I am mikestaub (https://keybase.io/mikestaub) on keybase.
- I have a public key ASBiXIvpy5rbGiops51gxgs7QdTOJTu9tFjymrqp9bEIUQo
To claim this, I am signing this object:
| # use https://app.ilograph.com to edit and view this document | |
| # tutorials are here https://www.ilograph.com/docs/editing/tutorial/#making-some-simple-changes | |
| # author: Mike Staub <[email protected]> | |
| # Lexicons are here: https://rdmurphy.github.io/atproto-openapi-types | |
| # Learn more about atproto.com here: https://github.com/atproto-developers | |
| description: |- | |
| Architecture and sequence diagrams for the ATprotocol and Bluesky social app network. Generated from source code and whitepaper reference. https://arxiv.org/pdf/2402.03239 | |
| resources: |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Triple LLM Inference Demo</title> | |
| <style> | |
| .container { | |
| display: flex; | |
| flex-direction: column; |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: 'CloudFormation template for SSE with Lambda Function URL' | |
| Resources: | |
| LambdaExecutionRole: | |
| Type: AWS::IAM::Role | |
| Properties: | |
| AssumeRolePolicyDocument: | |
| Version: '2012-10-17' | |
| Statement: |
| model: groq | |
| clients: | |
| - type: openai-compatible | |
| name: groq | |
| api_base: https://api.groq.com/openai/v1 | |
| api_key: REPLACE_ME | |
| - type: openai | |
| api_key: REPLACE_ME | |
| api_base: https://api.openai.com/v1 |
| const fetchRssFeed = async () => { | |
| const response = await fetch( | |
| "https://hnrss.org/frontpage?points=100&count=10" | |
| ); | |
| const text = await response.text(); | |
| const items = text.split("<item>").slice(1); | |
| return items.map((item) => { | |
| let title = item.match(/<title>(.*?)<\/title>/)[1]; |
| resources: | |
| - id: User | |
| name: User | |
| - id: WalletSoftware | |
| name: Wallet Software | |
| - id: BitcoinNetwork | |
| name: Bitcoin Network | |
| - id: MinerNodes | |
| name: Miner Nodes |
| Verifying my Blockstack ID is secured with the address 1FPXrj8zt93w9cXBCacSLhpXaiJJMx4i3y https://explorer.blockstack.org/address/1FPXrj8zt93w9cXBCacSLhpXaiJJMx4i3y |
I hereby claim:
To claim this, I am signing this object:
| 9a9710fbd36210e32d814af5877986b1c5f04ca222bffbea8c66a49a9a93d53a6fc63dcad794fde17abc103bf3c19f1cfcafd50e78240f224200f4180f8e461d |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| windowSize: [1280, 720], | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', |