Skip to content

Instantly share code, notes, and snippets.

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

Felipe Roque de Albuquerque Neto feliperoque

:shipit:
I don't know
  • Federal Institute of Pernambuco - IFPE
  • Brazil, Recife, Pernambuco
View GitHub Profile
@judero01col
judero01col / Service KMS
Last active June 16, 2025 07:19
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 September 30, 2024 07:47
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
''