Skip to content
View karladler's full-sized avatar

Organizations

@cenfood

Block or report karladler

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 Loading

  1. timer.watch timer.watch Public

    timer.watch - a simple configurable timer tool e.g. for daily standup, boiling eggs or preparing pasta

    JavaScript

  2. dm3-org/dm3 dm3-org/dm3 Public

    The dm3 protocol | New standard of web3 messaging | Decentralized ENS-based registry | Secure end-to-end encryption | Easy dApp integration

    TypeScript 74 15

  3. evannetwork/ui-vue evannetwork/ui-vue Public archive

    Core components / apis for evan.network vue dapps

    TypeScript 3

  4. ddblock/ddblock.github.io ddblock/ddblock.github.io Public

    Dresden Blockchain Meetup Website

    HTML 1

  5. evannetwork/ui-core evannetwork/ui-core Public archive

    JavaScript

  6. Public Postgres Snippets Public Postgres Snippets
    1
    /* Count unique entries in `column_name` */
    2
    SELECT column_name, count(*) FROM "table_name" GROUP BY column_name;
    3
    
                  
    4
    /* find entries with (NOT) numeric string */
    5
    SELECT * FROM table_name WHERE NOT column_name ~ '^\d+\.?\d+$';