Skip to content

Instantly share code, notes, and snippets.

@lefig
lefig / Visual Studio 2022 Product Key
Created September 17, 2023 12:12
Visual Studio 2022 Enterprise Product key
Visual Studio 2022
Enterprise :
VHF9H-NXBBB-638P6-6JHCY-88JWH
Professional:
TD244-P4NB7-YQ6XK-Y8MMM-YWV2J
@lefig
lefig / For pleasure
Last active May 16, 2020 15:24
LSE Snapshot
Have fun
@lefig
lefig / README.md
Created May 1, 2020 12:19 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@lefig
lefig / something.py
Created July 27, 2017 21:00 — forked from kirang89/something.py
Creating a mutable ARRAY data type in sqlalchemy
class Something(Base):
__tablename__ = 'yaddayadda'
id = Column(Integer, primary_key=True)
data = Column(MutableList.as_mutable(ARRAY(String(100))))