julia 1.10.2, url esc sequence removal

This commit is contained in:
Meik Hellmund 2024-03-28 12:56:00 +01:00
parent d8123167be
commit 425a65f7db
5 changed files with 12 additions and 13 deletions

View File

@ -1,5 +1,5 @@
import sys
f = sys.stdin.read()
g = f.replace('\\u001b[','ꍟ⦃')
g = f.replace('\\u001b[','ꍟ⦃').replace('\\u001b]8;;','').replace('\\u001b\\\\','')
sys.stdout.write(g)

View File

@ -45,14 +45,14 @@ book:
- chapters/first_contact.qmd
- chapters/Erste_Bsp.qmd
- chapters/syntax.qmd
# - chapters/5_TricksHelp.qmd
# - chapters/numerictypes.qmd
# - chapters/Pi2.qmd
# - chapters/pcomplex.qmd
# - chapters/9_functs.qmd
# - chapters/6_ArraysEtcP1.qmd
# - chapters/7_ArraysP2.qmd
# - chapters/10_Strings.qmd
- chapters/5_TricksHelp.qmd
- chapters/numerictypes.qmd
- chapters/Pi2.qmd
- chapters/pcomplex.qmd
- chapters/9_functs.qmd
- chapters/6_ArraysEtcP1.qmd
- chapters/7_ArraysP2.qmd
- chapters/10_Strings.qmd
# - chapters/makie.qmd
# - chapters/ablaufsteuerung.qmd
# - chapters/example.qmd

View File

@ -1,7 +1,6 @@
# Arbeit mit Julia: REPL, Pakete, Introspection
@sec-tab
## Dokumentation

View File

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

View File

@ -15,7 +15,7 @@ f = Figure(size=(800, 180))
for i in 1:4
x = sin.( a[i] .* t .+ δ )
y = sin.( b[i] .* t )
lines(f[1, i], x, y, aspect=1 )
lines(f[1, i], x, y, aspect = 1)
end
f
```
@ -27,7 +27,7 @@ f
Intelligence Laboratory* des MIT
- 2012 erste release v0.1
- 2018 Version v1.0
- aktuell: v1.10.1 vom 13. Februar 2024
- aktuell: v1.10.2 vom 1. März 2024
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.