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
| #!/usr/bin/env python3 | |
| import click | |
| @click.command() | |
| @click.option('--first') | |
| @click.option('--last') | |
| @click.option('--domain') | |
| @click.option('--middle', default=None) | |
| def main(first, last, domain, middle): |
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
| # Github pages | |
| https://pages.github.com/ | |
| https://help.github.com/en/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll | |
| https://help.github.com/en/github/working-with-github-pages/about-github-pages | |
| http://jmcglone.com/guides/github-pages/ | |
| https://www.npmjs.com/package/gh-pages | |
| https://dev.to/yuribenjamin/how-to-deploy-react-app-in-github-pages-2a1f | |
| https://medium.com/the-andela-way/how-to-deploy-your-react-application-to-github-pages-in-less-than-5-minutes-8c5f665a2d2a | |
| https://github.com/gitname/react-gh-pages |
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
| System design interview framework | |
| Sam Gavis-Hughson | |
| 1. Understand the details of the system | |
| 2. Simple high-level architecture | |
| 3. Optimize | |
| 4. .... | |
| 1. What is your interviewer asking? |
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
| Building and deploying web/react apps | |
| https://mherman.org/ | |
| https://testdriven.io/ | |
| 14 Patterns to Ace Any Coding Interview Question | Hacker Noon | |
| https://hackernoon.com/14-patterns-to-ace-any-coding-interview-question-c5bb3357f6ed | |
| Free Amazon AWS Tutorial - AWS Essentials (2019) | |
| https://www.udemy.com/course/linux-academy-aws-essentials-2019/ |
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
| from math import log | |
| from collections import Counter | |
| class TFIDF(object): | |
| def __init__(self, corpus): | |
| self.corpus = corpus | |
| self.ndocs = len(corpus) | |
| self.documents = [Counter(doc.split()) for doc in corpus] | |
| self.words = sum(sum(doc.values()) for doc in self.documents) |
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
| Jason McGhee on tabular data with neural networks | |
| https://www.youtube.com/watch?v=WPQOkoXhdBQ&t= |
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 asyncio | |
| import json | |
| import websockets | |
| | |
| async def subscribe_to_exchange(): | |
| async with websockets.connect('wss://ws-feed.gdax.com') as websocket: | |
| subscribe = { | |
| "type": "subscribe", | |
| "product_ids": ["BTC-USD"], | |
| "channels": ["full"] |
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
| https://www.geeksforgeeks.org/how-to-prepare-for-amazon-software-development-engineering-interview/ | |
| http://highscalability.com/amazon-architecture | |
| https://www.aboutamazon.com/working-at-amazon/our-leadership-principles |
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
| # Websockets | |
| https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_client_applications | |
| # Michael Herman | |
| https://mherman.org/ | |
| https://testdriven.io/ | |
| # Asyncio in python | |
| https://www.integralist.co.uk/posts/python-asyncio/ |
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
| https://www.coursera.org/learn/algorithms-part1 | |
| https://www.edx.org/course/cs50s-introduction-to-computer-science | |
| https://www.coursera.org/specializations/deep-learning | |
| https://www.udemy.com/course/the-complete-web-development-bootcamp/ | |
| https://www.coursera.org/learn/python | |
| https://www.coursera.org/specializations/algorithms | |
| https://www.coursera.org/learn/learning-how-to-learn | |
| https://www.coursera.org/specializations/software-design-architecture | |
| https://machinelearningmastery.com/rfe-feature-selection-in-python/ |