Skip to content
Snippets Groups Projects
Commit 02c40e51 authored by Emmanuel Bruno's avatar Emmanuel Bruno
Browse files

initial release.

parent 7a3081c5
No related branches found
No related tags found
No related merge requests found
.ipynb_checkpoints
_config.yml
_build
_toc.yml
FROM brunoe/jupyter-base:develop
COPY . ${HOME}/work
USER root
RUN chown -R ${NB_UID} ${HOME}
USER ${NB_USER}
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
# achemso
acs-*.bib
# amsthm
*.thm
# beamer
*.nav
*.pre
*.snm
*.vrb
# changes
*.soc
# comment
*.cut
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
*.lzo
*.lzs
*.slg
*.slo
*.sls
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist
# gnuplot
*.gnuplot
*.table
# gnuplottex
*-gnuplottex-*
# gregoriotex
*.gaux
*.glog
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hyperref
*.brf
# knitr
*-concordance.tex
# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
# *.tikz
*-tikzDictionary
# listings
*.lol
# luatexja-ruby
*.ltjruby
# makeidx
*.idx
*.ilg
*.ind
# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted
_minted*
*.pyg
# morewrites
*.mw
# newpax
*.newpax
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
# pdfpcnotes
*.pdfpc
# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd
# scrwfile
*.wrt
# svg
svg-inkscape/
# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# tcolorbox
*.listing
# thmtools
*.loe
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# titletoc
*.ptc
# todonotes
*.tdo
# vhistory
*.hst
*.ver
# easy-todo
*.lod
# xcolor
*.xcp
# xmpincl
*.xmpi
# xindy
*.xdy
# xypic precompiled matrices and outlines
*.xyc
*.xyd
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt
*.bak
*.sav
# Texpad
.texpadtmp
# LyX
*.lyx~
# Kile
*.backup
# gummi
.*.swp
# KBibTeX
*~[0-9]*
# TeXnicCenter
*.tps
# auto folder when using emacs and auctex
./auto/*
*.el
# expex forward references with \gathertags
*-tags.tex
# standalone packages
*.sta
# Makeindex log files
*.lpz
# xwatermark package
*.xwm
# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
# Uncomment the next line to have this generated file ignored.
#*Notes.bib
File added
\documentclass{article}
\title{My first document}
\date{2023-03-24}
\author{John Doe}
\begin{document}
\maketitle
\section{Introduction}
Hello World!
\section{Conclusion}
It's cool.
\end{document}
\ No newline at end of file
This diff is collapsed.
print("hello python in jupyer vscode.")
\ No newline at end of file
%% Cell type:markdown id:baeb31ec-ca39-49d1-9d43-cad4808c53be tags:
# Quickstart for Jupyter base notebook
%% Cell type:markdown id:33102a08-870e-41de-89f3-261229b0cf8b tags:
## Python
%% Cell type:code id:69f6863b-6547-4e0e-9c8c-62664db684c0 tags:
``` python
text="Hello"
print(text)
```
%% Output
Hello
%% Cell type:markdown id:642a4b7b-42f8-48da-8f17-f6920e45a9ec tags:
## Bash
%% Cell type:code id:b9832d2a-df8d-484f-a783-126e57e9353a tags:
``` python
%%bash
uname -a
```
%% Output
Linux b891c201ed3e 5.15.49-linuxkit #1 SMP PREEMPT Tue Sep 13 07:51:32 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux
%% Cell type:markdown id:f54bc696-6f58-416f-971e-6e7f7b9daa28 tags:
## Git
%% Cell type:code id:7f996bc4-5ad6-4b29-884f-2fa243275467 tags:
``` python
%%bash
git --version
```
%% Output
git version 2.34.1
%% Cell type:markdown id:5e04c9ae-3445-455e-99ed-071d1b57abb5 tags:
## UML
%% Cell type:code id:f6847b3c-b14e-4176-bd4f-db400e82b691 tags:remove-cell
``` python
import iplantuml
```
%% Cell type:code id:ed7da4ef-1e2a-444f-9622-a037dcb720b4 tags:remove-input
``` python
%%plantuml --jar
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: Another authentication Response
@enduml
```
%% Output
<IPython.core.display.SVG object>
%% Cell type:markdown id:800287e2-b904-40be-b20f-f6d572395b7f tags:
## Extended markdown
%% Cell type:markdown id:35b7e483-e14e-4e54-a25b-38dced0f380f tags:
<https://jupyterbook.org/en/stable/reference/cheatsheet.html>
%% Cell type:markdown id:f0fe93fd-92dd-4590-be09-279adbb3fbae tags:
```{note}
Here is a note
```
%% Cell type:markdown id:b4c65d37-2a33-4983-b0f5-984da15f2f9f tags:
```{warning} This is my warning
bla
```
%% Cell type:markdown id:c6b8bdb8-e501-4557-be51-bc2130dcba23 tags:
$$
a^2 + b^2 = c^2
$$(eqn:pyth)
Pythagore cf. {eq}`eqn:pyth`
%% Cell type:markdown id:c60ddcfe-cbcc-4eec-a355-7621885e7ca9 tags:
\begin{align}
a_{11}& =b_{11}&
a_{12}& =b_{12}\\
a_{21}& =b_{21}&
a_{22}& =b_{22}+c_{22}
\end{align}
%% Cell type:markdown id:e388047e-b8a6-4854-a7c3-f63824b5a81d tags:
```{list-table} Table title
:header-rows: 1
:name: label-to-reference
* - Col1
- Col2
* - Row1 under Col1
- Row1 under Col2
* - Row2 under Col1
- Row2 under Col2
```
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: Another authentication Response
@enduml
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment