5 comments

  • brendanyounger36 minutes ago
    I&#x27;m in my mid-40&#x27;s now. I taught myself C when I was 15. I have no desire to use LLMs to pump out code.<p>I take comfort in re-reading much of the 70&#x27;s and 80&#x27;s literature which focuses the possibilities of user experience. We still haven&#x27;t fully explored all the dreams of half a century ago.<p>If AI forces the business case that &quot;code is cheap&quot;, I can only hope we re-double our efforts at creating new interfaces and capabilities for computer systems. The Meta glasses, Apple Vision, and the like are small steps in this direction.
  • magpi31 hour ago
    But what happens when the bill comes in? That&#x27;s my biggest fear. I heard on a recent podcast that it is a great time to be a micro-entrepreneur, and I think that&#x27;s true right now because AI is so cheap. But AI companies are hemorraghing money. What happens to those micro-entrepreneurs when the price goes up? Are we going to live in a world where only large, rich corporations can afford to competitively develop things? Maybe so, but it is depressing to think about.<p>For the plebeians (like me), I think hand-coding skills will always be relevant and necessary.
  • AreShoesFeet0001 hour ago
    There’s also the other way around. Semantic AI is a good chunk of meat, but it can only be useful as it’s harnessed properly with a nice set of bones. I think that symbolic AI will make a come back eventually. Not as an accelerator of what’s already been done in the Industry, but as the actual revolution.<p>And don’t be naive to think that there aren’t sophisticated symbolic handling mechanisms being implemented in the training of the models by Big Tech. Not even baby soap is truly neutral.
    • xg151 hour ago
      As a possible example of this, I was kind of baffled how quickly we&#x27;re all now throwing the sophisticated AST&#x2F;program analysis and refactoring methods over board we already had before AI. Just look at the refactoring methods of Eclipse or IntelliJ.<p>I think those should be very useful, <i>especially</i> with AI: Either as a tool for the agents themselves - why spend heaps of tokens completely rewriting a code file, if you could do most of it by calling some global refactoring operations on the IDE&#x27;s AST&#x2F;symbol database?<p>Or side-by-side with it, to give human users better insight what the AI did.<p>Instead it seems to be all VSCode (if at all) + grep + AI agents, and nothing else.
      • tao_oat1 hour ago
        This is an interesting idea! I searched around and it looks like there&#x27;s [ast-grep](<a href="https:&#x2F;&#x2F;ast-grep.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ast-grep.github.io&#x2F;</a>), an AST-aware CLI that can search and refactor code -- and you can expose it to your AI agent using a skill (<a href="https:&#x2F;&#x2F;github.com&#x2F;ast-grep&#x2F;agent-skill" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ast-grep&#x2F;agent-skill</a>).<p>Not exactly symbolic AI, but pretty cool nonetheless.
      • jauntywundrkind33 minutes ago
        &gt; <i>especially with AI</i><p>Yeah, the middle path sounds promising.<p>&quot;Code Mode&quot;, where the AI writes a little program or script to do the AST&#x2F;symbol transformations sounds like the win. As you point out, less tokens, and gives the humans insight.<p>This isn&#x27;t exactly the same application of a &quot;code mode&quot; as before, but in my view it&#x27;s a broad philosophy. AI for building machines, instead of doing the work directly. It also allows for easier updates&#x2F;retries too. <a href="https:&#x2F;&#x2F;blog.cloudflare.com&#x2F;code-mode&#x2F;" rel="nofollow">https:&#x2F;&#x2F;blog.cloudflare.com&#x2F;code-mode&#x2F;</a> <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45399204">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45399204</a> <a href="https:&#x2F;&#x2F;blog.cloudflare.com&#x2F;code-mode-mcp&#x2F;" rel="nofollow">https:&#x2F;&#x2F;blog.cloudflare.com&#x2F;code-mode-mcp&#x2F;</a> <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47089505">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47089505</a>
  • dventimi2 hours ago
    So...software engineers become product managers? All of us? That&#x27;s going to be an awful lot of product managers.
    • magpi31 hour ago
      Or it could be an awful lot of productivity. We have to think bigger. What would the world look like if every programmer were a 10x (or whatever) programmer?
      • dventimi36 minutes ago
        Sure. I&#x27;m with you. I&#x27;m just puzzled by the article.
  • jongjong2 hours ago
    I self-taught myself coding at a young age but I haven&#x27;t had any identity crisis due to AI. I always saw myself as a software architect, not a coder.<p>When I was a junior learning to code, I would feel proud of myself because I could remember 100 lines of Windows API code needed to create a new window... But it&#x27;s been decades since I understood that the real value is not in the code. It&#x27;s in the architecture. As the author alludes to; the intuition behind the code is what counts.<p>I think highly competent engineers are often underappreciated because the really clever stuff they do doesn&#x27;t appear clever at all; it looks deceptively simple. I think what people don&#x27;t understand is that maintaining simplicity whilst requirements are becoming more complex, is very difficult.