Skip to content

Instantly share code, notes, and snippets.

Avatar
💭
👨‍💻 Coding..

Juan pablo juanpablocs

💭
👨‍💻 Coding..
View GitHub Profile
@juanpablocs
juanpablocs / tipo_de_cambio.md
Created April 6, 2021 05:45
Tipo de cambio Sunat Api TXT
View tipo_de_cambio.md
@juanpablocs
juanpablocs / sunat.md
Last active May 30, 2022 03:26
Ver RUC de la Sunat con node.js sin captcha. Simple y rápido.
View sunat.md

Ruc Sunat

Obtener resultados sin necesidad de captcha ni ocr. Simple código

Instalar paquetes

npm init -y
npm i request cheerio --save

Run

@juanpablocs
juanpablocs / useAxios.md
Created May 20, 2022 04:38
useAxios with global error boundaries
View useAxios.md

hook axios sugar

import { useEffect, useRef } from 'react';
import axios, { AxiosError, AxiosRequestConfig } from 'axios';
import _useAxios, { configure } from 'axios-hooks';
import { useErrorHandler } from 'react-error-boundary';
import { useToast } from '@chakra-ui/react';

import { API_URL } from '../config';
@juanpablocs
juanpablocs / _countries.md
Last active November 14, 2021 02:51
Geo Country, ISO, DIAL, JSON
View _countries.md

Countries GEO

Json file from countries and iso and dial data for users register.

$file = file_get_contents(dirname(__FILE__)."/countries.json");
$json = json_decode($file, true);

var_dump($json);
@juanpablocs
juanpablocs / testing.md
Last active September 15, 2021 17:10
React testing Library and jest tips and tricks
View testing.md

Jest and React testing library

Funciones globales para ejecutar pruebas describe(name, cb) te permite agrupar varios test unitarios y dentro podemos usar it(name, cb) o test(name, cb) para acceder a un elemento screen y para debugear screen.debug()

usamos render de @testing-library/react para pintar y evaluar el componente.

para acceder al dom del componente usamos screen y buscar elementos con getBy... y con promise findBy...

los objetos y funciones mas usados

@juanpablocs
juanpablocs / valid_email.md
Last active March 10, 2021 02:32
SImple Regex for valid email with Javascript
View valid_email.md

regex valid js update 2021

const validEmail(str) => !/(\.{2}|-{2}|_{2})/.test(str) && /^[a-z0-9][a-z0-9-_\.]+@([a-z]|[a-z0-9]?[a-z0-9-]+[a-z0-9])\.[a-z0-9]{2,10}(?:\.[a-z]{2,10})?$/.test(str);

validEmail('admin@gmail.com'); //true
validEmail('admin@my-large-domain.news'); //true
validEmail('admin@comercio.com.pe'); //true
validEmail('elonmusk@x.com'); // true (short domain)
validEmail('ud@se.cz'); // true (short domain)
@juanpablocs
juanpablocs / gdrive.php
Created March 31, 2020 03:45
Google drive php 2020
View gdrive.php
<?php
/*
https://redirector.googlevideo.com/videoplayback?
id=62705830c2bbd616&
itag=22&
source=youtube&
requiressl=yes&
ei=G5-CXpqzGIn6Wa3MvvAB&
susc=ytcp&
@juanpablocs
juanpablocs / google_cookie.md
Created October 4, 2020 00:50
Google auth cookie with curl
View google_cookie.md
@juanpablocs
juanpablocs / ssl_client_cert_if.conf
Last active September 14, 2020 04:35 — forked from onnimonni/ssl_client_cert_if.conf
How to regex from nginx variable with map directive
View ssl_client_cert_if.conf
##
# I wanted to use same ssl client certificate CA in nginx for multple client certs
# but restrict the users outside our organisation accessing everything.
# Because I can decide what to put into the emailAddress I can force verify everything and only pass the proper users.
##
##
# This way you can restrict users only with email addresses from @koodimonni.fi
# Put this into http context in nginx configs
##
@juanpablocs
juanpablocs / reduce.md
Last active September 9, 2020 05:19
Reduce js basic examples..
View reduce.md

Simple

[1,2,3,4].reduce( (acc,current) => acc+current , 0); // result => 10

Object sum

[
 {item: 10},