- install termux app
- install termux-api app
- open termux terminal and install:
pkg install termux-api
ROCKpro64by PINE64- Rockchip
RK3399
- Rockchip
big.LITTLEarchitecture:- Quad Cortex-A53
0xd03 - Dual Cortex-A72
0xd08
- Quad Cortex-A53
NOTE: "CPU part" identifies the A53 and A72 CPUs respectively.
- https://geojson.io
- TODO
| Feature | C++17 (std) |
Boost 1.88 |
|---|---|---|
| Threading | ✅ (std::thread) |
✅ (boost::thread) |
| Mutexes | ✅ (std::mutex) |
✅ (boost::mutex) |
| Futures/Promises | ✅ (std::future) |
✅ (boost::future) |
| Filesystem | ✅ (std::filesystem) |
✅ (boost::filesystem) |
| Time Utilities | ✅ (std::chrono) |
✅ (boost::chrono) |
| UDP Sockets | ❌ | ✅ (boost::asio) |
| TCP Sockets | ❌ | ✅ (boost::asio) |
| HTTP/HTTPS | ❌ | ✅ (boost::beast) |
mbohun@mamlas:~> Read from remote host 192.168.1.35: Connection timed out
Connection to 192.168.1.35 closed.
client_loop: send disconnect: Broken pipe
[mbohun@mbohunorangepi5pro ~]$ ssh 192.168.1.35
Last login: Thu Mar 6 08:05:01 AEDT 2025 from 192.168.1.20 on ssh
1 device has a firmware upgrade available.
Run `fwupdmgr get-upgrades` for more information.
Kingdom: Fungi
Division: Basidiomycota
Class: Agaricomycetes
Order: Agaricales
Family: Physalacriaceae
- From each gallery (subdir)
index.html"main" thumbnail- encoded at (XPath):
/html/head/meta[@property="og:image"]/@content
- encoded at (XPath):
- By extracting each gallery thumbnail with
xmllint --xpathas shown here:
mbohun@mamlas:~/pCloudDrive/Public Folder/fungi> find . -name "index.html"
| xargs xmllint --xpath 'string(/html/head/meta[@property="og:image"]/@content)'
[mbohun@danctnix ~]$ sudo dmesg -T
...
[Sat Dec 7 16:19:49 2024] usb 2-1: new SuperSpeed USB device number 8 using xhci-hcd
[Sat Dec 7 16:19:49 2024] usb 2-1: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00
[Sat Dec 7 16:19:49 2024] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[Sat Dec 7 16:19:49 2024] usb 2-1: Product: USB 10/100/1000 LAN
[Sat Dec 7 16:19:49 2024] usb 2-1: Manufacturer: Realtek
- https://leafletjs.com/
- CREATE/EDIT/TEST geojson: https://geojson.io/
- REDUCE geojson files: https://reducegeojson.radicaldata.org/
- TODO
- TODO
for jpg_photo in `ls *.jpg`; do
raw_lat=$(identify -format '%[exif:GPSLatitude]' ${jpg_photo})
raw_lon=$(identify -format '%[exif:GPSLongitude]' ${jpg_photo})
lat=$(echo "$raw_lat" | while IFS="," read -r deg min sec; do echo "scale=6;$deg + $min /60 + $sec / 3600"| bc; done)
lon=$(echo "$raw_lon" | while IFS="," read -r deg min sec; do echo "scale=6;$deg + $min /60 + $sec / 3600"| bc; done)NewerOlder