Version: 2.0
Date: November 2025
Status: Public
Dummy Guide To Launch An EC2 Instance
https://aws.amazon.com/marketplace/pp/B00O7WM7QW?ref=cns_srchrow
https://wiki.centos.org/TipsAndTricks
https://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/
https://www.liquidweb.com/kb/how-to-upgrade-mariadb-5-5-to-mariadb-10-0-on-centos-7/
https://blog.lysender.com/2015/07/centos-7-selinux-php-apache-cannot-writeaccess-file-no-matter-what/
https://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
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
| <?php | |
| $address = 'avenida+gustavo+paiva,maceio,alagoas,brasil'; | |
| $geocode = file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false'); | |
| $output= json_decode($geocode); | |
| $lat = $output->results[0]->geometry->location->lat; | |
| $long = $output->results[0]->geometry->location->lng; |