ROCKpro64
by PINE64- Rockchip
RK3399
- Rockchip
big.LITTLE
architecture:- Dual Cortex-A72
0xd08
- Quad Cortex-A53
0xd03
- Dual Cortex-A72
NOTE: "CPU part" identifies the A53 and A72 CPUs respectvely.
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
index.html
"main" thumbnail
/html/head/meta[@property="og:image"]/@content
xmllint --xpath
as 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
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)