Live data from Hacker News

Ask HN: What's the next big thing in computing / programming?

news.ycombinator.com

141–150 of 171 posts

Re: Ask HN: What's the next big thing in computing / programming?

#141
post #112

I think people will soon realize that code is a data structure, not text. Like a hash map or an array, its text representation is merely a human-readable interface to it. I predict the capabilities of IDEs will expand, and to make their state persistent, they will begin to store IDE-specific files in your source code directory. Eventually this will morph into the source code itself being stored in binary format and o…

When I see people talking about storing code in an AST representation or something similar, I see people who are focusing on the "happy path" and not really thinking about why code-as-text has been so sticky for half a century. (1) Code spends a huge amount of time in a non-parsable state. I need to be able to save code even when it's not currently parsable into a valid AST of the language I am writing. Sometimes I e…

> (2)

Have you heard of https://dion.systems/ that was linked here recently? They are working towards going away from text as the source format.

It remains to be seen whether or not it is a good idea and/or if it will succeed if it is.

> (1)

I guess in something like Dion, you have a source format that doesn't allow syntax errors, since you are not editing something that can be in an invalid state (necessarily).

Re: Ask HN: What's the next big thing in computing / programming?

#142

The granularity of computing seems to become finer by the day and with it comes ever faster and more fluid tooling and creativity. What would once be a metal machine onto which you load executable code has become a thing that you can run virtually. Containers, serverless lambdas, dynamic language runtimes. Everything becomes faster, more fungible (a zeitgeist word but I mean it in the old way) and easier to work with…

so what's the advice here- learn more about tools like Terraform, k8s and nix?

Re: Ask HN: What's the next big thing in computing / programming?

#143
post #51

Deno is the thing I think I can realistically hope for as a technological breakthrough in 2022. If it does it can become huge. Not because of TypeScript as a native language. Not because it can create binaries. Not because it has an audited standard library or any other good reason. But because it includes a simple but flexible way to prevent itself from doing things the author didn't want it to. If we are extremely…

What do you mean?

I mean that explicitly having to request the permissions an app needs from the OS using a simple, powerful syntax is smart and Deno got it right.

I hope other runtimes pick it up and I hope package managers pick it up too.

Re: Ask HN: What's the next big thing in computing / programming?

#144

Earlier quoted context omitted.

How cheap do you want PCBs to be? They're already at the point where shipping costs dominate the price. https://jlcpcb.com/

If you 3D print your own, you don't have to pay the shipping ;-)

you still have to pay for the shipping of the 3d printer and the filament...

Re: Ask HN: What's the next big thing in computing / programming?

#145
Have you looked at the recent crop of Serverless rechnologies that rtuly abstract away even considering the underlying hardware platforms. I am talking about tools such as Serverless Cloud where you write code and it infers the hardware needed underneath and creates it for you automatically. https://www.serverless.com/cloud

Re: Ask HN: What's the next big thing in computing / programming?

#146
post #135
post #92

I don't know, but i'm pretty sure its going to be nothing that's listed here. Everything listed here is stuff at the high end of the hype cycle. Everyone is already looking at it. The next big thing is going to be something nobody is looking at. If people are already looking, it would have already happened.

There's multiple cycles. Hype usually predates the technology by several years. Drones are common now. But the last drone hype I saw was 20 years ago. AI has been around longer than I was born. Stuff like DDD and functional programming are ancient but they've become more popular in recent years. I think it takes a long time. Often the tech is a puzzle piece when we don't have the rest of the puzzle yet.

Related: https://en.wikipedia.org/wiki/Gartner_hype_cycle

Re: Ask HN: What's the next big thing in computing / programming?

#147
almost all software today is static ... whereas living organisms are constantly exposed to new challenges and are constantly learning to adapt and survive both as an individual and a species ... the developmental steps every individual grows through from infancy onward contributes to what some call embedded cognition ... inspiration from developmental biology as to this constantly changing morphology of not only the abstract capabilities but the physical implementation of the biological organism will influence new approaches to software architecture ... self healing software systems are a baby step in this direction

Re: Ask HN: What's the next big thing in computing / programming?

#148
post #112

I think people will soon realize that code is a data structure, not text. Like a hash map or an array, its text representation is merely a human-readable interface to it. I predict the capabilities of IDEs will expand, and to make their state persistent, they will begin to store IDE-specific files in your source code directory. Eventually this will morph into the source code itself being stored in binary format and o…

When I see people talking about storing code in an AST representation or something similar, I see people who are focusing on the "happy path" and not really thinking about why code-as-text has been so sticky for half a century. (1) Code spends a huge amount of time in a non-parsable state. I need to be able to save code even when it's not currently parsable into a valid AST of the language I am writing. Sometimes I e…

> (1) Code spends a huge amount of time in a non-parsable state.

One way to attack this is via holes, as in https://hazel.org/

Re: Ask HN: What's the next big thing in computing / programming?

#150
Moore's Law ended. We're just adding more cache to devices now. RAM speeds haven't increased in several years. PCIe 5.0 requires expensive circuit boards that no one can afford. GPUs are out of stock everywhere.

Maybe the next big thing is doing more with less. Rust and Zig come to mind.

Post reply on HN