Top
Best
New

Posted by tsujamin 3 days ago

Simple trick to increase coverage: Lying to users about signal strength(nickvsnetworking.com)
437 points | 179 comments
zabumafu 3 days ago|
I implemented the same behavior in a different Google product.

I remember the PM working on this feature showing us their research on how iPhones rendered bars across different versions.

They had different spectrum ranges, one for each of maybe the last 3 iPhone versions at the time. And overlayed were lines that indicated the "breakpoints" where iPhones would show more bars.

And you could clearly see that on every release, iPhones were shifting the all the breakpoints more and more into the left, rendering more bars with less signal strength.

We tried to implement something that matched the most recent iPhone version.

waterhouse 3 days ago||
To be sure, is it possible that, on each subsequent iPhone release, the hardware got better at handling weak signals, and thus a mediocre signal for iPhone N was decent for iPhone N+2 and would give great throughput on iPhone N+4?
Cthulhu_ 3 days ago|||
Possible sure, but wouldn't it be better marketing for the iphone to have better performance on lower bars? Phones are judged for their performance, but network providers for the number of bars they show on the screen.
lxgr 2 days ago||
Bars are supposed to be an indicator of actually achievable quality of service, in my view. I don't care why I can use my network where I am, I just want to know whether I can.
vultour 2 days ago|||
The comment you’re replying to is incredibly concerning. Is he saying people at Google are purposefully misrepresenting signal strength so they can “compete” with Apple?
JoshTriplett 3 days ago|||
> We tried to implement something that matched the most recent iPhone version.

So, game-theoretic evil?

jayd16 3 days ago||
Don't be evil but also morality is relative.
sunrunner 3 days ago|||
Just like signal strength.
chipsrafferty 2 days ago|||
As long as we aren't the #1 most evil company, we're pretty fine
hshdhdhehd 3 days ago|||
Thats why I experienced 2 bars equals zero internet today?
dawnerd 3 days ago|||
Bars really don’t matter. You can have full bars and slow to no internet. You can have one bar but relatively decent internet. Honestly kind of wish the signal display would go away and instead show me when I lose internet.
toast0 3 days ago|||
When you lose internet, you get a ! next to the bars (at least I have on my last few androids). Usually I also have no bars when I lose internet, but sometimes I've got coverage without data flow.
willis936 3 days ago|||
You can have full bars and no internet when jammed in a crowded space with full pipes. Just because the PHY is linked doesn't mean you have internet.
smcin 2 days ago||
True, but brownout due to network congestion is not the complaint here.
dawnerd 3 days ago||||
Wish Apple would do that. It’s kind of a guessing game.
chipsrafferty 2 days ago|||
You should but you don't always
lxgr 2 days ago||||
Yes, please!

And while we're at it: Just surface the fact that connectivity sucks to applications (maybe even at the socket layer, by just closing them if there's not been any forward progress for a certain time), rather than showing me loading screens that'll never go anywhere for minutes.

This would give apps that do have some offline caching the chance of falling back to that (looking at a certain green music streaming service here).

simscitizen 2 days ago||
It is surfaced to apps, but the "just detecting that connectivity sucks" heuristic turns out to be not all that easy to implement. There doesn't seem to be a better heuristic than "try and let the app decide if waited too long".

There are some comments here: https://developer.apple.com/documentation/systemconfiguratio...

pants2 3 days ago|||
Almost like it should just be a combo of realized ping + internet speed instead of signal strength
xfactorial 3 days ago||||
That is literally what i am observing lately with my provider: i have 2 bars and yet i do not have internet, where as my gf, using the same iPhone model, with a different provider, having 2 bars, has perfect data connectivity.
Cthulhu_ 3 days ago|||
I build apps at the moment, in addition to the phone's network indicators you really should provide your user with visible and live feedback to indicate whether the servers are reachable because there's so many things that can break down in between. Also programming your app for offline-first is good unless it's critically important the information is either live or absent. We allow offline access by using React Query and storing its caches in user storage.
mschuster91 3 days ago||
> And you could clearly see that on every release, iPhones were shifting the all the breakpoints more and more into the left, rendering more bars with less signal strength.

