bseib - Overview

Pinned Loading

  1. Demo of Drag and Drop used with Flexbox ordering

    JavaScript 3

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

    Shell 1

  3. 1

    import org.junit.jupiter.api.Assertions.assertEquals

    2

    import org.junit.jupiter.api.Test

    4

    class TestTrieDictionary {
  4. 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. Advent Of Code 2022

    Kotlin