https://github.com/deathbeds/_fam
The best/worst binder in the world. ©DB
https://github.com/deathbeds/_fam
Last synced: 10 months ago
JSON representation
The best/worst binder in the world. ©DB
- Host: GitHub
- URL: https://github.com/deathbeds/_fam
- Owner: deathbeds
- License: bsd-3-clause
- Created: 2020-07-10T00:51:11.000Z (over 5 years ago)
- Default Branch: 07-25-2020
- Last Pushed: 2020-09-05T21:59:03.000Z (over 5 years ago)
- Last Synced: 2025-02-02T22:36:30.484Z (12 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 348 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# _fam
> Binders for deathbeds friends & family night
## 07-11-2020
| Status | Demo | Note |
|--------|------------------ |----------------------------------------------|
| MVP | [![b-mvp][]][mvp] | Click here, probably. |
| WIP | [![b-wip][]][wip] | Abandon hope, all ye who enter. |
## Prior parks
| Status | Demo | Note |
|--------|------------------ |----------------------------------------------|
| MVP | [![b-mvp0711][]][mvp0711] | Click here, probably. |
| WIP | [![b-wip0711][]][wip0711] | Abandon hope, all ye who enter. |
[mvp]: https://mybinder.org/v2/gh/deathbeds/_fam/7a8619c?urlpath=lab/tree/README.md
[b-mvp]: https://img.shields.io/badge/DEATHBEDS-07--25--2020-000?style=for-the-badge&logo=Jupyter&logoColor=fff&color=000
[wip]: https://mybinder.org/v2/gh/deathbeds/_fam/07-25-2020?urlpath=lab/tree/README.md
[b-wip]: https://img.shields.io/badge/DEATHBEDS-07--25--2020%CE%B2-000?style=for-the-badge&logo=Jupyter&logoColor=fff&color=000
[wip0711]: https://mybinder.org/v2/gh/deathbeds/_fam/07-11-2020?urlpath=lab/tree/README.md
[b-wip0711]: https://img.shields.io/badge/DEATHBEDS-07--11--2020%CE%B2-000?style=for-the-badge&logo=Jupyter&logoColor=fff&color=000
[mvp0711]: https://mybinder.org/v2/gh/deathbeds/_fam/4802ec0?urlpath=lab/tree/README.md
[b-mvp0711]: https://img.shields.io/badge/DEATHBEDS-07--11--2020-fff?style=for-the-badge&logo=Jupyter&logoColor=000&color=f37626
### Featured Forks
Unreleased packages and features
| Upstream | Hot Jam |
|---------------------------|------------------------|
| _your jam here_ | [PRs welcome][] |
| [jupyterlab-drawio][] | PDF, Drawio Notebooks |
| [jupyterlab-outsource][] | Lab 2.0 |
| [jupyterlab-lsp][] | Language Server Kernel |
| [jupyterlab-videochat][] | Hot Links, Manager |
| [webio][] | Lab 2.0 |
| [wxyz][] | Lab 2.0 |
[jupyter-videochat]: https://github.com/yuvipanda/jupyter-videochat
[jupyterlab-drawio]: https://github.com/QuantStack/jupyterlab-drawio
[jupyterlab-outsource]: https://github.com/deathbeds/jupyterlab-outsource
[jupyterlab-lsp]: https://github.com/krassowski/jupyterlab-lsp
[jupyterlab-videochat]: https://github.com/yuvipanda/jupyter-videochat
[jupyterlab-debugger]: https://github.com/jupyterlab/debugger
[PRs welcome]: https://github.com/deathbeds/_fam/pulls
[webio]: https://github.com/JuliaGizmos/WebIO.jl
[wxyz]: https://github.com/deathbeds/wxyz
### Julia Language Server
> if configured, is currently returing a basically empty `ServerCapabilities`
> so I must be missing something... but _should_ be something like this,
> added to `jupyter_notebook_config.json`:
> ```yaml
> "LanguageServerManager": {
> "language_servers": {
> "julia-languageserver": {
> "version": 3,
> "argv": ["julia", "--debug=yes", "--project=.", "-e", "using LanguageServer, LanguageServer.SymbolServer; runserver()", "."],
> "languages": ["julia"],
> "display_name": "LanguageServer.jl",
> "mimetypes": ["text/julia", "text/x-julia"]
> }
> }
> }
> ```