EastBay CodeHaus
Random Notes on Programming
Tuesday, April 19, 2016
Classic Programmer Paintings!
http://classicprogrammerpaintings.tumblr.com
My
Favorite
:
Hieronymus Bosch “A visual guide to the Scala language” oil on oak panels, 1490-1510.
The left panel shows the functional features, the main one describes the type system, and the right the object oriented parts.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
TimescaleDB
https://docs.timescale.com/timescaledb/latest/#welcome-to-the-timescaledb-documentation TimescaleDB is a time-series database, built on top ...
Golang Calling Stack
package main import ( "fmt" "runtime" ) func main() { aa() } func aa() { bb() } func bb() { cc("hello...
Notes from gittower "Undoing Git Mistakes" presentation
Uncommited Local Changes 1. revert local changes git restore fname 2. accidentally deleted a file git restore fname 3. discarding chunks/lin...
No comments:
Post a Comment