Skip to content
View juanparati's full-sized avatar

Organizations

@Mamuph
Block or Report

Block or report juanparati

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

    A Laravel log sender agent

    PHP 21 1

  2. isocodes isocodes Public

    A PHP library that provides international ISO codes.

    PHP 14 3

  3. mobilenumbers mobilenumbers Public

    An international mobile numbers validator library for PHP 7.1+

    PHP 1

  4. BrevoSuite BrevoSuite Public

    A complete Brevo suite library for Laravel

    PHP 1 1

  5. Laravel AES-256-CBC decryption imple... Laravel AES-256-CBC decryption implemented directly on MYSQL
    1
    -- Direct SELECT version
    2
    SELECT
    3
    	FROM_BASE64(JSON_UNQUOTE(JSON_EXTRACT(CONVERT(FROM_BASE64(email) USING utf8), '$.iv'))) AS iv,
    4
    	JSON_UNQUOTE(JSON_EXTRACT(CONVERT(FROM_BASE64(email) USING utf8), '$.value')) AS value,
    5
    	FROM_BASE64('mysecretkey') AS pkey,
  6. UUID7 generation function for MariaDB UUID7 generation function for MariaDB
    1
    DELIMITER $$
    2
    CREATE DEFINER = CURRENT_USER FUNCTION `uuidv7` () RETURNS UUID LANGUAGE SQL NOT DETERMINISTIC NO SQL SQL SECURITY DEFINER
    3
    COMMENT 'Generate a UUID7 according to https://www.ietf.org/archive/id/draft-peabody-dispatch-new-uuid-format-04.html#variant_and_version_fields'
    4
     BEGIN
    5
        -- Obtain date with 4 milliseconds precision