Skip to content

Instantly share code, notes, and snippets.

View agoose77's full-sized avatar
🏠
Working from home

Angus Hollands agoose77

🏠
Working from home
View GitHub Profile
from __future__ import annotations
from functools import wraps
from inspect import signature
import awkward as ak
# Awkward functions that are not public
def behavior_of(args) -> dict | None:
it = iter(args)
@agoose77
agoose77 / hide_builder_classes.py
Created March 12, 2023 10:00
Hide content through class names
from sphinx.transforms.post_transforms import SphinxPostTransform
from docutils import nodes
class HiddenNode(nodes.Element):
"""A node that will not be rendered."""
def __init__(self, rawsource="", *children, **attributes):
super().__init__("", **attributes)

README

Binder

To run on Binder, right-click the notebook in JupyterLab's file browser, and select "Open with Notebook"

{
"allowCDN": "awaiting-decision",
"requirejsCDN": "https://cdn.jsdelivr.net/npm/",
"urls": [],
"showIconInLauncher": true,
"plugins": [
"import {\n JupyterFrontEnd,\n JupyterFrontEndPlugin,\n} from \'@jupyterlab/application\';\nimport { ITranslator, nullTranslator } from \'@jupyterlab/translation\';\nimport { FileEditor, IEditorTracker } from \'@jupyterlab/fileeditor\';\nimport { Notebook, INotebookTracker } from \'@jupyterlab/notebook\';\nimport { ICommandPalette } from \'@jupyterlab/apputils\'\n\n/**\n * This is an example hello world plugin.\n * Open Command Palette with Ctrl+Shift+C\n * (Command+Shift+C on Mac) and select\n * \"Load Current File as Extension\"\n */\nnamespace CommandIDs {\n export const toggleComment = \'codemirror:toggle-comment\';\n}\n\n\nfunction toggleNotebook(widget: Notebook) {\n const cell = widget.content.activeCell;\n if (cell?.model.type !== \'code\') {\n return;\n }\n\n const editor = cell.editor as CodeMirrorEditor;\n edi
import {
JupyterFrontEnd,
JupyterFrontEndPlugin,
} from '@jupyterlab/application';
import { ITranslator, nullTranslator } from '@jupyterlab/translation';
import { FileEditor, IEditorTracker } from '@jupyterlab/fileeditor';
import { Notebook, INotebookTracker } from '@jupyterlab/notebook';
import { ICommandPalette } from '@jupyterlab/apputils'
/**
@agoose77
agoose77 / gha-sphinx-link-check.py
Created January 5, 2023 22:08
GitHub Actions script for annotating results of Sphinx linkcheck
import jax
from jax import numpy as jnp
class RegularArray:
def __init__(self, content, size):
self.content = content
self.size = size
def __len__(self):
def validate_items(items):
state = validator_wait_for_array
for item in prepared:
next_state = state(item)
if next_state is not None:
state = next_state
return tuple(prepared)
def validator_reject_array(item):
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
from sphinx.transforms import SphinxTransform
import sphinx.environment.collectors.toctree as toctree_collector
from sphinx import addnodes
from docutils import nodes
from typing import Any, Dict, List, Set, Tuple, Type, TypeVar, cast
from docutils import nodes
from docutils.nodes import Element, Node