Title | Author |
---|---|
Powerful | Patty McCord |
The Square and the Tower | Niall Ferguson |
Why We Sleep | Matthew Walker |
Principles | Ray Dalio |
The Art of Doing Science and Engineering | Richard W. Hamming |
Grit | Angela Duckworth |
Red Notice | Bill Bowder |
Troublemakers | Leslie Berlin |
This file contains hidden or 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
r = requests.get('https://api.github.com/events', stream=True) | |
print(r.raw.read(10)) |
This file contains hidden or 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
import requests | |
r = requests.get('https://api.github.com/events') | |
print(r.text) |
This file contains hidden or 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
import requests | |
r = requests.get('https://api.github.com/events') | |
print(r.encoding) |
This file contains hidden or 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
import requests | |
r = requests.get('https://api.github.com/events') | |
r.json() |
This file contains hidden or 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
import requests | |
r = requests.get('https://api.github.com/events') | |
print(r.content) |
This file contains hidden or 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
r = requests.get('https://api.github.com/events', stream=True) | |
print(r.raw) |
This file contains hidden or 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
import React from 'react' | |
import { CSSTransitionGroup } from 'react-transition-group' | |
import { | |
BrowserRouter as Router, | |
Route, | |
Link, | |
Redirect | |
} from 'react-router-dom' | |
/* you'll need this CSS somewhere |
This file contains hidden or 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
import React from 'react' | |
import { | |
BrowserRouter as Router, | |
Route, | |
Link | |
} from 'react-router-dom' | |
const PEEPS = [ | |
{ id: 0, name: 'Michelle', friends: [ 1, 2, 3 ] }, | |
{ id: 1, name: 'Sean', friends: [ 0, 3 ] }, |
NewerOlder