Skip to content

Instantly share code, notes, and snippets.

View stephendltg's full-sized avatar

stephendltg stephendltg

View GitHub Profile
@stephendltg
stephendltg / AdbCommands
Created June 5, 2021 05:32 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@stephendltg
stephendltg / mqttpublish.php
Created August 22, 2020 09:40 — forked from zekizeki/mqttpublish.php
Simple pure MQTT publish client written in PHP
<?php
/**
*
* The MQTTClient class allows you to connect to an MQTT message broker and publish messages
* @author [email protected]
*
* Example use
* $client = new MQTTClient("robphptest","realtime.ngi.ibm.com",1883);
* $client->connect();