You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
Gustavo Ramos Rehermann
wallabra
Artist and game developer. Systems Analysis graduate.
MushMatch is a Mush-based gameplay ormat, introduced in 2018 as an Unreal
Tournament gametype (the spotlight of GusPack 2), and that in 2019 will
have a Sentient Mushes version (with planned Zandronum compatibility).
To accompany its diversity of situations is a special soundtrack, meant to
represent many kinds of moments.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You need to interact (left-click) with an eastern bank booth in Varrock
while possessing exactly 6,667 gold coins in your bank account (which
does NOT include your backpack holdings). If you do, interacting
with the booth will force a dialogue interaction with the banker
behind, instead of taking you directly to the bank account screen.
However, if those specific circumstances are met, and you interacted
with the booth rather than the banker, there will be a hidden dialogue
response option "Ask about the Lumbridge Doomsayer¹". The banker will
PALIE: A proposed system of modifications to Python bytecode and attribute lookup
Python Attribute Lookup Internal Enumeration
This is a proposal to a modified version of Python bytecode, which supports
an enumeration of class instance attributes that are unconditionally set by
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Broad strokes of the Digital Shadow Government plan
Overview
The DSG is a planned political & mutual aid organization which seeks to encompass as broad a range of issues and as possible. This
breadth shouldn't be tackled on all at once, but gradually; starting small is good. A good and specific start would be starting as a
small digital mutual aid group, with other common interests such as political outreach.
The initial stage is an embryo. From there, the organization would develop other "departments of interest", such as logistics
and union relations, as we expect a slow growth of political influence and of material presence power, i.e. the ability to
This shows how Tokio concurrency can be used inside Vizia.
Usually, Vizia expects you to create a new system thread every time you want to spawn a concurrent task (see
vizia::context::Context::spawn).
System threads are usually heavier than async concurrency, especially with a high performance library like
Tokio, so it would be desirable to be able to use both.
Fortunately, by making main into an async routine and running vizia's main event loop inside of it, it is