ndnichols
No user record in our sample, but ndnichols has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but ndnichols has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
This sounds awesome and exactly like the easy and safe on-ramp to OpenClaw that I've been looking for! I want to believe. Two questions as a potential user who knows the gist of OpenClaw but has been afraid to try it:…
I just had this interaction with ChatGPT. Me: Reverse the digits of 12+39 ChatGPT: The sum of 12 and 39 is 51. If you reverse the digits, you get 15. Me: Reverse the digits of 12 + 84. Only respond with the reversed…
The challenge here is that ChatGPT and other LLMs can only think out loud. They only "think" through writing, and that's always displayed to the user. Has anyone tried giving LLMs a scratchpad where the model could e.g.…
Thanks, we're aware of that possibility. We talk a lot with them about the motivation for the limits so hopefully they will see the value in applying them to themselves even when we're not around. But it's obviously a…
Haha, yes, I had the same cousin! We would go play hide and seek while he played Legend of Zelda on his own in the corner :-/
We have three kids, aged 6, 3, and 10 months. The six-year-old gets ~30 minutes of Switch play a week (mostly driving circles in Rocket League), and the whole family watches an episode of Lego Masters on Sunday. That's…
I couldn't agree more! We built Lexio to address exactly that issue. (Our tagline is literally "Stop building dashboards that no one uses".) It does data storytelling (discovering the insights and conveying them in…
That was me! I came here to comment some version of "Ahem, we were doing this in 2005 at Northwestern" and seeing your comment to the same effect made me super happy. Thanks for noticing and remembering!
Yup! I remember my eighteen-year old self being pleased with "Planet does not have Audi, but it does have Audi TTs!" Looking at it again, I think the game works better spoken than written out like this.
I played a similar game with some folks once, but I don't know the game's name. The person who knew the rule(s) explained that there was a planet that was like Earth, but it only had a subset of the things that Earth…
I for one appreciated all the "I"s! To me it shows that you understand that you are expressing a subjective opinion, not a fact in the world. I think too many people express opinions as facts with puffy language.…
Are you being sarcastic? Or do you genuinely think the lack of office space in SF is a drag on the world?
I guess it's not surprising, but I was super impressed by their copy on the website. "The most original Macintosh since the original Macintosh" holds up really well 17 years later. I'm looking forward to the iPhone 8…
I know you said you're not seeking a therapeutic recommendation, but if you were my friend then I would buy you a beer and gently recommend seeing a therapist. I saw one for a year after I got divorced, and she was…
Earnest question: Have you used a monoid? I know my original comment is sort of bratty, and I was confusing monoids with monads, which... is a different functional thing that people apparently use? It feels like…
I hate doing memes, but sometimes they're so spot on. "Stop trying to make monoids happen. They're not going to happen."
Hey oemerax, thanks for taking the time to respond. Like you said, I'm probably not the audience for your app :-) For me, the important aspect of social networks is their pleasure-to-time ratio. E.g., "I'm going to look…
"Bynd Zero". Yeesh. This just feels like another thing I'm obligated to burn down and manage. A better solution, for me at least, is to continue to not care about Twitter and Instagram, and stop caring about Facebook.…
I don't know what this is doing for music, but I hear nothing from the website and it disables all audio on my Mac. (10.8.5)
Articles like this remind me why I don't use an Android phone. To each their own, but this is not a feature that I want: "Upon install, Android apps can get access to users’ location, contacts, phone calls, email…
It would look like result = range(1, 3).concat(range 4, 6).map((x) -> x * x).filter (x) -> x % 2 is 0 or result = range 1, 3 result = result.concat range 4, 6 result = result.map (x) -> x * x result = result.filter (x)…
I think it counts as mainstream. We've basically migrated entirely off Javascript at Narrative Science, we've got a whole bunch of server- and client-side CoffeeScript. It and Python are our two first-class languages.
This post doesn't make any sense without context. I now know that a person I've never heard of is no longer going to do a thing that I didn't realize that they were doing.
Q: "Are mobile web apps slow?" A: "A web app's CPU budget is spent in three different buckets" Q: "That... doesn't answer my question." A: "Javascript is the puppet master of the browser engine." Q: "That doesn't…
These kinds of optimization/"hacks" articles need to include benchmarks. How does using one StringBuilder compare to using the implicit three or five? How many strings does one need to append before you should've used a…