Hacker Newsnew | past | comments | ask | show | jobs | submit | jbmchuck's commentslogin

Honest question - what's your use case for needing GPS indoors? I generally know where I am when I'm indoors :)


You're in a large building you're unfamiliar with. Particularly one with an unusual layout, like a mall or hospital.


For a variety of reasons I've set a personal best for time in large hospitals in the last year. They can be very difficult to navigate in the best of times, much less in the less-than-ideal mental state that often accompanies time in a hospital.


Maybe indoors is the wrong term: as soon as you don't have direct sky visibility it's relatively hard to get a position.

Some examples: on a train, on the underground, in a train station, in a mall, in an office building, ...


Probably depends on the construction of the roof and windows. At least on European trains I've never had an issue getting GPS (unless you are in a tunnel or subway system). It takes a bit longer to get the first fix if you don't have AGPS, but no worse than in a car. Same with planes. On the other hand in a building it it pretty much only works next to a window, and malls don't have windows


Even if you do, it will often take more time to acquire a fix than most people are used to


It's useful in shopping malls, airports, train stations, car parks and so on. Anywhere you need to navigate a large complex.


Not OP but navigating large malls, subway terminals, etc is nice


Regarding your first point - how about George Santos? I suspect Santos was more well known than any of the crypto-scammers, was clearly guilty, was derided by both ends if the political spectrum - yet Trump commuted him.


Commute != pardon. Santos is still convicted and guilty of all of those charges. He just doesn't have to serve the rest of the sentence. I'm not sure if those were felony charges, but if they were and he's in a state that doesn't allow felons to vote...

A pardon makes it all go away. None of the baggage of convictions follow. Finding a job or a place to live is something they can do, as well as voting again.


By not pardoning, the state can't recharge them.


He's also said we'd have humans on Mars in 2022...


> But again, here in the US we are an order of magnitude less likely to be hit by a car.

Huh - do you have a source for that stat?


My guess/experience - because there are probably layers of management and executives who have an uptime # in their OKRs or whatever is fashionable these days.

The decision to post anything about outages comes from the executive chain in many orgs lest they miss out on bonus compensation for the year.

This is the same reason services like docker and aws will very rarely call an outage an 'outage' - it's always 'service degradation', even when dockerhub is completely useless as it is right now.


Should be easily doable with a semgrep rule, e.g.:

    ~> cat semgrep.yaml
    rules:
      - id: no-pattern-matching
        pattern: |
          match ...:
        message: |
          I'm not a fan of the pattern matching in Python
        severity: ERROR
        languages:
          - python
...

    ~> cat test.py
    #!/usr/bin/env python3

    foo = 1
    match foo:
      case 1:
        print("one")
...

    ~> semgrep --config semgrep.yaml test.py   


     no-pattern-matching
          I'm not a fan of the pattern matching in Python
                                                         
            4┆ match foo:
            5┆   case 1:
            6┆     print("one")
(exits non-0)


You need to make that exclude match = ... since match can also be a variable name. This is because people used to write code like match = re.search(...)


The existing pattern suggested above, "match ...:", will not match 'match = ...'.

Presumably the reason the parent comment suggested semgrep, not just a grep, is because they're aware that naive substring matching would be wrong.

You could use the playground to check your understanding before implying someone is an idiot.

https://semgrep.dev/playground/new


There were quite a few slave revolts in the 19th century.


All the ones in the US were quite unsuccessful. Prosperity didn't happen in the slave states, either.


I suspect that is true but here is the difference: organizations that benefit from fewer prisons have a multitude of other things they benefit from (and can lobby for). Private prison operators on the other hand really only have one thing that can improve their bottom line at the end of the day - more prisons.

Outside of a few non-profit orgs I suspect there aren't a lot of dollars lobbying for fewer prisons, it's not a great look and it's easily to spin as "company X doesn't want to lock up violent criminals!

On the other hand that's really the only agenda item private prison operators put their lobbying dollars toward.


“Dispersed cost, concentrated gain”


We need a way to concentrate the gains of things going in the other direction as well.



They travel c in vacuo but not through different media.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: