I think that means the access point can only run at up to 80Mhz bandwidth, so not full bandwidth.
I think that means the access point can only run at up to 80Mhz bandwidth, so not full bandwidth.
I9 14900k…bad news for you, 13th and 14th gen I9 is unstable, crashes.
Suggestion: Wait for 15th gen or AMD 9000 series CPU to come out.
I remember trying Retroshare… no offline message is the biggest obstacle.
HTML Form + any backend of your choice (that can handle HTML form)
Forgot to answer this question, yes I think it would work.
I am pretty sure you can set your own DNS server in Android.
I think most up-to-date OpenWrt routers can do later (with normal, unencrypted DNS requests), see https://openwrt.org/docs/guide-user/firewall/fw3_configurations/intercept_dns.
The model you mentioned (Flint 2) is supported by OpenWrt.
route ipv6 dns to a destination of my choice
Does this mean setting custom DNS server (so devices using DHCP picks up what DNS server you want them to use) or intercept DNS requests (MITM or use firewall rule to drop outbound 53 port requests)?
asyncio provides “cooperative concurrency” for python.
Lets say you need to download 10 webpages in python, someone might do
result1 = requests.get(...)
result2 = requests.get(...)
....
result10 = requests.get(...)
Down side is that each requests.get() blocks until HTTP request is done and if each webpage loads in 5 seconds your programs needs 50 seconds to download all pages.
You can do something like spawn 10 threads, but threading has it’s own downside.
What coopertive concurrency does is allowing these coroutine(tasks) that can tell Python to do something else while a function is waiting for something… I think it’s the best to read some Python examples. https://docs.python.org/3/library/asyncio-task.html#coroutines
examples that solves requests.get() problem with asyncio but it’s probably better to use libraries that builds around asyncio.
There is also lowendtalk and lowendspirit, both the them are forums where you can make a post to ask.
Pick one of the address between 000000.xyz to 999999999.xyz they are sold and renewed at dirt cheap prices.
Install tailscale from F-Droid not Google Play. I had trouble setting up custom server with Google Play version.
Installed from F-Droid and it works without issue, thanks
Tailscale server can also be self-hosted, look into headscale.
From my own experience, I still can’t setup headscale on my Android phone, I think latest tailscale APP fucked up setting custom server function. Don’t install from Google Play
Also recommend https://lowendspirit.com/
AFAIK LET do shenanigans like requiring service providers to pay to create post there now.
Phoronix article: Coreboot Lands Support For The MSI PRO Z790-P Motherboards
On Dasharo (who worked on support for MSI boards) has pre-flashed motherboard for sale on their website, but looking at the price it’s expensive, but it comes with some support.
Without the need for versioning, I think rclone fits the description. For backup into USB drive / remote SSH server I would recommend rsync.