Skip to content
View veob's full-sized avatar

Block or report veob

Report abuse

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

Report abuse

Pinned Loading

  1. forty-two.js forty-two.js Public

    Want to wordify (spell out) your number? We got some

    JavaScript

  2. angular-bootstrap-lightbox-no-extra angular-bootstrap-lightbox-no-extra Public

    Forked from compact/angular-bootstrap-lightbox

    Lightbox using AngularUI Bootstrap Modal without loading bar and swipe support

    JavaScript 1

  3. adaltas/node-csv-stringify adaltas/node-csv-stringify Public archive

    CSV stringifier implementing the Node.js `stream.Transform` API

    184 50

  4. PostgreSQL natural sort PostgreSQL natural sort
    1
    //sql
    2
    create or replace function naturalsort(text)
    3
    returns bytea language sql immutable strict as
    4
    $f$ select string_agg(convert_to(coalesce(r[2],length(length(r[1])::text) || length(r[1])::text || r[1]),'SQL_ASCII'),'\x00')
    5
    from regexp_matches($1, '0*([0-9]+)|([^0-9]+)', 'g') r; $f$;