Skip to content
View sfaut's full-sized avatar
Block or Report

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.

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

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

    PHP

  2. csv csv Public

    CSV handler

    PHP

  3. hobbies hobbies Public

    Forked from iurii-kyrylenko/hobbies

    Keeping track of your hobbies

    Vue

  4. wave-ui wave-ui Public

    Forked from antoniandre/wave-ui

    An emerging UI framework for Vue.js & Vue 3 with only the bright side. ☀️

    Vue

  5. Converts seconds to human reading du... Converts seconds to human reading duration like "4 days, 13 hours, 5 minutes, 49 seconds"
    1
    <?php
    2
    
                  
    3
    function human_duration(int $seconds): string
    4
    {
    5
        if ($seconds < 0) {
  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