Mikito Takada (@mikitotakada) 's Twitter Profile
Mikito Takada

@mikitotakada

Software engineer @stripe; I write books (book.mixu.net) and code (github.com/mixu)

ID: 112698192

linkhttp://mixu.net/ calendar_today09-02-2010 12:06:13

186 Tweet

2,2K Followers

739 Following

Sindre Sorhus (@sindresorhus) 's Twitter Profile Photo

It's kinda hard to take the Unix philosophy "Do one thing and do it well" seriously when the `ls` command has 38 different flags.

Mikito Takada (@mikitotakada) 's Twitter Profile Photo

DevTools: get HTML table as an array $($0).parents('table').find('tr').get().map((e) => $(e).find('td,th').map((i,e)=>$(e).text()).get())

Mikito Takada (@mikitotakada) 's Twitter Profile Photo

DevTools: get HTML column data (t=$($0).closest('td,th')).parents('table').find('td:nth-child('+(t.index()+1)+')').map((i, e)=>$(e).text())