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

2024 - 1964 = 60


With Extractors [1] (currently at Stage 1), you could define something like this to work:

    const Integer = {
      [Symbol.customMatcher]: (value) => [Number.parseInt(value)]
    }

    const Integer(counter) = 42.56;
    // counter === 42
[1] https://github.com/tc39/proposal-extractors


I am left wondering how far down one must go to find row level security.


Implementing something like an "id" locale is a great idea. Just don't call it that; it's the locale code for Indonesian.

Using a word that's longer than three characters like "identity" will help ensure that it won't conflict with a real locale.


"You found the Nth highest word score"


Young's AAA, UK early 00s. They never brought it back. Ye olde sigh.


When farming tulips, at least you could get pretty flowers from them.


In JavaScript, use https://www.npmjs.com/package/yaml for this:

    import assert from 'assert'
    import { parseDocument } from 'yaml'
    
    const flowDoc = parseDocument(`[1,2,3]`)
    flowDoc.add(4)
    assert(flowDoc.toString(), '[ 1, 2, 3, 4 ]\n')
    
    const blockDoc = parseDocument(`\
    - 1
    - 2
    - 3`)
    blockDoc.add(4)
    assert(
      blockDoc.toString(),
      `\
    - 1
    - 2
    - 3
    - 4
    `
    )


I don't understand why US healthcare providers are allowed to charge different customers a different price for the same service or good.

As this is clearly being systematically abused to extract the most wealth from patients and insurance companies, is anyone seeking to require healthcare providers to not provide such variable pricing?


I've seen 25:00 and even 26:00 being used as times, in Japan.


Yes they are common in Japan for stuff like store opening hours and TV time tables


I have also seen 24+ in Japan.


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

Search: