Skip to content
View Aitem's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@HealthSamurai @devops-ru @Aidbox @Gesturio @fhir-js @hffps
Block or Report

Block or report Aitem

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

    BDM is super simple, fully declarative clj/cljc bi directional mapper.

    Clojure 3

  2. zen-frame zen-frame Public

    Clojure 1

  3. hs-school hs-school Public

    PostgreSQL Intensive crash course

    PLpgSQL 19 10

  4. PostreSQL JSONB helpers functions PostreSQL JSONB helpers functions
    1
    -- jsonb_select_keys take jsonb and keys and return jsonb
    2
    -- contains only given keys
    3
    create or REPLACE function jsonb_select_keys (resource jsonb, keys text[] ) returns jsonb
    4
    as $$
    5
    select jsonb_object_agg(k, v)