Skip to content
View bhanafee's full-sized avatar

Block or report bhanafee

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. RotatingSecrets RotatingSecrets Public

    Sample code for rotating secrets in a Java application that uses a Kubernetes Secrets replacement

    Java

  2. Masking Masking Public

    Library to protect sensitive values from inadvertent exposure via toString

    Java

  3. RetryHTTP RetryHTTP Public

    Library to add HTTP-specific intelligence to retry decisions. Intended for use with resilience4j.

    Java

  4. ACHCharset ACHCharset Public

    Java Charset that encodes only ACH-safe characters, which are a subset of US-ASCII

    Java

  5. Compute Luhn checksum for credit car... Compute Luhn checksum for credit card or check digit for ABA Routing Transit Number RTN
    1
    trait Checksum {
    2
      val seed: Seq[Int]
    3
      def op(c: Int, x: Int): Int
    4
    
                  
    5
      def coefficients: Stream[Int] = Stream.continually(seed).flatten