https://www.dd-wrt.com/wiki/index.php/JTAG_pinouts#Linksys_WRT300n_v2
Engineering and technology notes
TFTP flash – DD-WRT Wiki
Installation – DD-WRT Wiki
php – how to draw polyline google maps from mysql using Javascript
ERROR: Google Maps API error: MissingKeyMapError
libraries=places&key=your_api_key_here
Source: ERROR: Google Maps API error: MissingKeyMapError – Stack Overflow
Using MySQL and PHP with Google Maps
php – Embed Google Map into HTML page based on GPS coordinates
HM-10 Bluetooth 4 BLE Modules
Control an Arduino via the HM-10 BLE module, from a mobile app on your smartphone
Orange Pi Zero Google Cloud Print Server
grant remote access of MySQL database from any IP address
Config file changes are required to enable connections via localhost.
To connect through remote IPs, Login as a “root” user and run the below queries in mysql.
CREATEUSER'username'@'localhost'IDENTIFIEDBY'password';GRANTALLPRIVILEGESON*.*TO'username'@'localhost'WITHGRANTOPTION;CREATEUSER'username'@'%'IDENTIFIEDBY'password';GRANTALLPRIVILEGESON*.*TO'username'@'%'WITHGRANTOPTION;FLUSH PRIVILEGES;
This will create a new user that is accessible on localhost as well as from remote IPs.
Also comment the below line from your my.cnf file located in /etc/mysql/my.cnf
bind-address=127.0.0.1
Restart your mysql using
sudo service mysql restart
Now you should be able to connect remotely to your mysql.
Source: grant remote access of MySQL database from any IP address – Stack Overflow