Recreación del Efecto Matrix con HTML5 Canvas y 40 líneas de JavaScript.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 [email protected] | |
**/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#autor: kuatroestrellas <[email protected]> | |
#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: |