Skip to content

Instantly share code, notes, and snippets.

View kuatroestrellas's full-sized avatar
⛩️
Trabajando desde casa

Arturo V. Gutierrez kuatroestrellas

⛩️
Trabajando desde casa
View GitHub Profile
@kuatroestrellas
kuatroestrellas / excel-to-whatsapp.vb
Created April 9, 2024 09:18
send message from excel to whatsapp
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As Range
Dim URL As String
Dim HTTPRequest As Object
Dim ResponseData As String
Dim Texto As String
Dim Estado As String
Dim Telefono As String
Dim ApiKey As String
@kuatroestrellas
kuatroestrellas / google-sheet-to-whatsapp.gs
Created April 1, 2024 07:49
Envía mensajes de google sheet a whatsapp
// tutorial https://youtu.be/jh5-Cc39ovc
function senMessage(testo){
var url = 'https://api.callmebot.com/whatsapp.php';
var payload = {
"phone": "TU NUMERO",
"text": testo,
"apikey": "TU API KEY"
};
var options = {
/*
Sketch generated by the Arduino IoT Cloud Thing "Untitled
Arduino IoT Cloud Variables description
The following variables are automatically generated and updated when changes are made to the Thing
CloudLight foco1;
CloudLight foco2;
@kuatroestrellas
kuatroestrellas / index.js
Created April 23, 2023 08:16
bot that redirects whatsapp messages to google chat (google workspace)
/**
* Bot que recibe mensajes de whatsapp en Google Chat
* web: https://kuatroestrellas.github.io/blog/
*
* requiere nodejs v12 o superior y las librerias qrcode-terminal, whatsapp-web.js y node-fetch
* npm i qrcode-terminal whatsapp-web.js node-fetch@2.6.1
**/
/**
* Bot para whatsapp
* web: https://kuatroestrellas.github.io/blog/
* responde al hola mundo con un mensaje
* requiere nodejs v12 o superior y las librerias qrcode-terminal y whatsapp-web.js
* npm i qrcode-terminal whatsapp-web.js
**/
const qrcode = require('qrcode-terminal');
@kuatroestrellas
kuatroestrellas / efecto-matrix-en-40-lineas.markdown
Created September 6, 2022 09:13
Efecto Matrix en 40 líneas

Efecto Matrix en 40 líneas

Recreación del Efecto Matrix con HTML5 Canvas y 40 líneas de JavaScript.

A Pen by 0utKast on CodePen.

License.

@kuatroestrellas
kuatroestrellas / install-androidStudio.sh
Last active October 18, 2022 06:17
simple instalador de android studio para linux
#!/bin/bash
#autor: kuatroestrellas <kuatroestrellas@gmail.com>
#descripcion:
# Sencillo instalador de Android Studio
# bueno lo unico que hace es crear los iconos
# en el escritorio y en el menu
# agrega la carpeta al path //esto aun
# y por ultimo te lanza el verdadero instalador real de la aplicacion
# es algo tonto pero se me ocurrio hacerlo
#Modo de empleo: