Skip to content
View sebringj's full-sized avatar
💭
Shet yer Shtatus
💭
Shet yer Shtatus

Highlights

  • Pro
Block or Report

Block or report sebringj

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

  1. pemmican pemmican Public

    public/private key generation, signing/verification, encryption/decryption

    TypeScript 3

  2. GuidShortener GuidShortener
    1
    class GuidShortener {
    2
      public static guidToBase95(guid: string): string {
    3
          const bigInt = this.hexToBigInt(guid);
    4
          let base95String = this.bigIntToBase95(bigInt);
    5