Skip to content
View dansalias's full-sized avatar

Block or report dansalias

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

Pinned Loading

  1. iamdan.me iamdan.me Public

    The iamdan.me website

    TypeScript 1

  2. dotfiles dotfiles Public

    My dotfiles (Arch/i3).

    Shell 12 1

  3. json_pointer json_pointer Public

    JSON Pointer for Deno (IETF RFC6901).

    TypeScript 1

  4. aws_s3_presign aws_s3_presign Public

    Deno module to create presigned URLs for AWS S3

    TypeScript 12 8

  5. Rewrite TypeScript imports at compil... Rewrite TypeScript imports at compile time
    1
    import ts from 'typescript'
    2
    
                  
    3
    const unpackImportPath = (node: ts.ImportDeclaration): string => {
    4
      const moduleSpecifier = node.moduleSpecifier as ts.StringLiteral
    5
      return moduleSpecifier.text
  6. Invalidate an AWS CloudFront Distrib... Invalidate an AWS CloudFront Distribution by domain name
    1
    #!/bin/bash
    2
    
                  
    3
    # get the CloudFront Id
    4
    CF_DISTRIBUTION_ID=$(aws cloudfront list-distributions \
    5
      --query "DistributionList.Items[?contains(Aliases.Items[0], "example.com")] | [0].Id" \