HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jonathonlui

no profile record

comments

jonathonlui
·4 maanden geleden·discuss
There's some testing to see how covering open irrigation canals with solar panels which would reduce evaporation and generate power

> Their analysis found that putting solar panels over the 4,000 miles of California’s open canals could save up to 63 billion gallons of water annually

https://www.universityofcalifornia.edu/news/solar-panel-cove...
jonathonlui
·4 maanden geleden·discuss
Some mobile phone providers check the packet TTL to limit tethering.

Network packets commonly have start with default TTL values of 64, 128, or 255. Each hop in the network subtracts 1.

When phone connects direct to carrier (cell tower, I assume) the carrier will see TTL of 64.

A laptop tethered to a phone introduces a hop so laptop-to-phone TTL is 64, phone-to-carrier TTL is 63.

Carriers can then limit bandwidth if network packet that don't have a common TTL.

For `iptables` look at `--ttl-inc 1` (to add back the 1 so 63 => 64) or `--ttl-set 64`.

Alternatively, you set the tethered devices to use a TTL of 65, e.g. linux/mac `sysctl -w net.inet.ip.ttl=65`
jonathonlui
·vorig jaar·discuss
At the bottom of page:

> Copyright © 2014 - 2025 Mark Litwintschik. This site's template is based off a template by Giulio Fidente [1]

The theme is for the Pelican [2] static site generator.

[1] https://github.com/gfidente/pelican-svbhack

[2] https://getpelican.com/
jonathonlui
·3 jaar geleden·discuss
Not a pro, but the handful of times a month I solder, the Pinecil has been great. It can use TS100 tips so easy to get different tips.

It packs easily away in a plastic shoebox with my soldering accessories and consumables along with whatever project I'm currently working on.
jonathonlui
·4 jaar geleden·discuss
As you noted, in the US, 3G and older cellular modems aren't usable.

For current cellular technology, the keywords to look for are LTE-M [0] and NB-IoT [1]. Most of these types of dev boards aren't cheap. Particle makes a 65 USD board [2] and they seem to have a free tier for cellular data access.

[0] https://en.wikipedia.org/wiki/LTE-M

[1] https://en.wikipedia.org/wiki/Narrowband_IoT

[2] https://store.particle.io/collections/ethersim/products/boro...
jonathonlui
·4 jaar geleden·discuss
There's a ~$90 million wildlife crossing that started construction earlier this year in Agoura Hills, CA [1] where apparently many mountain lions try to cross.

It wouldn't have helped P22 since there's many roads and freeways in the 30 miles between Griffith Park, where P22 lived, and Agoura Hills but there's some progress in helping mountain lions in the area.

[1] https://en.wikipedia.org/wiki/Wallis_Annenberg_Wildlife_Cros...
jonathonlui
·4 jaar geleden·discuss
After issues using various (cheap) USB 1Gbps ethernet adapters and an Intel MBP, I ended up getting one that uses a RTL8156B and seems ok. These are 2.5Gb adapters that use NCM driver so shouldn't cause high CPU.

I don't have 2.5Gb network equipment but have tested with iperf between and get around like 900 Mbps and no high CPU, unlike noticeable CPU usage with the cheap 1Gbps USB adapters that use ECM drivers

See also https://gist.github.com/MadLittleMods/3005bb13f7e7178e1eaa9f...
jonathonlui
·4 jaar geleden·discuss
This makes me think of of the Amazon Dash button which had a microphone [0] that would listen for ultrasound emitted from your phone to configure wifi credentials.

[0] http://www.blog.jay-greco.com/wp/?p=116
jonathonlui
·5 jaar geleden·discuss
In the USA, some states (including California) and private health care providers are using something called Smart Health Card [0] which is a signed JWT using public/private keys.

It's up to each verifier (e.g. phone app developers) to decide which issuers to trust but there's a list: https://www.commontrustnetwork.org/verifier-list.

[0] https://smarthealth.cards/
jonathonlui
·5 jaar geleden·discuss
Waveshare sells 1 to 13-inch panels for 7 to 540 USD: https://www.waveshare.com/product/displays/e-paper.htm

Pixel density isn't as good as say a nice Kindle, but they are usable. I've played around with one of their 1.5 inch module

You can buy old 6" e-reader panels for ~22+ USD https://www.ebay.com/b/ed060sc4/bn_7024905630

See https://spritesmods.com/?art=einkdisplay for how to drive them.
jonathonlui
·6 jaar geleden·discuss
If you can wire the 2 AP via a LAN, then this is how I've used cheap consumer wifi APs which are usually combo AP+router devices:

The first AP is connecting to internet gateway through its WAN port. This AP does the networking stuff like DHCP, NAT, etc.

The other wifi APs are configured to be AP-only, i.e. disable DHCP. Use same wifi SSID and auth settings as the first AP. Then connect the APs using their LAN ports.

Client devices should now connect to the AP with the best signal.

But if the client is already connected to an AP and a better-signal AP is available, many clients won't automatically connect to the better AP. This is because the client don't know that the other AP is the same network. So if you move around you may need to trigger the client to disconnect and reconnect.

This can be solved with APs that have a "mesh" feature which can instruct connected clients to reconnect to a better AP in the same network using https://en.wikipedia.org/wiki/IEEE_802.11k-2008 but AFAIK mesh systems from different manufacturers aren't interoperable.