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·vor 18 Tagen·2 comments

comments

jbmchuck
·vor 26 Tagen·discuss
I'm guessing the op is referring to https://en.wikipedia.org/wiki/Query_string
jbmchuck
·letzten Monat·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
·letzten Monat·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
·letzten Monat·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
·vor 2 Monaten·discuss
Absolutely. The US' urban density problems, housing cost crisis - they all go back to car-based society.
jbmchuck
·vor 2 Monaten·discuss
Reminds me of this onion bit: https://theonion.com/scientists-politely-remind-world-that-c...
jbmchuck
·vor 3 Monaten·discuss
Agreed - once the ad-based profit model took off that no longer became possible.
jbmchuck
·vor 3 Monaten·discuss
'Thought leader' has always been a code word for 'bullshit artist'.
jbmchuck
·vor 8 Monaten·discuss
Honest question - what's your use case for needing GPS indoors? I generally know where I am when I'm indoors :)
jbmchuck
·vor 9 Monaten·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
·vor 9 Monaten·discuss
He's also said we'd have humans on Mars in 2022...
jbmchuck
·vor 10 Monaten·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
·vor 10 Monaten·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
·vor 11 Monaten·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)