I hereby claim:
- I am masenf on github.
- I am mjf (https://keybase.io/mjf) on keybase.
- I have a public key ASDCVQEDEpS_sGNzSTyhyPiswuwZVFEwcD3TPsIo68BkQgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
from typing import Any | |
import httpx | |
import reflex as rx | |
class HtmlDangerous(rx.Component): | |
"""Render the html via createRange().createContextualFragment. | |
Allows for execution of scripts in the given HTML without restriction. |
import reflex as rx | |
import reflex.components.radix.themes as rdxt | |
from reflex.components.component import MemoizationLeaf | |
from reflex.utils import imports | |
class State(rx.State): | |
val: int = 50 | |
Because I have loads and loads of git branches in my work repos, the git branch
command,
with its default settings, is essentially useless to me.
gb
is my attempt to hack out a nice looking output of recently active branches in a repo.
Most of this example was cobbled together by reading man
pages, trolling git
source code,