One thing explaining this might be that advancements in antenna design, RF component selection including the actual circuit board and especially (digital) signal processing allow a baseband to get an useful signal out of signal strengths that would have been just noise for older technology.

In ham radio in particular, the progress is amazing. You can do FT8 worldwide (!) communication on less than 5 watts of power, that's absolutely insane.

userbinator 3 days ago||
A friend recently got a (carrier-supplied) phone and has been complaining about how it would often have no reception despite showing a good signal; taking mine to the same areas on the same carrier and doing a comparison, mine was indeed showing no bars on the signal indicator. The difference is, mine predates this stupidity, and I can also see the details in the MTK Engineer Mode app, which shows the actual signal strength --- it was around -140dBm when it was showing 0 bars.

The signal strength measurement is actually standardised: https://en.wikipedia.org/wiki/Mobile_phone_signal#ASU

dataflow 3 days ago||
> taking mine to the same areas on the same carrier and doing a comparison

Unfortunately I don't think it's that simple. I've seen one phone simultaneously show significantly different numbers of bars for two SIMs installed in it for the same exact network and operator. After a while they become similar... then differ again... etc.

I have no clue how to explain it yet, but what I do know is that it literally makes no sense with a naive model of how these work, whether you try to explain it as reception or deception.

objectcode 3 days ago|||
The phone selects a RAT (radio access technology) and frequency for each SIM slot.

After selecting, each SIM slot is subject to inter freq / inter RAT reselection / handover.

Both are controlled by messages received from the tower (e.g. on 4GLTE, for reselection, System Information messages), though there is an additional constraint: what's supported by/enabled in the phone.

Perhaps one SIM slot was in the connected state and the other was in the idle state at one point. So the reselection logic applied for one and the handover logic applied for the other. There is for example a problem called ping pong handover. Once a phone is switched to a different frequency or RAT, the tower may have the phone be sort of stuck in the new frequency, until the conditions of the previous RAT or frequency improve substantially, in order to prevent the phone being like a ping pong ball between the two. This frees resources that would otherwise be spent on repeated handover-related messages.

Each frequency has its own signal strength (free space path loss, transmit power, one frequency might be on one tower and another might be on another, etc).

lukec11 3 days ago||||
This is usually for a good reason - dual sim phones are almost always “DSDS”, or “Dual SIM Dual Standby”. The secondary SIM, because it doesn’t need to make a data connection, parks itself on the lowest-frequency (and therefore usually lowest-bandwidth) connection it can find. Meanwhile, your data-connected SIM is busy trying to stream a video or upload your photos, so it’s using a higher-frequency + higher bandwidth connection, resulting in a lower signal strength.
dataflow 3 days ago||
> Meanwhile, your data-connected SIM is busy trying to stream a video or upload your photos

You're making huge and incorrect assumptions here, no? This also happens when your phone is entirely idle... and it randomly changes if you sit still for some time...

estimator7292 2 days ago|||
Your phone is never idle. Open your adb logs sometime and you'll see that it's doing a ton of stuff all the time. Much of which involves a network connection.

So your phone is basically always doing something, and frequently sending and receiving data when you assume it's doing nothing. By design, radios hop around between channels as conditions change. Another device somewhere outside your house kicked off a big transfer and your device hopper channels to avoid interference. Random atmospheric conditions introduced new noise, or another channel cleared up. This is standard, normal behavior for WiFi, Bluetooth, cellular, and essentially every other type of modern digital radio.

What you're seeing is normal and expected behavior. Modern radios and operating systems are vastly more complex than you're assuming.

lxgr 2 days ago|||
How do you know that your phone is entirely idle?
janandonly 2 days ago||||
I also have multiple SIMs set to the same network, with sometimes a different amount of bars shown.

I guess the bars aren’t realtime but updates every x seconds? I summed no malice.

hulitu 3 days ago|||
> I have no clue how to explain it yet

Android is quiet lazy searching for towers.

userbinator 3 days ago|||
I think it has more to do with the cellular modem itself, or precisely the firmware it's running; of which there is much more diversity on the Android side.
devmor 3 days ago|||
As I read this comment on my iPhone 15, I have 1 bar of 5G signal on one esim and 3 bars of signal on the other.

