Pas de Code
76 subscribers
106 photos
1 file
402 links
What I cannot create, I do not understand.

DM: @alexey_mileev
Original channel in RU: @devballet
Twitter: twitter.com/pasdecode_
Download Telegram
Check out this talk by Yegor Bugayenko. It’s about the basics of EOLANG in it’s current state. It looks scary, it looks funny, watching it was interesting, try for yourself.

#oop #talk
A very practical page of Elm guides: Types as Sets. By using well-tailored types we can protect ourselves from different kinds of invalid states in our programs. So why not just use this approach?

#type #programming #math
Two for the price of one this time. Bruce Eckel (you’ll most probably know this guy, at least for the “Thinking in Java” book) in his post has criticized Gradle a bit, and Cédric Champeau (was building Groovy, is building Gradle) has tried to challenge Bruce’s points.

#gradle #java #groovy
Check out this new library from Square - Curtains. It’s a bunch of Window-related APIs to make some very unpleasant things a little bit easier.

#library #window
HTTP is old, and over the ages lots of strange and interesting things had found it’s way into protocol. You’ll find more details in this post. Teaser:
- no-cache header actually means do cache
- What are the 1XX codes used for?
- Every websocket depends on the same UUID 258EAFA5-E914-47DA-95CA-C5AB0DC85B11. What?

#http #network #protocol
What's wrong with my font size? I'm using the same font and the same size across multiple editors, but it still doesn't look the same. Thanks to tonsky (yes, again!) now we know what's wrong.
This actually reminds me of that old anecdote about Space Shuttle booster rockets and two horses' back-ends.

#font #ui #text
Esoteric programming languages are different. Some are frightening, like Madness. Some are funny, like FiM++. But I've never seen anything as disgusting as Folders. There are no source code files in Folders, just Windows folders hierarchy, and this hierarchy defines our program.

#humor #esoteric #language
The idea to show explicitly in a return type that function can fail is not new, yet still not mainstream either. In this post author shows us how to implement such Result monad in Kotlin. The implementation itself is not perfect (in which universe val reason: String is enough to describe an error?), but good enough.

#fp #monad #kotlin