Skip to content

Instantly share code, notes, and snippets.

View mattrasband's full-sized avatar

Matt Rasband mattrasband

  • The Grid
  • 06:06 (UTC -06:00)
View GitHub Profile

SEI FAQ

"associate wallet" methods

Updates and complete methods here

Concept / method for associating a wallet address

any strange / unexplainable tx failures are very likely due to not having "associated"* or "linked"* the wallet yet

@mikefromit
mikefromit / jinja2_markdown_filter.md
Last active August 29, 2021 11:21
Markdown filter for jinja2

markdown.py

@environmentfilter
def markdown(env, value):
    """
    Markdown filter with support for extensions.
    """
    try:
        import markdown as md
@kracekumar
kracekumar / Writing better python code.md
Last active April 11, 2025 10:44
Talk I gave at June bangpypers meetup.

Writing better python code


Swapping variables

Bad code