Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
21–30 of 33 posts
Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#22Earlier quoted context omitted.
I see what you mean, but I disagree. I expect that Claude Code is backed by a separate post-train of Claude base which has been trained using the Claude Code harness and toolset.
It is possible of course, but I see no reason to believe it.
that being said, there are other potential explanations
Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#23Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#24Tangential (but topical in that "The threat is comfortable drift toward not understanding what you're doing" is also on the front page): Is the generated python code in the example wrong? The prompt > Develop a Python function that removes any falsey values from a list. Return the modified list without creating a new one. Is answered with list comprehension, which makes a new list and leaves the original unmodified (…
Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#25Tangential (but topical in that "The threat is comfortable drift toward not understanding what you're doing" is also on the front page): Is the generated python code in the example wrong? The prompt > Develop a Python function that removes any falsey values from a list. Return the modified list without creating a new one. Is answered with list comprehension, which makes a new list and leaves the original unmodified (…
Why would you modify the original list and return it with the second example? Honestly the first is better
Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#26Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#27Tangential (but topical in that "The threat is comfortable drift toward not understanding what you're doing" is also on the front page): Is the generated python code in the example wrong? The prompt > Develop a Python function that removes any falsey values from a list. Return the modified list without creating a new one. Is answered with list comprehension, which makes a new list and leaves the original unmodified (…
your second function is the type of bad code you get from people trying to program python like its c
Re: Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs
#28Tangential (but topical in that "The threat is comfortable drift toward not understanding what you're doing" is also on the front page): Is the generated python code in the example wrong? The prompt > Develop a Python function that removes any falsey values from a list. Return the modified list without creating a new one. Is answered with list comprehension, which makes a new list and leaves the original unmodified (…
your second function is the type of bad code you get from people trying to program python like its c