Skip to content

Instantly share code, notes, and snippets.

View orl99's full-sized avatar
👨‍💻
Developing for the cat Empire 😼

Orlando Garcia orl99

👨‍💻
Developing for the cat Empire 😼
  • @CBORD / Horizon Software International
  • Santiago, Nuevo Leon
  • 02:38 (UTC -06:00)
  • LinkedIn in/orl99
View GitHub Profile
@walterowisk
walterowisk / shrekSendScript.js
Last active May 31, 2024 19:15
Script Shrek para WhatsApp - Copie todo o conteúdo (clique em raw -> ctrl+a -> ctrl+c) // No WhatsApp Web abra o console do Browser // Cole o código no console e aperte Enter
async function enviarScript(scriptText){
const lines = scriptText.split(/[\n\t]+/).map(line => line.trim()).filter(line => line);
main = document.querySelector("#main"),
textarea = main.querySelector(`div[contenteditable="true"]`)
if(!textarea) throw new Error("Não há uma conversa aberta")
for(const line of lines){
console.log(line)
@Yizack
Yizack / countries.json
Last active April 27, 2024 07:19
List of countries and territories in English and Spanish: name, continent, capital, dial code, country codes, TLD, and area in sq km. Lista de países y territorios en Inglés y Español: nombre, continente, capital, código de teléfono, códigos de país, dominio y área en km cuadrados. Updated 2023
{
"countries" : [
{
"name_en": "Afghanistan",
"name_es": "Afganistán",
"continent_en": "Africa",
"continent_es": "África",
"capital_en": "Kabul",
"capital_es": "Kabul",
"dial_code": "+93",
@gokulkrishh
gokulkrishh / media-query.css
Last active June 1, 2024 03:01
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */