Skip to content
View rkammer's full-sized avatar
Block or Report

Block or report rkammer

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. blockchain blockchain Public archive

    Simple Blockchain example in TypeScript

    TypeScript 1

  2. GraphDB GraphDB Public

    MS SQL Server Graph Database

    Jupyter Notebook 1

  3. barcode barcode Public

    Simple sample of js code to detect the usage of barcode scanner.

    HTML 1

  4. production-sql production-sql Public

    SQLPL

  5. camelCase / PascalCase camelCase / PascalCase
    1
    function ToCamelCase(attribute) {
    2
        return attribute.toLowerCase().trim().split('_').reduce((pre, cur) => {
    3
            return pre + cur.charAt(0).toUpperCase() + cur.slice(1);
    4
        });
    5
    }