Moon Parameter
    𝕏
    Testing
    🎯

    Testing

    Tags
    Date
    2023/11/09

    This is my first post. Hello World.

    fibs :: [Integer]
    fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
    x=−b±b2−4ac2ax =\frac{-b \pm \sqrt{b^2 - 4ac}}{2a}x=2a−b±b2−4ac​​
    image
    💡
    Yoooo call out

    This is an inline equation E=mc2E = mc^2E=mc2 right here

    Well, here's another code block:

    provider "aws" {  region = "us-west-1"}
    resource "aws_s3_bucket" "my_bucket" {
      bucket = "my-test-bucket"
      acl    = "private"
    }
    The quote is here
    graph LR
        A[Start] --> B{Decision}
        B -->|Yes| C[Do Something]
        B -->|No| D[Do Something Else]
        C --> E[End]
        D --> E
    graph LR
        A[Start] --> B{Decision}
        B -->|Yes| C[Do Something]
        B -->|No| D[Do Something Else]
        C --> E[End]
        D --> E

    Here's some text

    Big heading

    Yup

    A Smaller Heading

    Oh yes

    An even smaller heading

    function memoizedFibonacci(): (n: number) => number {
        const cache: { [key: number]: number } = {};
        function fib(n: number): number {
            if (n <= 1) return n;
            if (cache[n]) return cache[n];
            cache[n] = fib(n - 1) + fib(n - 2);
            return cache[n];
        }
        return fib;}
    // Usage
    const fibonacci = memoizedFibonacci();
    console.log(fibonacci(10));
    // Example usage, calculates the 10th Fibonacci number