Skip to content
View sfaut's full-sized avatar

Block or report sfaut

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. masquerade masquerade Public

    Batch MySQL and MariaDB upserts (INSERT ... ON DUPLICATE KEY UPDATE) with automatic chunking and primary-key protection, via PDO.

    PHP

  2. insight insight Public

    Readable var_dump() and print_r() alternative with a colored CLI renderer and a collapsible HTML renderer, configurable truncation, and circular-reference detection.

    PHP

  3. data-cog data-cog Public

    Code Officiel Géographique de France complet

  4. data-who-ambient-air-quality data-who-ambient-air-quality Public

    Base de données de la qualité de l'air ambiant de l'OMS

  5. zimbra zimbra Public

    Search, read and send simply Zimbra messages with PHP. Attachments are managed.

    PHP

  6. SQL function calculating the Levensh... SQL function calculating the Levenshtein distance between 2 strings
    1
    -- Author : sfaut <https://github.com/sfaut>
    2
    -- Creation date : 2022-07-04
    3
    -- Tested with MySQL 8.0.28 (@@sql_mode='ANSI,TRADITIONAL')
    4
    CREATE DEFINER="sfaut"@"%" FUNCTION "levenshtein_distance"(s1 TINYTEXT, s2 TINYTEXT)
    5
    RETURNS TINYINT UNSIGNED