Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michael-genson/michael-genson
Config files for my GitHub profile.
https://github.com/michael-genson/michael-genson
config github-config
Last synced: about 17 hours ago
JSON representation
Config files for my GitHub profile.
- Host: GitHub
- URL: https://github.com/michael-genson/michael-genson
- Owner: michael-genson
- Created: 2022-07-17T15:04:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T14:31:07.000Z (7 months ago)
- Last Synced: 2024-05-02T09:34:52.039Z (7 months ago)
- Topics: config, github-config
- Homepage: https://github.com/michael-genson
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Hey, I'm Michael Genson! 👋
---
```python
from models._base import Michael
from typing import TYPE_CHECKINGif TYPE_CHECKING:
from models.work import Projectclass Worker(Michael):
def __init__(self, current_project: Project = None, **kwargs) -> None:
super().__init__(**kwargs)
self.current_project = current_project
if self.working or self.bored:
self.start_work()def start_work(self) -> None:
if not self.current_project:
"""
If I'm not writing some custom systems integration at work,
I'm probably tinkering with some open source software to save
myself 5-10 seconds of manual effort
"""
self.current_project = self.find_something_to_work_on()self.current_project.do_work(self)
```