first adaptions for 2025

This commit is contained in:
Meik Hellmund 2025-03-03 18:09:42 +01:00
parent 0e712f0c33
commit 6b9a05f69c
4 changed files with 10 additions and 9 deletions

View File

@ -1 +1 @@
QUARTO_JULIA_PROJECT=/home/hellmund/G/QuartoNotebookRunner.jl
QUARTO_JULIA_PROJECTXXX=/home/hellmund/G/QuartoNotebookRunner.jl

View File

@ -32,7 +32,7 @@ $ julia
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.10.2 (2024-03-01)
| | |_| | | | (_| | | Version 1.11.3 (2025-01-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

View File

@ -30,8 +30,9 @@ function mhelp(s,n,m)
end;
function Tab(s)
l = filter(x->startswith(x,s), REPL.doc_completions(s))
println.(l[2:end])
dc = map(x->x.name, REPL.doc_completions(s))
l = filter(x->startswith(x,s), dc)
println.(l)
return # return nothing, since broadcast println produces empty vector
end
@ -311,10 +312,10 @@ v
```{julia}
using REPL
function Tab(s)
l = filter(x->startswith(x,s), REPL.doc_completions(s))
println.(l[2:end])
dc = map(x->x.name, REPL.doc_completions(s))
l = filter(x->startswith(x,s), dc)
println.(l)
return # return nothing, since broadcast println produces empty vector
end

View File

@ -39,7 +39,7 @@ f
Intelligence Laboratory* des MIT
- 2012 erste release v0.1
- 2018 Version v1.0
- aktuell: v1.10.2 vom 1. März 2024
- aktuell: v1.11.3 vom 21. Januar 2025
Zum ersten release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/)
interessant zusammengefasst.
@ -125,7 +125,7 @@ Julia has a built-in package manager."
## Eine kleine Auswahl an Online-Material zu Julia {.unnumbered}
- [Dokumentation](https://docs.julialang.org/en/v1/) - die offizielle Dokumentation
- [Cheat Sheet](https://juliadocs.github.io/Julia-Cheat-Sheet/) - "a quick & dirty overview"
- [Cheat Sheet](https://cheatsheet.juliadocs.org/) - "a quick & dirty overview"
- [Introducing Julia](https://en.wikibooks.org/wiki/Introducing_Julia)-- ein WikiBook
- [The Julia Express](http://bogumilkaminski.pl/files/julia_express.pdf) - Kurzfassung, Julia auf 16 Seiten
- [Think Julia](https://benlauwens.github.io/ThinkJulia.jl/latest/book.html) - Einführung in die Programmierung mit Julia als Sprache