EastBay CodeHaus
Random Notes on Programming
Saturday, May 16, 2015
Mathematical Theory of Claude Shannon
Claude Shannon is well-known for having pioneered information theory and switching theory. Here's a great overview of his approach to these and other areas he studied.
http://web.mit.edu/6.933/www/Fall2001/Shannon1.pdf
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