Launch on mybinder.org:
Open the notebook request.ipynb and run it.
Launch on mybinder.org:
Open the notebook request.ipynb and run it.
| { | |
| "ServerApp": { | |
| "jpserver_extensions": { | |
| "insecure_param_setenv_ext": true | |
| } | |
| } | |
| } |
Run a Linux desktop VDI that can be accessed through a browser. For example
docker run -it --rm -p127.0.0.1:8888:8888 ghcr.io/manics/jupyter-desktop-mate jupyter-lab --IdentityProvider.token=""This will run a pre-built image from https://github.com/manics/jupyter-desktop-mate/ that provides a noVNC web interface to a Ubuntu MATE Desktop. Jupyter's token authentication is disabled for convenience but could be easily enabled.
Launch an AI tool that includes a browser integration, for instance Google Antigravity.
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Minimalist Speedometer</title> | |
| <style> | |
| body { font-family: sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; background: #121212; color: white; } | |
| #speed { font-size: 5rem; font-weight: bold; color: #00ff88; } | |
| .unit { font-size: 1.5rem; color: #888; } |
| FROM docker.io/library/buildpack-deps:24.04 | |
| RUN A=`openssl rand -hex 15`; \ | |
| echo $A; \ | |
| for n in `seq 60`; do \ | |
| date; \ | |
| sh -c "sleep 60; echo $A"; \ | |
| done; \ | |
| exit 1 |
An example of using Kube Resource Orchestrator (kro) to orchestrate AWS Controllers for Kubernetes (ACK).
ACK providers CRDs to manage individual AWS resources. kro enables orchestration of multiple AWS resource CRDs, including parameterisation.
ApplicationFoo:kubectl apply -f kro-aws-application-rgd.yaml| # https://github.com/GalleyBytes/terraform-operator-tasks/ | |
| # TODO: Rebuild image from source and upgrade Terraform | |
| FROM ghcr.io/galleybytes/terraform-operator-tftaskv1.1.1:1.4.6 | |
| # https://blog.nashtechglobal.com/using-terraform-without-internet/ | |
| # Cache directory needs to be writeable by the user | |
| COPY --chown=2000:0 providers.tf terraform.rc /terraform/ | |
| RUN cd /terraform && \ |
| pip-tools |
| name: example-environment | |
| channels: | |
| - conda-forge | |
| dependencies: | |
| - python=3.14 | |
| - numpy | |
| - pandas | |
| - matplotlib | |
| - pip | |
| - pip: |
| pypi-timemachine | |
| requests |