Skip to content
View parallelo3301's full-sized avatar
🔥
Hack the Planet!
🔥
Hack the Planet!

Organizations

@alzacz @Flexiana @CicadaLabs @ShadowSecTeam
Block or Report

Block or report parallelo3301

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. zulip-chatgpt-bot zulip-chatgpt-bot Public

    Zulip bot which reacts with ChatGPT answers.

    Python 21 9

  2. Flexiana/framework Flexiana/framework Public

    Our framework

    Clojure 90 11

  3. headscale-stack headscale-stack Public

    Run headscale & web management with ease.

    1

  4. dom-cloner-demo dom-cloner-demo Public

    JavaScript 1

  5. PostgreSQL utils PostgreSQL utils
    1
    -- v5
    2
    ----------------------------------------------------------- basic instance info
    3
    
                  
    4
    -- show db version
    5
    SELECT version();
  6. reindex by bloat percent concurrentl... reindex by bloat percent concurrently for postgres < 12
    1
    create extension dblink;
    2
    drop function if exists reindex_by_bloat_percent;
    3
    
                  
    4
    create or replace function reindex_by_bloat_percent (connection_string text, schema_to_process text = 'public', threshold integer = 40, min_index_bytes integer = 20971520) returns text
    5
    language PLPGSQL as $$