This suggests that the issue is not related to Android.

brewdad 3 days ago||
When we visit downtown of our city, I get great data coverage. My wife, on a different model but same gen iPhone and same plan, gets nothing. Her phone shows three or four bars but her apps won't load anything.

No idea why, especially since I'm the one who installs ad blockers and such. Her phone is essentially stock.

toast0 3 days ago|||
> My wife, on a different model but same gen iPhone and same plan, gets nothing.

Some generations, different Apple models have pretty different radios. Is there a difference in bands or ?

NaomiLehman 2 days ago|||
is it perhaps iPhone 16e?
devmor 2 days ago||
15 Pro Max
Yizahi 3 days ago|||
I highly recommend Network Cell Info Lite app for the network diag. It shows signal strength with all details for each of the SIM modules, shows on a map in real time where are the base station you are currently connected to, and other interesting statistics.
hombre_fatal 2 days ago|||
There’s no way you earnestly recommend the hot steaming pile of ad-ridden caca I just installed on my phone.

That might be the worst app I’ve used on my iPhone in a year. Better off vibe coding an app to give you signal strength.

Yizahi 2 days ago|||
Well, there is a paid version (which I didn't try), presumably without ads. As for the Lite version, I don't know exactly why, but ads in this particular app never load on my phone. I see only a black space at the bottom where they supposedly should be visible, but they never load for some reason, without any action from my side. And I think the same happened on my previous phone too, need to check later.
hombre_fatal 16 hours ago||
Sorry, I came off too strong since you were just making a recommendation. But man is it bad on iOS.
binarysneaker 2 days ago|||
Just tried the Android version and it was ok.
mrguyorama 2 days ago|||
Does iOS not have built in network signal details?

I don't need to install an app on my Android phone to see my network signal strength. It's kinda hidden though.

Settings->About Phone->Click the sim slot you want to see info for

MaxL93 2 days ago||
-140 dBm is far beyond no coverage, yeah. -120 dBm is pretty much when LTE stops working (sometimes it can painfully stretch to -123 to -125 but usually not because of noise etc)
ac29 2 days ago||
Yes, even thermal background noise (the noise level that exists even in complete absence of RF) would be expected to be above -140dBm. It scales with channel size and temperature.

As near as I can tell, the smallest subcarrier 5G can use is 15kHz, the thermal noise floor for a 15kHz channel at room temp (300K) would be -132 dBm.

My guess is whatever chip doing the measurement simply couldn't measure that low accurately, or it reports "nothing detected" as -140 dBm.

userbinator 2 days ago|||
GPS receivers can go down to around -160dBm, but that's a very low bitrate signal. Nonetheless it is possible to receive such signals via CDMA techniques.
throwaway270925 2 days ago|||
Reminds me of "The Hunt For Red October" and the sonar consoles "magma displacement" reportings...
gadders 3 days ago||
Related: https://www.bbc.co.uk/news/articles/crexqyj7n5lohttps://www....

"Tests carried out by research group PolicyTracker, and shared with BBC's Morning Live, found that nearly 40% of the time a phone displays the 5G symbol, it is actually using a 4G connection"

Cthulhu_ 3 days ago||
I worked for a mobile network company a few years ago, the vibe I got there was that 5G penetration was still years away and that none of the providers were anywhere near ready for it.

Interestingly that company built a bridge of sorts allowing providers to get more life out of their older hard and software, converting e.g. 5G signals to 4G and 4G to 3G (where a signal is for example a phone phoning home telling the provider they used a megabyte of data, or looking up the IP address when calling a phone number)

Also where 2/3/4G network signals were all their own protocols (RADIUS and DIAMETER), 5G is just HTTP. And where for the 3G/4G stuff they had to write their own code to handle the protocols, for the 5G stuff they just used the cURL library. That is, cURL powers 5G networks.

lxgr 2 days ago|||
At least there's some merit to that, since many network don't yet use a 5G core (or SIM cards aren't capable of using it), so the definition of when you "are on 5G" is really murky: https://source.android.com/docs/core/connect/5g-nsa
crtasm 2 days ago||
fixing link: https://www.bbc.co.uk/news/articles/crexqyj7n5lo
gadders 2 days ago||
Thanks. That'll teach me not to proofread.
metadat 3 days ago||
You know, I don't recall ever seeing 1 bar of signal strength on a smartphone. And once it's down to 2 bars, it barely works, if at all.

Human brains: wow, what a bunch of suckers. Damn.

By the way, is it legal to be deceptive in this way?

eqvinox 3 days ago||
> You know, I don't recall ever seeing 1 bar of signal strength on a smartphone.

I do.

I'm from Germany, land of perpetual EDGEing. Highest total GDP in the EU but can't build a mobile network for the life of it.

Then again we somehow forgot how to run trains and build cars without cheating, so I guess it fits.

Want to see a single bar? Come visit, our carriers aren't on the list with that inflate flag enabled. I guess they didn't get the same memo as the car manufacturers ;D

JoshTriplett 3 days ago|||
> Highest total GDP in the EU but can't build a mobile network for the life of it.

> Then again we somehow forgot how to run trains

The mobile networks don't have enough dB and the trains have too much DB?

hnbad 2 days ago|||
The boneheaded decision to "privatize" rail by creating a state-owned corporation competing with itself, a network of regional corporations with extremely inconsistent funding and separate corporations for various services like literally maintaining infrastructure definitely has resulted in "too much DB". Although I sincerely doubt attempting to actually open up those "markets" by introducing foreign corporations like National Express really does anything other than cannibalize rail services even further.

I still can't get over the justification for abandoning the €9/month universal ticket experiment (and replacing it with a €49/month offering which has since been bumped to €58/month and will soon be raised to €63/month) officially being in part that "rail will be worse when more people use it" (the other mostly being "not enough people used it to demonstrate its value" and "people used the ticket for trips they otherwise wouldn't have been able to afford to make").

We should just nationalize it all properly and make it free at point of service. Let tourists use it for free too, obviously. Infrastructure exists so the economy can happen, its ROI is a functioning industry and society so stop trying to pretend we can reasonably measure its success in profit.

lifestyleguru 3 days ago|||
Sir, with this comment you signed up to auto-renewable two years contract.
fransje26 2 days ago||
For the bargain of 45€ a month. Noncancelable.
lifestyleguru 2 days ago||
Direct debit required, service not guaranteed.
microtonal 3 days ago||||
I feel you. We have stellar coverage pretty much everywhere in NL. Heck, I was recently in a work video meeting in the car, not a single drop. The route included part of this:

https://en.wikipedia.org/wiki/Afsluitdijk

Yet, when we visit family in Germany, five minutes after crossing the border we are in a cellular dead zone.

kmm 3 days ago|||
Interesting to see you have a different experience. I'm not sure I would call it stellar. On the train route between Den Haag and Amsterdam, one of the busiest routes in the country presumably, reception is constantly dropping out. I'd love to be able to work on the train, but it's completely impossible if you need a network connection for anything.

Perhaps the route being so busy is the cause of the connectivity issues, but it's still baffling to me how bad it is, given that the amount of mobile devices trying to connect must be very predictable.

Cthulhu_ 3 days ago|||
+1 on the train, mobile internet in the train is really bad. I kinda get it because you're in a faraday cage, moving between cells quickly, and frequently far outside of inhabited areas but still.

I'm pretty sure the in-train internet also relies on mobile networks, so that's unreliable too. Plus any bandwidth is taken up by people scrolling through tiktok.

janandonly 2 days ago|||
But in NL all the trains have WiFi, no?
hnbad 2 days ago|||
Germany is a developing country when it comes to broadband let alone wireless internet.

The short version is that the chancellor we had in the 1990s didn't like how the public broadcasting channels were talking about his failures and wanted to push the development of private broadcasters (who being beholden to financial interests rather than objective news coverage mostly spoke favorably of him) by prioritizing cable television over fiber. A surprising number of things came downstream from that pivotal decision, e.g. the completely braindead way we sold frequency bands (which resulted in some literally remaining unused because there were initially no requirements to actually do anything with them).

lifestyleguru 3 days ago||||
Moving to Germany from countries where mobile networks function is traumatic. My welcome experience was USB stick with faulty drivers, balance zeroed immediately because of not activated packet, then sipping expensive 1GB data packets over choppy connections. Of course that was all my fault. The only reliable thing was monthly billing and enforcement of contract length by the telecom. When I heard before arrival "there is no internet in the apartment but you can simply buy USB stick" I had subconsciously felt there will be problems. Fuck, I hate these memories so much. Fuck everything about it and everyone involved.
eru 3 days ago||||
> Highest total GDP in the EU but can't build a mobile network for the life of it.

GDP per capita (or GDP per square metre) would be a more useful indication here. Otherwise, you could throw a bunch of poor countries together--just for purposes of statistics, and expect a better mobile network?

wongarsu 3 days ago|||
GDP per square metre is probably the best metric, even though it's the more rarely used one. [1] has a neat map of Europe by GDP density.

However Germany is still very high in both GDP per capita and GDP per land area. Roughly on par with the UK, and far higher than France which has a much better mobile network

1: https://ssz.fr/gdp/

eru 2 days ago|||
> GDP per square metre is probably the best metric, even though it's the more rarely used one. [1] has a neat map of Europe by GDP density.

Well, it would be the best metric, if your country was homogeneously populated.

If everyone lives in one big city and there's literally no one in the rest of the country, then I expect mobile reception (and every other service) to be pretty good for everyone, because they all stay in the big city.

> However Germany is still very high in both GDP per capita and GDP per land area. Roughly on par with the UK, and far higher than France which has a much better mobile network

Yes, France, Germany and UK are all equal enough in these measures (well within an order of magnitude) that the much bigger difference in mobile networks is most likely due to some other factors.

mr_toad 2 days ago|||
> If everyone lives in one big city and there's literally no one in the rest of the country, then I expect mobile reception (and every other service) to be pretty good for everyone, because they all stay in the big city.

Sometimes the reception is good but the data rate is poor because of too few towers per person, or because the cellphone companies connections to the wider internet are saturated.

wongarsu 2 days ago|||
Luckily Germany is pretty homogeneously populated. Far more so than the UK (England is pretty even, but Scotland is far emptier) or France (1/5th live in the Paris metro area).
swiftcoder 2 days ago|||
> GDP per square metre is probably the best metric

GDP per square metre only really works for countries with uniform population density. For example, by European standards, Spain is huge, and basically entirely empty outside of a handful of cities...

dmurray 3 days ago||||
There are some economics of scale that work best at the country level.

Even with the EU single market, mobile phone operations almost always follow country borders. You'll get a different set of providers in Germany than you'll get one km away on the other side of the Rhine in France. Even though some of them may have the same name or the same ultimate owner or both, and even though you can roam on the other side of the border, you'll have a contract with a different entity, and different people will build and maintain the networking equipment.

Conversely, in the US, the major carriers all have nationwide coverage.

eqvinox 2 days ago|||
Thing is, mobile networks are national affairs. A bunch of small countries has a lot of small telcos. Germany has 3 (2? not sure with the mergers) large telcos.
samplatt 3 days ago|||
I also do, I'm Australian. I regularly experience both congestion caused by tower over-subscription as well as traveling waaaay out into the country where there's no reception, even on the Telstra network that boasts better coverage than everyone else by a mile.
Panzer04 2 days ago|||
I rarely encounter outright congestion in Australia tbh, but then again I avoid watching videos on the train.. so that's probably indicative of something :D

Coverage is decent on Telstra, but if you're out of town reception is rarely any good, presumably because there's little to no incentive to improve it when there's no on around to need it.

_carbyau_ 3 days ago|||
Better coverage may be claimed. But as you know, Australia is a big place.

The few farmers I know have a rough idea of the on-the-ground cell coverage. They say things like "this side of the hill/town" usually. I've seen them deliberately walk to the other side of a silo to make a call.

I assume that the coverage maps are assumed cell-tower-coverage-if-shit-is-not-in-the-way. No surprise radios are common.

bitwize 3 days ago||
A Diné (Navajo) slang word for "cellphone" is "bił nijoobałí" which means "the thing you spin around with". Coverage on rez is not great you see, and in some places is so marginal that whether you get a usable signal depends not just on position but orientation...
robot-wrangler 3 days ago|||
> Coverage on rez is not great you see

Tangent but this is a pretty interesting topic. I've heard people speculate that local politics deliberately prevents such infrastructure, waiting for some kind of kickbacks to make it worth their while. Others suggest that it happens because federal telecom subsidies aimed at improving rural connectivity don't apply, as a kind of retaliation for tribal sovereignty. Way off-grid, ok, maybe it's simply not worth it to corporate telecom, but whatever the cause coverage even in fairly populated areas around Kayenta/Monument Valley is also quite bad in a way that would be infrequent in comparable communities in say, nowhere Appalachia.

Many a suburban parent of smart-phone addicted children would romanticize the whole thing and actually be kind of jealous of a situation like that. Years back and on the other side of the world, tourists were very scandalized about more roads and towers around Annapurna in Nepal.. but of course the locals usually do not actually like to be cut off from the world.

More telecom is probably good despite the evils, but fuck commercial billboards in particular. Those are still creeping closer to the Grand Canyons and Yosemites, and they suck whether it's for multinationals like McDonalds, or for locally owned gas stations or hotels that put cash into tribal communities. Ban them all like Hawaii, and everyone will be astonished to learn that the world keeps turning..

rendall 2 days ago|||
Cool: https://endangeredlanguages.com/resource/navajo-word-day-cel...
ssl-3 3 days ago|||
Humans are strange indeed.

I work with cellular BDA-DAS[1] gear sometimes, and I don't recall the last time I looked at the signal strength display on my phone. It has probably been years.

For me: It either works, or it doesn't work. It is either fast-enough, or impossibly-slow. It's very binary, and the bar graph at the top never told me a damned thing about what I should expect.

[1]: Bi-Directional Amplifier, Distributed Antenna System. In theory, such constructs can make indoor cellular coverage quite good inside of buildings that previously had none. In reality it can be... complicated. And while the bar graph doesn't mean anything, I still need ways to see what's happening as I spend hours, days, or [sometimes!] weeks surveying and troubleshoot and stuff. The phone can report things like RSRP, RSRQ, and some other tasty bits instead of just a useless graph -- and from there, I can sometimes make a hand-waving guess as to what I may reasonably expect for performance.

But that stuff is normally pretty well hidden from view.

wtallis 3 days ago|||
> It is either fast-enough, or impossibly-slow. It's very binary, and the bar graph at the top never told me a damned thing about what I should expect.

A few months ago, I was in a remote area at anchor on a sailboat, about 6.5 miles from the nearest highway through the swamp, with only a few farms and a handful of houses within that radius. With my phone up in the cockpit of the boat and tethered over WiFi to my laptop, I was able to download a movie. As the boat swung on anchor, the download was occasionally interrupted, but when data was flowing it was consistently 5-10 MB/s over a claimed 5G link; the movie downloaded in much less time than its runtime. I assume I wasn't competing with much other traffic on that tower, wherever it was. So my experience was even more binary than yours.

The phone's signal indicator did seem to accurately indicate when it had no usable signal at all, but beyond that I'm not sure it was providing any useful information. And I'm not sure if it could have told me anything of use other than "connected" or "not connected". The very marginal connection was still faster than I had any right to expect for those conditions.

vachina 3 days ago||||
HN is the only website that works on 1 bar. If HN doesn’t load then nothing loads.
1718627440 2 days ago||
SSH also works over crappy connections. It even works reliably when the network went down for minutes.
Affric 3 days ago|||
I had my car break down in remote mountains and that little image had me climb up trees and eventually find a place where I could make a call from. Once I had two bars they could hear me, before that it was the case that they weren't getting what I was transmitting.
pants2 3 days ago|||
I had a very dangerous 1-bar the other day. You see I was in the Canadian wilderness relying on iPhone text-over-satellite, which works well, but only when you have no signal. I needed to relay a message to the rest of my group when suddenly I find myself with one bar of 3G that was completely and totally inoperable. No messages were getting through. But to make matters worse, since my phone thought it had a bar, it wouldn't activate satellite. I tried every setting and then for 20 minutes hiding behind various rocks to try to get my one bar to go away when finally I found a spot that would let me satellite text again.
tzs 3 days ago|||
Try going into a Home Depot. I don't think I've ever found one where aside from fairly near the front I've had other than 0 or 1 bars, across a variety of phones and carriers and in neighborhoods where the signal outside the store was strong.

The net is telling me this is because of the aisle after aisle of tall metal shelving and the building itself also has a lot of metal in the construction.

It is quite annoying when you are trying to use the Home Depot app to look up something.

bombcar 2 days ago||
At least Home Depot usually provides free WiFi. Until very recently our Costco was a faraday cage with no cell and no WiFi offered.

They finally added WiFi a year ago or so.

I hated having to walk near the doors to send a “was it this” question to the wife.

davemp 2 days ago|||
I’ve always just blamed the extreme bloat of the web and lack of design around poor connections for 2bar lack of performance. HN usual works fine on but that’s about it for sites I visit.
tiznow 3 days ago|||
Consider yourself blessed, the one place in my neighborhood where I get one bar on LTE is the same place I once was repairing my car. Awful experience but the rest of the subdivision is fine.
lxgr 2 days ago|||
For some reason, I've spent several weeks (across a few years) in Italy with exactly one bar of signal strength on an iPhone when roaming on Vodafone.

It must actually be tricky to space out towers that sparsely without creating any obvious coverage gaps, but if anyone is up to the task, it's certainly Vodafone (let's not talk about the actual service quality, though).

Yizahi 3 days ago|||
Android phones show 1 bar pretty reasonably and fair. To illustrate this, I have 1 bar on both my SIM modules right now, which translates to the -125 dBm signal on both. So the connection is up, but it is borderline low.

Wifi-calling to the rescue :)

