Skip to content
View zacharyarnaise's full-sized avatar
👋
👋
  • /dev/null, France
  • 05:25 (UTC +02:00)
Block or Report

Block or report zacharyarnaise

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. PostgreSQL: index stats PostgreSQL: index stats
    1
    SELECT
    2
        psui.relname AS table_name,
    3
        pg_size_pretty(pg_relation_size(psui.relid)) AS table_size,
    4
        psui.indexrelname AS index_name,
    5
        psui.idx_scan AS index_scans_count,
  2. PostgreSQL: duplicate a row multiple... PostgreSQL: duplicate a row multiple times
    1
    CREATE TEMPORARY TABLE temporary_table AS SELECT * FROM <my_table> WHERE <condition>;
    2
    
                  
    3
    -- Remove any columns that will cause a constraint error when re-inserting the row
    4
    ALTER TABLE temporary_table DROP COLUMN id;
    5
    
                  
  3. xxhashct xxhashct Public

    Forked from ekpyron/xxhashct

    Compile time implementation of the xxHash algorithm as C++11 constexpr expression.

    C++

  4. alternbot-app alternbot-app Public archive

    Forked from loicsteinmetz/alternbot-app

    Bot Discord de gestion de l'emploi du temps - IUTM

    Java