Skip to content

Instantly share code, notes, and snippets.

View v-nxe's full-sized avatar
🏳️‍⚧️
be gay do crime

nxe v-nxe

🏳️‍⚧️
be gay do crime
View GitHub Profile
@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active November 5, 2025 16:18
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@Nourz1234
Nourz1234 / anonymous_class.py
Last active February 14, 2024 11:41
Introducing new features into python! block scopes using curly braces, commas (instead of semicolons), multiline lambdas/anonymous functions, anonymous classes, "This" and "Base" keywords instead of "self" and "super", code minification, more commas, non-indentation sensitive code and more!
from madness import *
main = Function(lambda: {
# anonymous classes!
# notice the use of the magical keyword "This"
Person := Class(Object) (
"Person", # Optional class name
__init__ = lambda name, age: {