HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jbmchuck

no profile record

Submissions

U.S. pedestrians are dead due to SUV/truck hood and pillar designs

seattlebikeblog.com
28 points·by jbmchuck·18 giorni fa·2 comments

comments

jbmchuck
·26 giorni fa·discuss
I'm guessing the op is referring to https://en.wikipedia.org/wiki/Query_string
jbmchuck
·mese scorso·discuss
It seems to me a lot of people just really don't like to be associated with public transit or anything associated with anything remotely underclass.

It's a class marker to be driven around in an autonomous 6000lbs tank rather than move your legs a bit.
jbmchuck
·mese scorso·discuss
Enough that a 5% annual return is enough for me to get by. I'm certainly not done working - I want to get that to 3% or so - but it does make it a bit demotivating some days when I look outside and imagine the other things I could be doing with my time.
jbmchuck
·mese scorso·discuss
I have the same feelings as the original poster as I get further into middle age and have a good retirement nest egg - for me there are things more valuable - free time and the things I want to do with it but can't get paid to do - than making more income than I really need.
jbmchuck
·2 mesi fa·discuss
Absolutely. The US' urban density problems, housing cost crisis - they all go back to car-based society.
jbmchuck
·2 mesi fa·discuss
Reminds me of this onion bit: https://theonion.com/scientists-politely-remind-world-that-c...
jbmchuck
·3 mesi fa·discuss
Agreed - once the ad-based profit model took off that no longer became possible.
jbmchuck
·3 mesi fa·discuss
'Thought leader' has always been a code word for 'bullshit artist'.
jbmchuck
·8 mesi fa·discuss
Honest question - what's your use case for needing GPS indoors? I generally know where I am when I'm indoors :)
jbmchuck
·9 mesi fa·discuss
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.
jbmchuck
·9 mesi fa·discuss
He's also said we'd have humans on Mars in 2022...
jbmchuck
·10 mesi fa·discuss
> 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?
jbmchuck
·10 mesi fa·discuss
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.
jbmchuck
·11 mesi fa·discuss
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)