jrmg 2 days ago|||
Our house is in kind of a hollow despite being in a city, and I (and guests - all networks seem just as bad) get one bar basically all the time at home.

Phone calls are hit-and miss without WiFi calling switched on.

tatersolid 1 day ago||
My house is also like this. No signal on any carrier, and same with one of my neighbors but not neighbor on the opposite side.

Looking at satellite view it is clear that the local municipal water tower is between a huge cell tower near the highway and my house. All carriers seem to lease that same tower only in my area.

It wasn’t like this when I moved in but I guess the carriers consolidated on that big tower near the highway about two years ago.

Radio shadows are a thing I guess.

bombcar 2 days ago|||
Rural - I see one bar quite often, and sometimes a call will barely hold on through zero bars (works best if I’m just listening).

But one bar is death for Internet - though HN will often load; anything heavier won’t.

dawnerd 3 days ago|||
I have one right now and internet is working well enough. Even says lte.
MangoToupe 3 days ago|||
I see it all the time driving through the country. Probably a dozen times just today driving through the american east coast. I agree that two bars is the bare minimum for any functionality though.
3eb7988a1663 3 days ago|||
Heh, my phone consistently reports 1 bar inside my apartment within a major metropolitan area. Indeed binary, because it works enough for the few times I actually take calls not on wifi.
mattmaroon 2 days ago|||
Wish I could post a pic on HN because I’m reading this with one bar. But it’s on iOS. Does Apple just not let carriers do this?
jmspring 3 days ago|||
spend some time in rural areas, you will see a one or two bar here and there and sometimes it works, sometimes it is not.
OptionOfT 2 days ago||
Original commit that introduced the change: https://android.googlesource.com/platform//frameworks/base/+...

I don't know if I want my name on an open source project attached to a commit whose only purpose is to lie?

wolfd 2 days ago|
I would assume that this was a carrier request/demand that got filtered down to some poor employee that had to implement it. There’s a linked bug, but the bug is restricted.
sanex 3 days ago||
IIRC this really took off with the antennagate fiasco on the iphone 4. I was working for Verizon at the time and this was also the first one we were able to sell. I forget who it was that did it but I believe it was Apple in response to people "holding their phone wrong" so they bumped everything up a bar so you couldn't tell. There was a lot of competition at the time but also all the androids had better margins so they wanted us to sell those instead.
SkiFire13 3 days ago|
> but also all the androids had better margins

That's not something I was expecting to hear

hshdhdhehd 3 days ago|||
Makes sense that Apple offer lower margins for retailers as it is the stronger brand. Supply and demand. "Oh we wont sell Apple... yeah right!".

But then of course if you can push a customer one way or the other it will be to the higher margin product.

bombcar 2 days ago||||
Part of Apple’s high margins is being able to bully retail into taking lower margins. And they sell direct, too.
sanex 2 days ago|||
Yeah they essentially told us that any resellers had to pay retail for Apple products.
alberth 3 days ago||
I wonder if it’s more intuitive that way.

Like what Apple does with stopwatch.

