Skip to content
View guilhermeyoshida's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.

Block or report guilhermeyoshida

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. raydium_demo raydium_demo Public

    CLI designed to interact with Raydium AMM pools

    Rust

  2. solana_fast_client solana_fast_client Public

    Support for Transacations and Account Changes on Solana using HTTP3 QUIC using Rust (napi-rs) as a Node.js lib.

    JavaScript

  3. mcp-terraform-assistant mcp-terraform-assistant Public

    An MCP server for managing infrastructure as code using Terraform

    Python 1 2

  4. lli-tokenizer lli-tokenizer Public

    GoLang library for tokenization with OpenAI models

    Rust

  5. nvim.md nvim.md
    1
    ## copy and paste
    2
    - `yy` - Yank (copy) a line
    3
    - `p` - Paste after the cursor
    4
    - `P` - Paste before the cursor
    5
    - `y` - Yank (copy) selected text in visual mode
  6. aes-gcm.ts aes-gcm.ts
    1
    const crypto = require('crypto');
    2
    
                  
    3
    async function encryptData(data: string, secretKey: string): Promise<string> {
    4
        const salt = crypto.randomBytes(16); // 16 bytes
    5
        const nonce = crypto.randomBytes(16); // 16 bytes