- Tom Misch
- Arcade
- Kwayne
- Bruno major
.
.
.
- Relationship Lessons from Trees
- Beginnings at the End of Love: Rebecca West’s Extraordinary Love Letter to H.G. Wells in the Wake of Heartbreak
- Patti Smith’s Imaginative Remedy for Insomnia
- Bertrand Russell on How to Heal an Ailing and Divided World
- Nature’s Lessons in Gender Equality, Gender Diversity, and True Love: The Male Pregnancy of the Seahorse and the Fearless Trans Fish of the Coral Seas
- Edward Weston on the Most Fruitful Attitude Toward Life, Art, and Other People
- [Abraham Lincoln on Equality and the Slippery Slope of Exclusion](https:
What does it mean to have a really deep introverted emotion, probably not everything is in explicit, there are a lot on implicit underlying emotions at work, which are mentioned here and there in words but never brought in open.
- Her
- Demolition
- Ship of Theseus
- Into the wild
- the perks of being a wallflower.
- la la land.
- https://about.gitlab.com/blog/
- https://github.blog/category/engineering/
- https://blog.cloudflare.com/
- https://github.com/luruke/awesome-casestudy
- wired tiger
- https://www.percona.com/blog/
- https://blog.blazingdb.com/
- https://github.com/pgilad/awesome-blogs
- https://github.com/Lets-DevOps/awesome-learning
- https://github.com/aleksandar-todorovic/awesome-blogs#computernetwork-security
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Latency Comparison Numbers (~2012) | |
---------------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
- conda create -n dbms python=3.4 pip
- source activate dbms
- pip install -r requirements.txt
- import psycopg2
- conn = psycopg2.connect(dbname="mydb", user="myuser", password="mypass",host="localhost")
- cur = conn.cursor()
- cur.execute("CREATE TABLE test (id serial PRIMARY KEY, num integer, data varchar);")
- cur.execute("INSERT INTO test (num, data) VALUES (%s, %s)",(100, "abc'def"))