https://sites.google.com/a/deepmind.com/dqn/
If you haven't seen the video it's remarkable:
61–70 of 262 posts
https://sites.google.com/a/deepmind.com/dqn/
If you haven't seen the video it's remarkable:
The Go standard library. At least two things coming together: A stripped down language, that explicitly aims to be readable and experienced programmers / authors.
Not specifically "software" but this piece of Haskell code is the most beautiful code I've ever seen: quicksort [] = [] quicksort (x:xs) = quicksort [y|y =x]
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
The Go standard library. At least two things coming together: A stripped down language, that explicitly aims to be readable and experienced programmers / authors.
I'm not sure I agree with that. JSON parsing uses panic() and recover() for some logic. And templating is more of a PoC for coroutines in Go than a properly fleshed out library. Not to mention that the AST parsing for Go is horribly designed (though you can do some cool stuff with it).
Drivers. The interface between the physical world and the digital world. They are the lenses of computers as much as its magic.
Grand central dispatch is so beautifully designed. Both its API and just general use. It clicked with me the first time it got introduced and I abandoned bothering with NSOperarion
Not sure if this is what you're looking for, but from the UX side, Square Cash. Does one thing, does it well with large responsive colorful UI that still displays everything you need to know. Is minimally invasive (debit card instead of bank account verification). Uses your existing contacts, so everything "just works" by default.
It has every feature but takes 5 minutes to learn. And it (mostly) seems to do the most reasonable thing every time you do anything.
(plus: there is a working free model and a really useful paid upgrade.)
Earlier quoted context omitted.
Not my software, but if you have looked at other FTP clients this is an amazing thing to read though.
Other clients code being bad does not make this code easy to read or beautiful. All those MAX_STR and strcat's make me wonder about security: https://github.com/Hypsurus/skod/blob/master/src/ftp.c#L14 Amazing read: https://github.com/Hypsurus/skod/blob/master/src/ftp.c#L22 No enum again: https://github.com/Hypsurus/skod/blob/master/src/utils.c#L14
Even without much documentation, you can go through and read it while understanding what is happening.