Skip to content

Instantly share code, notes, and snippets.

View eduOS's full-sized avatar
💭
I may be slow to respond.

Lerner Zhang eduOS

💭
I may be slow to respond.
View GitHub Profile
#!/usr/bin/env python
"""Natural-Merge sort a singly linked linear list."""
import random
from itertools import product
# Linked list is either empty or a value and a link to the next list
empty = None # empty list
class LL(object):
__slots__ = "value", "next"
[Source]([http://www.paulgraham.com/nerds.html] "Permalink to Why Nerds are
Unpopular")
# Why Nerds are Unpopular
![][1]
![Why Nerds are Unpopular][2]
February 2003
[Source]([https://aeon.co/essays/busy-and-distracted-everybody-has-been-since-
at-least-1710] "Permalink to Busy and distracted? Everybody has been, since at
least 1710")
# Busy and distracted? Everybody has been, since at least 1710
The rise of the internet and the widespread availability of digital technology
has surrounded us with endless sources of distraction: texts, emails and
Instagrams from friends, streaming music and videos, ever-changing stock quotes,
news and more news. To get our work done, we could try to turn off the digital
Side Projects (avc.com)
182 points by pointnova 9 hours ago | 82 comments
[http://avc.com/2016/03/side-projects/]
Comment by patio11 3 hours ago: [11408695]
There is a thriving community / ecosystem of people doing side projects. It is
big enough to support conferences. I'm making my annual pilgrimmage tomorrow to
Vegas to attend Microconf, where ~600 people selling software over the Internet
are going to be shooting the breeze and talking conversion rates, email
[Source]([http://themacro.com/articles/2016/03/agility-requires-safety/]
"Permalink to Agility Requires Safety · The Macro")
# Agility Requires Safety · The Macro
## Imagine it's your job to get all the cars on a highway to drive faster. What
would happen if you just told all the drivers to wildly jam down on their gas
pedals?
Clearly, the result would be a disaster. And yet, this is exactly the kind of
[Source]([https://medium.com/@alexinslc/how-to-be-a-great-developer-
201ad1a8d9c5] "Permalink to How To Be A Great Developer — Medium")
# How To Be A Great Developer — Medium
### How To Be A Great Developer
This was posted in 2014 by the awesome [@funkatron][1] — Yes, it's a repost. The
original seemed unavailable but @funkatron just sent me [his original that is
available here.][2] He also [has this available][3]. **It's great advice all
[Source]([http://www.brookings.edu/blogs/social-mobility-memos/posts/2016/03/25
-make-elites-compete-why-one-percent-earn-so-much-rothwell] "Permalink to Make
elites compete: Why the 1% earn so much and what to do about it")
# Make elites compete: Why the 1% earn so much and what to do about it
![Occupy Wall Street signs][1]
The spectacular economic rise of the top 1 percent is now common knowledge,
thanks in large part to the work of [Thomas Piketty and his collaborators][2].
Make elites compete: Why the 1% earn so much and what to do about it (brookings.edu)
85 points by walterbell 3 hours ago | 53 comments
[http://www.brookings.edu/blogs/social-mobility-memos/posts/2016/03/25-make-elites-compete-why-one-percent-earn-so-much-rothwell]
Comment by Snargorf 2 hours ago: [11364609]
The analysis is broken by the focus on the top 1%. They should be looking at the
top 0.1%, or smaller.
It's absurd to put together hedge fund managers making $30 million a year with
@eduOS
eduOS / tmux-cheatsheet.markdown
Created December 1, 2015 05:02 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@eduOS
eduOS / hello
Created November 28, 2015 06:42
*editing.txt* For Vim version 7.4. Last change: 2013 Aug 03
VIM REFERENCE MANUAL by Bram Moolenaar
Editing files *edit-files*
1. Introduction |edit-intro|
2. Editing a file |edit-a-file|