Skip to content

Instantly share code, notes, and snippets.

View SazzadR's full-sized avatar
🎯

Sazzadur Rahman SazzadR

🎯
  • Sixads
  • Dhaka, Bangladesh
View GitHub Profile
@SazzadR
SazzadR / di_container.py
Last active June 30, 2022 22:54
Dead simple depedency injection container (IoC container) in Python
class DIContainer:
bindings = {}
def set(self, abstract, factory):
self.bindings[abstract] = factory
def get(self, abstract):
return self.bindings[abstract](self)
@SazzadR
SazzadR / button-component-vue-and-tailwind.markdown
Created January 4, 2021 19:01
Button Component Vue and Tailwind