Skip to content
View debkanchan's full-sized avatar
🤖
tinkering with ai
🤖
tinkering with ai

Organizations

@ride-app

Block or report debkanchan

Report abuse

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

Report abuse

Pinned Loading

  1. RegEx for Latitude and Longitude RegEx for Latitude and Longitude
    1
    # Regular Expression(RegExp) for Latitude and Longitude
    2
    
                  
    3
    ## Just Latitude:
    4
    `^-?([0-8]?[0-9]|90)(\.[0-9]{1,10})$`
    5
    
                  
  2. Get Promised return type of an async... Get Promised return type of an async function in TypeScript
    1
    type PromisedReturnType<T extends (...args: any) => any> = T extends (...args: any[]) => PromiseLike<infer R> ? R : any
    2
    
                  
    3
    //usage
    4
    async function f1() {
    5
      return "Value";
  3. Flutter/Dart Google Maps API encoded... Flutter/Dart Google Maps API encoded polyline decoder
    1
    List _decode(String input) {
    2
        var list=input.codeUnits;
    3
        List lList = new List();
    4
        int index=0;
    5
        int len=input.length;
  4. sdking sdking Public

    Generate TypeScript SDKs from OpenAPI specs. Validate API inputs and outputs using Zod. Own your SDKs!

    TypeScript 14

  5. bark bark Public

    Save yourself from embarrassments

    Go 3 2