time.google.com
time1.google.com
time2.google.com
time3.google.com
| #include <SoftwareSerial.h> | |
| SoftwareSerial sim(10, 11); | |
| void setup() { | |
| Serial.begin(9600); | |
| Serial.println("System Starting..."); | |
| sim.begin(9600); | |
| delay(1000); | |
| Serial.println("Initializing SIM800L Module..."); |
| #include <SoftwareSerial.h> | |
| #include <LiquidCrystal_I2C.h> | |
| LiquidCrystal_I2C lcd(0x27, 16, 2); | |
| String Grsp; | |
| SoftwareSerial mySerial(3, 2); //SIM800L Tx & Rx is connected to Arduino #3 & #2 |
| #include <LiquidCrystal_I2C.h> | |
| #include <NewPing.h> | |
| #include <SPI.h> | |
| #include <Ethernet.h> | |
| const int trigPin = 9; | |
| const int echoPin = 10; | |
| const int max_distance = 1400; //in centimeter | |
| // defines variables |
| 1E -> C140 | |
| 1MZFE -> A541E automatic | |
| 1ZZFE ->C60 | |
| 18RG -> T50 | |
| 2C -> W58 | |
| 2E -> C150 | |
| 2ETE -> C152 | |
| 2JZGE -> W58 | |
| 2JZGTE ->V160 | |
| 2TB -> T50 |
| <html> | |
| <head> | |
| <title>Dompath Example</title> | |
| <body> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <div class="maindiv"> | |
| <a href="#" id="smlink">Some Link</a> | |
| <div class="some-complicated-div"> |
| { | |
| "rows": [ | |
| { | |
| "type": 3, | |
| "data": { | |
| "source": 3, | |
| "id": 1, | |
| "x": 0, | |
| "y": 733 | |
| }, |
| [ | |
| { | |
| "brgy":"Agsoso", | |
| "Lat":"9.7897", | |
| "Lon":"123.8203" | |
| }, | |
| { | |
| "brgy":"Badbad Occidental", | |
| "Lat":"9.8030", | |
| "Lon":"123.8133" |
| <?php | |
| /* | |
| 💬 Get Google-Reviews with PHP cURL & without API Key | |
| ===================================================== | |
| **This is a dirty but usefull way to grab the first 8 most relevant reviews from Google with cURL and without the use of an API Key** | |
| How to find the needed CID No: | |
| - use: [https://pleper.com/index.php?do=tools&sdo=cid_converter] |
| <?php | |
| date_default_timezone_set('Asia/Manila'); | |
| function isBetween($from, $till, $input) { | |
| $fromTime = strtotime($from); | |
| $toTime = strtotime($till); | |
| $inputTime = strtotime($input); | |
| return($inputTime >= $fromTime and $inputTime <= $toTime); | |
| } |