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 is supported. This note will only be visible to 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

    C#

  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. ASCIISafeCharsets ASCIISafeCharsets Public

    A Java Charset SPI provider that encodes Unicode text into ASCII-safe subsets. Rather than simply rejecting non-ASCII input, the transliterating variants map common Unicode characters — accented le…

    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
  6. AtLeastOnce AtLeastOnce Public

    Sample application using Kafka and resilience4j to produce at least once delivery

    Java