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 | |
# | |
# Crawls a domain | |
# Retreives all visible URLs and their page titles | |
# Saves to CSV | |
# $1 = URL (no http(s)) | |
# $2 = csv title | |
# MODIFY - wget include directories, domain, and --reject-regex TODO - make a variable | |
# Text color variables |
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
/* | |
Based on Neil Kolban example for IDF: | |
https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleWrite.cpp | |
Ported to Arduino ESP32 by Evandro Copercini | |
*/ | |
// Modificado por Juan Antonio Villalpando. | |
// http://kio4.com/arduino/160i_Wemos_ESP32_BLE.htm | |
// https://community.appinventor.mit.edu/t/ble-esp32-bluetooth-send-receive-arduino-ide/1980/3 | |
// https://github.com/michaelruck/ESP32_phone_camera_remote_shutter |
OlderNewer