https://lukashermann.dev/writing/why-the-iphone-timer-displa...

happytoexplain 3 days ago||
This is just rounding to nearest instead of down or up, not statically adding a whole interval (as the author realizes in an addendum).
Thorrez 3 days ago||
My oven always rounds up. Until the last minute, when it immediately switches from 2 minutes to 59 seconds.
kybernetyk 3 days ago|||
Heh, funny. I recently implemented a countdown for a teleprompting app and that's exactly what I ended up doing to make the countdown "feel right".

The countdown in question doesn't display fractions of a second so it would immediately switch from "5 seconds left" to "4 seconds left" which just doesn't feel right. Adding 0.5s solved the issue.

fainpul 3 days ago|||
Just round up. The countdown is done as soon as 0 appears (0 doesn't linger for 1 second).
happytoexplain 2 days ago|||
To expand a bit on what others have said:

If you're counting up, round down. If you're counting down, round up. A human expects the count to finish at precisely the moment we get to the last number in the sequence (zero, for counting down). Do a count in your head to see what I mean.

Apple chose a compromise by rounding to nearest, for it to "feel good", but you lose the ability to exactly predict when the timer ends as a human. Typical Apple.

godelski 3 days ago|||
It seems easier to use the ceiling
saghm 3 days ago||
From looking at the bottom of the linked post (which says it was edited, not sure when in relation to your comment), it sounds like they wanted something that worked across arbitrary times split across units (hour/minute/seconds) without having to handle carry-over. I'm not sure I would choose to alter the times themselves over making the math a bit more complex, but the author has obviously thought about this a lot more than me, and it's nice that they at least considered that alternative.
vachina 3 days ago||
It is still tracking the actual time though.

This signal strength is straight up lying about the actual signal strength

Leftium 3 days ago||
There is a way to switch the bars to actual numeric dBM: https://www.techbout.com/display-iphone-signal-strength-in-n...

(Probably a way to do it on Android, too)

A CSR showed me this while debugging network connectivity issues with my phone.

dataflow 3 days ago||
Is there any reason to believe this mechanism is actually there to help carriers deceive users? To me this looks like it's intended to address some other issue, like perhaps "I have zero bars shown, what do you mean I'm still connected? That that clearly means I'm disconnected..." I feel like anything intended to lie to users would not be implemented in this manner.
userbinator 3 days ago||
Is it more common to complain to the carrier about unexpected reception, or unexpected lack thereof?
Maxious 3 days ago|||
AT&T sold themselves on More Bars https://www.wired.com/2007/08/att-more-bars-i/
NoMoreNicksLeft 3 days ago||
Think about all the various policies, dishonesty, PR spin, marketing, price-gouging, hidden fees, elimination of lifetime programs, and yes, outright fraud you've become aware of over the years. Just sit quietly for a moment, let those ideas stew. And if after one minute of silence you still feel the need to bestow upon these companies the most generous interpretation of their conduct possible, well, I'll be slightly surprised but I suppose that would conclude our conversation.
dataflow 3 days ago||
I think you missed important nuance in my comment. Note in my comment I was asking about this mechanism. I'm not suggesting the companies involved wouldn't deceive users. I merely question whether this is how they would do it. It feels way too simple, coarse, obvious/public, and inflexible if the goal is to trick users.
jesprenj 3 days ago|
Where are those files stored on my phone? I want to check this for my ISP. Edit: git clone https://android.googlesource.com/platform/packages/apps/Carr... && cd CarrierConfig && grep -rnie inflate
More comments...