show dbs
React.js
- Official documentation - https://reactjs.org/docs/hello-world.html
- React.js course by Kent C. Dodds - https://egghead.io/courses/the-beginner-s-guide-to-reactjs
- React Holiday - https://react.holiday/
- React Englightment - https://www.reactenlightenment.com/
- Learn React by Michael Chan - https://learnreact.com/
- 30 days of React - https://www.fullstackreact.com/30-days-of-react/
- The road to learn React - https://www.robinwieruch.de/the-road-to-learn-react/
- React Patterns - https://reactpatterns.com/
- React bits - https://github.com/vasanthk/react-bits
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
from typing import Any, Generator | |
def fibo(N: int) -> Generator[int, Any, Any]: | |
"""Return Generator of Fibonnaci Terms | |
Args: | |
N (int): Fibonaaci Terms Upto the N'th | |
Raises: |
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
""" | |
New Version of Pascal row with prettyfy the rows | |
""" | |
from functools import wraps | |
from math import comb | |
# ____________________________________________________________________________________ # |
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
""" | |
Single Responsibility Principle | |
“…You had one job” — Loki to Skurge in Thor: Ragnarok | |
A class should have only one job. | |
If a class has more than one responsibility, it becomes coupled. | |
A change to one responsibility results to modification of the other responsibility. | |
""" | |
class Animal: | |
def __init__(self, name: str): |