Skip to content
View henriquek3's full-sized avatar
  • Cacoal, RO

Highlights

  • Pro
Block or Report

Block or report henriquek3

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. Popular um input type date com a dat... Popular um input type date com a data atual
    1
    function formatDate() {
    2
                var d = new Date(date), // para atual retirar o date e na invocação da função retirar o argumento.
    3
                    month = '' + (d.getMonth() + 1),
    4
                    day = '' + d.getDate(),
    5
                    year = d.getFullYear();
  2. Remover texto entre parenteses e o t... Remover texto entre parenteses e o texto dentro
    1
    SELECT REPLACE(CUR_NOME, SUBSTRING(CUR_NOME, LOCATE('(', CUR_NOME),
    2
                                       LENGTH(CUR_NOME) - LOCATE(')', REVERSE(CUR_NOME)) - LOCATE('(', CUR_NOME) + 2),
    3
                   '') AS CUR_NOME,
    4
           CUR_NOME
    5
    FROM atribuicaos;
  3. Primeiro e Ultimo nome em mysql Primeiro e Ultimo nome em mysql
    1
    select substring_index(nome, ' ', 1)  as PrimeiroNome,
    2
           substring_index(nome, ' ', -1) as UltimoNome
    3
    from professors;
  4. Complete list of github markdown emo... Complete list of github markdown emoji markup
    1
    People
    2
    
                  
    3
    | :bowtie: `:bowtie:` | :smile: `:smile:` | :laughing: `:laughing:` |
    4
    |---|---|---|
    5
    | :blush: `:blush:` | :smiley: `:smiley:` | :relaxed: `:relaxed:` |
  5. OpenMU OpenMU Public

    Forked from MUnique/OpenMU

    This project aims to create an easy to use, extendable and customizable server for a MMORPG called "MU Online" in the version of Season 6 Episode 3 using the ENG (english) protocol.

    C#