Explore >> Select a destination


You are here

ghvsted.com
| | hjr265.me
4.4 parsecs away

Travel
| | Signals are standardized messages that an operating system can send your programs. Take Ctrl+C for example. When running a program from the terminal and you hit Ctrl+C, you expect the program to end immediately. How does that work, though? Ctrl+C is a shortcut for the POSIX signal SIGINT. By default, this signal causes your program to be terminated. But this is one of those signals you can handle: You can intercept it and do whatever you please.
| | grpc.io
5.3 parsecs away

Travel
| | TL;DR: Always set a deadline. This post explains why we recommend being deliberate about setting deadlines, with useful code snippets to show you how. ...
| | hypirion.com
3.6 parsecs away

Travel
| | When generics comes out, here's a possible way to use it for typed HTTP servers in Go. As a bonus, there's a short "rant" about how the implementation causes functional programming to be hard.
| | www.parsonsmatt.org
11.4 parsecs away

Travel
| (this post is part of a series on Object Oriented Programming in Haskell - see tutorials for a table of contents)