Ask HN: What are some examples of beautiful software?
121–130 of 262 posts
Re: Ask HN: What are some examples of beautiful software?
#122JSON. The way it displays and organizes complex data, better than other standards like CSV or XML. Or the things that use tables. When I first started programming, I had two favorite ways of storing data - INI and arrays. INI for its elegant key/value style. Arrays were just natural because of the way computers think. I spent months trying to mold these two things together; how would you actually store key-value thin…
What if I want to store integers?
Not floats.
Integers.
Re: Ask HN: What are some examples of beautiful software?
#123Re: Ask HN: What are some examples of beautiful software?
#124Re: Ask HN: What are some examples of beautiful software?
#125JSON. The way it displays and organizes complex data, better than other standards like CSV or XML. Or the things that use tables. When I first started programming, I had two favorite ways of storing data - INI and arrays. INI for its elegant key/value style. Arrays were just natural because of the way computers think. I spent months trying to mold these two things together; how would you actually store key-value thin…
Re: Ask HN: What are some examples of beautiful software?
#126JSON. The way it displays and organizes complex data, better than other standards like CSV or XML. Or the things that use tables. When I first started programming, I had two favorite ways of storing data - INI and arrays. INI for its elegant key/value style. Arrays were just natural because of the way computers think. I spent months trying to mold these two things together; how would you actually store key-value thin…
Re: Ask HN: What are some examples of beautiful software?
#127Rust. It's god damn beautiful. It's design is magnificent, so much so that it seems easy to write beautiful rust code myself.
Re: Ask HN: What are some examples of beautiful software?
#128Re: Ask HN: What are some examples of beautiful software?
#129JSON. The way it displays and organizes complex data, better than other standards like CSV or XML. Or the things that use tables. When I first started programming, I had two favorite ways of storing data - INI and arrays. INI for its elegant key/value style. Arrays were just natural because of the way computers think. I spent months trying to mold these two things together; how would you actually store key-value thin…
> JSON is just this beautiful thing that lets you store data however you want. What if I want to store integers? Not floats. Integers.
Re: Ask HN: What are some examples of beautiful software?
#130A tiny self-interpreting compiler and virtual machine. The beauty is in how amazingly minimal and yet functional it is.