Skip to content
View veob's full-sized avatar

Block or report veob

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

    187 52

  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$;