Skip to content

Instantly share code, notes, and snippets.

View LaisGalvao's full-sized avatar
🎯
Focusing

Laís Galvão LaisGalvao

🎯
Focusing
View GitHub Profile
@LaisGalvao
LaisGalvao / nginx.conf
Created May 14, 2024 14:53 — forked from mreschke/nginx.conf
Nginx config for multiple laravel sites based on /api/v1 url paths
# This config will host your main [Laravel] GUI application at /, and any additional [Lumen] webservices at /api/v1 and /api/v2...
# This also works perfectly for all static file content in all projects
# This is full of debug comments so you can see how to print debug output to browser! Took me hours to nail this perfect config.
# Example:
# http://example.com - Main Laravel site as usual
# http://example.com/about - Main Laravel site about page as usual
# http://example.com/robots.txt - Main Laravel site static content as usual
# http://example.com/api/v1 - Lumen v1 api default / route
# http://example.com/api/v1/ - Lumen v1 api default / route
@LaisGalvao
LaisGalvao / .ts
Created February 27, 2024 11:53
FizzBuzz Typescript Sample
'use strict';
process.stdin.resume();
process.stdin.setEncoding('utf-8');
let inputString: string = '';
let inputLines: string[] = [];
let currentLine: number = 0;
process.stdin.on('data', function(inputStdin: string): void {
@LaisGalvao
LaisGalvao / helpers.js
Last active February 16, 2024 21:27
Helpers para diversas situações - Vue.js / JS
// Função helper que faz adicionar query na url sem dar reload na página
addQueryParam (param) {
const currentQuery = { ...this.$route.query }
currentQuery.key = param
const newUrl = `${window.location.pathname}?${new URLSearchParams(currentQuery).toString()}`
// Use history.replaceState para alterar a URL sem recarregar o componente
window.history.replaceState({}, '', newUrl)
}
@LaisGalvao
LaisGalvao / reset.css
Created March 20, 2023 13:22 — forked from DavidWells/reset.css
CSS reset. Follow me on the twitters for more tips: https://twitter.com/davidwells
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
const puppeteer = require('puppeteer');
class Webpage {
static async generatePDF(url) {
const browser = await puppeteer.launch({ headless: true }); // Puppeteer can only generate pdf in headless mode.
const page = await browser.newPage();
await page.goto(url, { waitUntil: 'networkidle', networkIdleTimeout: 5000 }); // Adjust network idle as required.
const pdfConfig = {
path: 'url.pdf', // Saves pdf to disk.
format: 'A4',
@LaisGalvao
LaisGalvao / instagram-api_send_message.js
Created August 31, 2022 19:50 — forked from baptx/instagram-api_send_message.js
Instagram API: send direct messages from a web browser
/*
Instagram API: send direct messages from a web browser
Since April 2020, Instagram has a web version to send and read direct messages so my Instagram scripts are not longer needed and I would not recommend using them unless you really need it, to avoid being banned
(never happened to me with Instagram but WhatsApp is owned by Facebook also and they did it to users registering from an unofficial app like yowsup: https://github.com/tgalal/yowsup/commit/88b8ad9581fa22dac330ee3a05fec4e485dfa634#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5)
For browser setup, see script instagram-api_direct_messages_backup.js
Instagram web version sessionid cookie does not allow sending messages so we need to log in manually
Signature should match signed_body data (using HMAC-SHA256 with private key) but wrong signature or key may work also.
@LaisGalvao
LaisGalvao / semantic-commit.txt
Created July 28, 2022 13:03 — forked from eltonea/semantic-commit.txt
Exemplos de commit semântico
chore: add Oyster build script //Pequenas alterações que não são novas funcionalidades.
docs: explain hat wobble //Semelhante a uma wiki; documentações etc.
feat: add beta sequence //Criação de Nova funcionalidade;
fix: remove error message //Correção de bugs
refactor: share logic 4d3d3d3 //Refatoração de um código
style: convert tabs to spaces //Alteração em estilos, formatação de código etc.
test: ensure that increment //Criação de testes da sua aplicação
@LaisGalvao
LaisGalvao / deploy.sh
Created July 26, 2022 16:10 — forked from vlucas/deploy.sh
Deploy a Static Site to Github Pages
#!/bin/bash
GIT_REPO_URL=$(git config --get remote.origin.url)
mkdir .deploy
cp -R ./* .deploy
cd .deploy
git init .
git remote add github $GIT_REPO_URL
git checkout -b gh-pages
git add .
@LaisGalvao
LaisGalvao / deploy.sh
Created July 26, 2022 16:10 — forked from sam-ngu/deploy.sh
Bash script to deploy a React app to Github pages
#!/usr/bin/env sh
# abort on errors
set -e
# build
npm run build
# navigate into the build output directory
cd build
@LaisGalvao
LaisGalvao / purgecss.js
Created May 6, 2022 17:06 — forked from dekadentno/purgecss.js
Vue CLI 3 + PurgeCSS
/**
1) npm i -D purgecss @fullhuman/postcss-purgecss purgecss-webpack-plugin glob-all path
2) edit vue.config.js
*/
/**
** vue.config.js
*/
const PurgecssPlugin = require('purgecss-webpack-plugin');
const glob = require('glob-all');