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
import sys | |
import srt | |
from translate import Translator | |
import funcy as fy | |
codec = 'ISO-8859-1' | |
tr = Translator('sv', email='[email protected]') | |
inf = sys.argv[-1] |
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
import kind |
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
"""An extremely simple program that shows how a comparately small | |
percentage of growth turns into a consecutive doubling of the starting | |
value. | |
The strength of the relation between energy and | |
""" | |
import time | |
year = 1 |
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
Hello Glooko! | |
Working at Glooko has been a real inspiration for me. I’m excited about what’s been accomplished by the team and where we are heading in the future. | |
As the new Director of Marketing, I’ve had the pleasure of working within the marketing team and cross-departmentally to launch strategic initiatives that further align our mission and vision. As we head into ADA, I’m excited to share with you just a few of the bright points of our efforts to relaunch Glooko as the thought leader in the diabetes data management space. |
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
class _lm(object): | |
def __init__(self, msg): | |
self.msg = msg | |
def __str__(self): | |
return self.msg() | |
assert 1 == 1, _lm(lambda: 'lazy 1') | |
assert 1 == 2, _lm(lambda: 'lazy 2') |
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
import injectTapEventPlugin from ‘react-tap-event-plugin’; | |
const tapInitOnce = once(() => injectTapEventPlugin()); |
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
npm i react-tap-event-plugin — save | |
npm i material-ui — save |
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
<MuiThemeProvider muiTheme={getMuiTheme(myTheme)}> | |
<div> | |
<AppBar title="Quick proof-of-concept"/> | |
<List> | |
<ListItem primaryText="Item 1" /> | |
<ListItem primaryText="Item 2" /> | |
</List> | |
<img src={logo} className="App-logo" alt="logo"/> | |
</div> | |
</MuiThemeProvider> |
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
import myTheme from 'material-ui/styles/baseThemes/lightBaseTheme'; | |
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; | |
import getMuiTheme from 'material-ui/styles/getMuiTheme'; |
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
<div> | |
<AppBar title=”Quick proof-of-concept”/> | |
<List> | |
<ListItem primaryText=”Item 1" /> | |
<ListItem primaryText=”Item 2" /> | |
</List> | |
<img src={logo} className=”App-logo” alt=”logo”/> | |
</div> |
NewerOlder