Skip to content
View bseib's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report bseib

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. drag-drop-flexbox drag-drop-flexbox Public

    Demo of Drag and Drop used with Flexbox ordering

    JavaScript 3

  2. sideload sideload Public

    Sideload files (which are not source controlled) in and out of a project.

    Shell

  3. Word Dictionary using a Trie Structure Word Dictionary using a Trie Structure
    1
    import org.junit.jupiter.api.Assertions.assertEquals
    2
    import org.junit.jupiter.api.Test
    3
    
                  
    4
    class TestTrieDictionary {
    5
    
                  
  4. A clean way to consume an input stre... A clean way to consume an input stream into a buffer using a sequence
    1
    
                  
    2
    fun inputStreamToTrimmedString(inputStream: InputStream): String {
    3
        val baos = ByteArrayOutputStream()
    4
        val buffer = ByteArray(128)
    5
        inputStream.bufferedSequence(buffer) { bytesRead -> baos.write(buffer, 0, bytesRead) }
  5. aoc-2022 aoc-2022 Public

    Advent Of Code 2022

    Kotlin