TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Tell HN: Claude is a crap learning tool

1 点作者 purple-leafy4 个月前
I have paid for Anthropic Claude, and I&#x27;m bloody sick of it, I regret it.<p>I have been learning C in my spare time, doing the NandToTetris course and implementing my solutions in C. This has been great for learning.<p>I got stuck on a regex problem and <i>JUST</i> wanted to know how to do a particular regex for interpreting an expression. I struggled to find resources on C-style regex.<p>Heres exactly what I asked Claude<p><pre><code> Can you write a C language regex, using regex.h, just to split the following structure on &quot;=&quot; or &quot;;&quot; &lt;DEST&gt;=&lt;COMP&gt;;&lt;JUMP&gt; Only comp is mandatory so you could get any of these combinations: dest=comp comp;jump dest=comp;jump </code></pre> Claude then proceeds to solve the entire assignment for me using the context to realise I&#x27;m talking about a NandToTetris assignment.<p>This really pisses me off, these fucking AI tools assume you want a full solution every time. I&#x27;m not here to maximise productivity, I&#x27;m here to LEARN! I just wanted a concise regex, nothing else. Pisses me off so much that I&#x27;ve cancelled my subscription.<p>I hope all this AI shit fucking fails and we go back to human-led programming.<p>Imagine a lecturer that did your homework for you.

4 条评论

minimaxir4 个月前
That&#x27;s when you say &quot;Respond with ONLY the Regex. Do not respond with any other text.&quot;<p>LLMs are not mind readers.
评论 #42570949 未加载
coolguy44 个月前
Why not tell it, &quot;I only want the regex, don&#x27;t give me the entire solution. I&#x27;m doing this to learn, please don&#x27;t spoil the assignment for me.&quot; Anyway, if you want to learn regex there are many interactive regex tools online that you can use to iterate on.
评论 #42570942 未加载
A_D_E_P_T4 个月前
Yeah, you&#x27;re prompting it wrong.<p>This was on the frontpage yesterday, and it&#x27;s very true:<p>&gt; <a href="https:&#x2F;&#x2F;simonwillison.net&#x2F;2024&#x2F;Dec&#x2F;31&#x2F;llms-in-2024&#x2F;#llms-somehow-got-even-harder-to-use" rel="nofollow">https:&#x2F;&#x2F;simonwillison.net&#x2F;2024&#x2F;Dec&#x2F;31&#x2F;llms-in-2024&#x2F;#llms-som...</a><p>You have to be very careful about how you prompt them. As others have said, if you want results that are limited in a certain way, or in a certain format, you need to add that instruction to your prompt. LLMs like Claude are amazingly versatile and powerful tools, and they&#x27;re also very flexible in response to your input, so tell them exactly what you need.
SavageBeast4 个月前
I&#x27;ve come to prompt in this format and its working well for me. I once had your issue on another subject and it was indeed annoying.<p>&quot;Claude - Im learning to program C - I wan&#x27;t you to help me learn&quot;<p>&quot;I&#x27;m unsure what Im doing so can you walk me through the problem 1 step at a time? We can decide when to move to the next step but I want to be sure I understand each step as we go&quot;<p>&quot;Ok - I get it so far - Im ready for the next small step so we can discuss it&quot;<p>You said: Can you write a C language regex, using regex.h, just to split the following structure on &quot;=&quot; or &quot;;&quot;<p>I mean, it did exactly PRECISELY what you asked it to do - you asked it to write a program and it did! Never mind anything, how cool is that??
评论 #42570951 未加载