Skip to content

Instantly share code, notes, and snippets.

View IgorDePaula's full-sized avatar
😆

Igor C. de Paula IgorDePaula

😆
View GitHub Profile
const { promisify } = require('util');
const readline = require("readline");
let rl = readline.createInterface({ input: process.stdin, output: process.stdout });
rl.question[promisify.custom] = (question) => {
return new Promise((resolve) => {
rl.question(question, resolve);
});
};
rl.questionSync = promisify(rl.question);
@IgorDePaula
IgorDePaula / slide.html
Created January 26, 2022 13:11
call slide google
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><!DOCTYPE html>
<html>
<head>
<title>Google Slides API Quickstart</title>
<meta charset="utf-8" />
</head>
@IgorDePaula
IgorDePaula / docs.html
Created January 26, 2022 13:11
call to google docs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>teste</title>
<body>
<p>
Google Docs API Quickstart
</p>
<!--Add buttons to initiate auth sequence and sign out-->
@IgorDePaula
IgorDePaula / ProductPage.js
Created August 18, 2021 16:38
ProductPage.js
import React from 'react'
import {Fragment, useState, useEffect} from 'react'
import {Dialog, Disclosure, Popover, RadioGroup, Tab, Transition} from '@headlessui/react'
import {MenuIcon, SearchIcon, ShieldCheckIcon, ShoppingBagIcon, XIcon} from '@heroicons/react/outline'
import {CheckIcon, ChevronDownIcon, PlusSmIcon, QuestionMarkCircleIcon, StarIcon} from '@heroicons/react/solid'
import MainLayout from "../src/Layouts/Main";
import {useTranslation} from "react-i18next";
import {API} from 'aws-amplify'
import {listColors, listSizes, listCategories} from "../src/graphql/queries";
import NextAuth from 'next-auth'
import Providers from 'next-auth/providers'
import {Auth} from 'aws-amplify'
export default NextAuth({
pages: {
error: "/login", // Changing the error redirect page to our custom login page
},
callbacks: {
async session(session, token) {
<?php
namespace App\Services\BankFileReaders\Itau\Retorno\Boleto;
class Boleto
{
private $file;
import {createContext, useState} from "react";
export const AuthContext = createContext()
export const AuthProvider = ({children}) => {
const [user, setUser] = useState({})
return <AuthContext.Provider value={[user, setUser]}>
{children}
</AuthContext.Provider>
}
@IgorDePaula
IgorDePaula / post-receive.sh
Last active November 18, 2022 21:10
git deploy
#!/bin/bash
TARGET="/var/www/html"
GIT_DIR="/home/ubuntu/crm.git"
BRANCH="master"
TARGET_HOMOLOGACAO="/home/ubuntu/homologacao"
# GIT_DIR="/home/ubuntu/crm"
BRANCH_HOMOLOGACAO="homologacao"
while read oldrev newrev ref
do
#!/bin/sh
printf '%s\n' "He he he $USER! You haven't permission to logged in this folder"
exit 128
EOF
#!/bin/bash
TARGET="/var/www/"
GIT_DIR="/home/{{mysqlUser}}/laravel.git"
BRANCH="master"
GREEN='\033[0;32m' # green, in true
NC='\033[0m' # No Color
BLUE='\033[0;34m'