Skip to content

Instantly share code, notes, and snippets.

View rbenvenuto's full-sized avatar

Ranieri Benvenuto rbenvenuto

View GitHub Profile
const ItoupavaList = [
'Itoupavazinha',
'Central',
'Norte',
'Velha'
]
ItoupavaList.map((itoupava, index) => {
return index === 0 ?
console.log(ItoupavaList[index]) :
@rbenvenuto
rbenvenuto / email-with-stars.js
Last active July 4, 2018 23:19
JS function that replaces in-between characters with stars
function hiddenEmailAddress(email) {
var emailLength = email.length;
var atPosition = email.search('@');
var unhiddenPortion = email.slice(atPosition, emailLength);
var i;
var hiddenEmail = '';
for(i = 0; i < atPosition; i++) {
if(i === 0 || i === atPosition - 1) {
hiddenEmail += email[i];
@rbenvenuto
rbenvenuto / video-stop.js
Created February 20, 2018 18:12
Stop video execution when click on any element
$('div.sideview-close-btn').click(function() {
// comando que pausa o vídeo
$('#popup-youtube-player')[0].contentWindow.postMessage('{"event":"command","func":"stopVideo","args":""}', '*');
});
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
@rbenvenuto
rbenvenuto / matrizesEx12.c
Created August 30, 2017 19:49
Exercício com matrizes em C
#include <stdio.h>
#include <stdlib.h>
#define LINHAS_A 4
#define COLUNAS_A 5
#define ELEMENTOS_B 4
#define ELEMENTOS_C 5
// Efetuar a leitura de 20 valores
// inteiros em uma Matriz A com 4 linhas
// e 5 colunas
@rbenvenuto
rbenvenuto / matrizesEx1.c
Created August 30, 2017 18:50
Exercício com matrizes em C
#include <stdio.h>
#include <stdlib.h>
#define LINHAS 6
#define COLUNAS 6
// Faça uma Matriz de 6x6
// para os usuarios preencherem
// com elementos do tipo INT
// Em seguida, apresente na tela
// somente os valores PARES
@rbenvenuto
rbenvenuto / matrizesEx2.c
Created August 30, 2017 18:46
Exercício com matrizes em C
#include <stdio.h>
#include <stdlib.h>
#define LINHAS 3
#define COLUNAS 6
// Contrua matriz 3x6 de real
// que leia números digitados pelo usuário
// Se houverem números negativos
// trocar pelo numero 1
// Mostrar todos os números
<!DOCTYPE html>
<html>
<head>
<style>
div.hr {
width:70%;
height: 1px;
background: #7F7F7F;
}
div.hr:after {
<script type="text/javascript">
document.getElementById('username').onblur = function validarCPF(cpf){
var cpf = document.getElementById('username').value;
var cpfStr = cpf.toString();
if(cpfStr.length != 11 || cpfStr.replace(eval('/'+cpfStr.charAt(1)+'/g'),'') == '')
{
alert('CPF inválido');
}
else
{
function add_new_member() {
if(isset($_POST['cpf']) && wp_verify_nonce($_POST['register_nonce'], 'register-nonce')) {
$user_cpf = $_POST['user_cpf'];
$user_nasc = $_POST['data_nasc'];
$user_medicamento = $_POST['medicamento'];
$user_crm = $_POST['user_crm'];
$user_uf = $_POST['user_uf'];
$user_nome = $_POST['user_nome'];
$user_sexo = $_POST['user_sexo'];
$user_email = $_POST['email'];