Skip to content
View tqmvt's full-sized avatar

Organizations

@centfinance @kofimexyz
Block or Report

Block or report tqmvt

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
tqmvt/README.md


Visitor's Count

visitor badge

Taylor Lee's Dev Card

Pinned

  1. Merge Sort Algorithm Merge Sort Algorithm
    1
    // merge the two arrays: left and right
    2
    function merge(left, right) {
    3
      let resultArray = [],
    4
        leftIndex = 0,
    5
        rightIndex = 0;
  2. rate limit - upstash redis with verc... rate limit - upstash redis with vercel edge / nextjs
    1
    import { NextRequest, NextResponse } from "next/server";
    2
    import { Redis } from "@upstash/redis";
    3
    export const config = {
    4
      runtime: "edge",
    5
    };
  3. How to speed up your DeFi Queries? How to speed up your DeFi Queries?
    1
    ### How to speed up your DeFi Queries?
    2
    
                  
    3
    You can use [multicall](https://www.npmjs.com/package/ethers-multicall).
    4
    Here's the [reference](https://betterprogramming.pub/speed-up-your-defi-queries-using-multicall-d4cf652d8ab6).
  4. yolo-backend yolo-backend Public

    YOLO API using Go, Gin, Gorm, Logrus

    Go 2

  5. solidity-gas-optimization-tips solidity-gas-optimization-tips Public

    Solidity Gas Optimization Tips

    5 2