From 6b9a05f69c80238e6863efcaca2b70f66896da5b Mon Sep 17 00:00:00 2001 From: Meik Hellmund Date: Mon, 3 Mar 2025 18:09:42 +0100 Subject: [PATCH] first adaptions for 2025 --- _environment | 2 +- chapters/entwicklungsumgebungen.qmd | 2 +- chapters/first_contact.qmd | 11 ++++++----- index.qmd | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/_environment b/_environment index f825b29..c50b6b6 100644 --- a/_environment +++ b/_environment @@ -1 +1 @@ -QUARTO_JULIA_PROJECT=/home/hellmund/G/QuartoNotebookRunner.jl +QUARTO_JULIA_PROJECTXXX=/home/hellmund/G/QuartoNotebookRunner.jl diff --git a/chapters/entwicklungsumgebungen.qmd b/chapters/entwicklungsumgebungen.qmd index f4bcce3..9378c78 100644 --- a/chapters/entwicklungsumgebungen.qmd +++ b/chapters/entwicklungsumgebungen.qmd @@ -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 |__/ | diff --git a/chapters/first_contact.qmd b/chapters/first_contact.qmd index a880afc..a4f8e77 100644 --- a/chapters/first_contact.qmd +++ b/chapters/first_contact.qmd @@ -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 diff --git a/index.qmd b/index.qmd index 7c84fc7..4d8b9ad 100644 --- a/index.qmd +++ b/index.qmd @@ -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