Skip to content

Instantly share code, notes, and snippets.

View xlebovoz's full-sized avatar
🍞
nothing

XLEB xlebovoz

🍞
nothing
View GitHub Profile
@Lovac
Lovac / gist:3bce915ae05287cff9e019041a746ac2
Created September 11, 2022 21:14
Rimworld 500-600 Mod List and Counting
Mod list length: 556 Sorted with RimPy v1.2.6.25
* = Forbidden
Harmony 2009463077
BetterLoading 1999454301
Visual Exceptions 2538411704
Core
Royalty
Ideology
@Priler
Priler / pywebio_online_chat.py
Created October 22, 2021 12:53
Simple online chat on Python in less than 100 lines of code
import asyncio
from pywebio import start_server
from pywebio.input import *
from pywebio.output import *
from pywebio.session import defer_call, info as session_info, run_async, run_js
chat_msgs = []
online_users = set()