Skip to content

Instantly share code, notes, and snippets.

View feliperoque's full-sized avatar
:shipit:
I don't know

Felipe Roque feliperoque

:shipit:
I don't know
View GitHub Profile
@judero01col
judero01col / Service KMS.md
Last active August 16, 2026 02:43
Volume License Activation Key Service - KMS

Find Available Target Editions

DISM.exe /Online /Get-TargetEditions

Convert Server Standard 2019 Evaluation to Server Standard 2019

DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula

How To Activate

slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr /skms [server]:[port]
slmgr /ato

@tvst
tvst / SessionState.py
Last active January 7, 2026 18:45
DO NOT USE!!! Try st.session_state instead.
"""Hack to add per-session state to Streamlit.
Usage
-----
>>> import SessionState
>>>
>>> session_state = SessionState.get(user_name='', favorite_color='black')
>>> session_state.user_name
''