• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: October 28th, 2023

help-circle


  • 💯 just work and make a little progress every day. You’ll be depressed about how little you get done in a week but you’ll be amazed at what can get done in a year. Don’t kill yourself, take a look in the mirror every few weeks and take stock and see if this is actually what you want to be doing.

    Everything else is luck & talent, which you have almost no control over (yet!).

    A lot of advice seems to be like diet advice, in the end if you do some exercise and keep it up it’s probably the right answer. Don’t optimize too early.


  • I usually add context free grammar to make sure it always outputs valid JSON. Here’s the json.gbnf I use.

    root   ::= object
    value  ::= object | array | string | number | ("true" | "false" | "null") ws
    
    object ::=
      "{" ws (
                string ":" ws value
        ("," ws string ":" ws value)*
      )? "}" ws
    
    array  ::=
      "[" ws (
                value
        ("," ws value)*
      )? "]" ws
    
    string ::=
      "\"" (
        [^"\\] |
        "\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]) # escapes
      )* "\"" ws
    
    number ::= ("-"? ([0-9] | [1-9] [0-9]*)) ("." [0-9]+)? ([eE] [-+]? [0-9]+)? ws
    
    # Optional space: by convention, applied in this grammar after literal chars when allowed
    ws ::= ([ \t\n] ws)?
    


  • I think the actual story is going to be a lot more boring and stupid than we think. It always is. I call it Altman’s Razor.

    My guess is that on devday he over promised on two fronts

    1. how much they could commercialise the GPTs (the unit economics don’t quite work)
    2. how much he could legally commercialise a non profit company

    He probably told the board a few lies and about how much they were going to commercialise and opted to ‘ask for forgiveness rather than permission’. When they found out they went at him hard and did not forgive him.

    I think it’s stupid because they should have resolved this via negotiation and threats, not by firing one of tech’s most successful dealmakers 🤣