Laste Update: Fri 05 Jun 2020 02:22:05 PM UTC
With hardware, you could intercept traffic.
- Download APK
| rabbitmqctl add_user test test | |
| rabbitmqctl set_user_tags test administrator | |
| rabbitmqctl set_permissions -p / test ".*" ".*" ".*" |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| # Automatically update your CloudFlare DNS record to the IP, Dynamic DNS | |
| # Can retrieve cloudflare Domain id and list zone's, because, lazy | |
| # Place at: | |
| # /usr/local/bin/cf-ddns.sh |
| /** | |
| * flutter_background_geolocation Hello World | |
| * https://github.com/transistorsoft/flutter_background_geolocation | |
| */ | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_background_geolocation/flutter_background_geolocation.dart' as bg; | |
| //// | |
| // For pretty-printing location JSON. Not a requirement of flutter_background_geolocation |
| #include<Wire.h> | |
| #include<PubSubClient.h> | |
| #include<WiFi.h> | |
| #include<Adafruit_BME280.h> | |
| #include <ArduinoJson.h> | |
| /* | |
| * WLAN Configuration | |
| */ | |
| const char* ssid = "YOUR_SSID"; // FILL THIS ACCORDINGLY |
Laste Update: Fri 05 Jun 2020 02:22:05 PM UTC
With hardware, you could intercept traffic.