- Read through https://users.dickinson.edu/~richesod/latex/latexcheatsheet.pdf at the beginning.
- Print https://wch.github.io/latexsheet/latexsheet.pdf
- Make account at https://www.overleaf.com/
- Load template form
- https://www.overleaf.com/latex/templates or https://www.latextemplates.com/
- Use https://mathpix.com/ and http://detexify.kirelabs.org/classify.html to find what your're missing
- google To find every question concerning whatever you want to change in https://tex.stackexchange.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Logging | |
| function main() | |
| # Configure logging | |
| logger = ConsoleLogger(stderr, Logging.Debug) | |
| global_logger(logger) | |
| # Use current directory as input | |
| input_directory = pwd() | |
| @info "Using current directory as input: $input_directory" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### A Pluto.jl notebook ### | |
| # v0.19.42 | |
| using Markdown | |
| using InteractiveUtils | |
| # This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error). | |
| macro bind(def, element) | |
| quote | |
| local iv = try Base.loaded_modules[Base.PkgId(Base.UUID("6e696c72-6542-2067-7265-42206c756150"), "AbstractPlutoDingetjes")].Bonds.initial_value catch; b -> missing; end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let | |
| function ℓπ(u,A,y,λ₁=1e-4,λ₂=1e-4) | |
| n,m = size(A) | |
| AQiA = A'*(I./λ₁)*A | |
| P = AQiA+I./λ₁ | |
| K = pinv(AQiA)*A'*I./λ₁ | |
| [-1.0.*(-0.5*sum((u.-inv(P)*(AQiA*K*y+ I./λ₂*u)).^2))] | |
| end | |
| rng = Xoshiro(123) | |
| A = rand(rng,5,5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### A Pluto.jl notebook ### | |
| # v0.19.22 | |
| using Markdown | |
| using InteractiveUtils | |
| # ╔═╡ 5b968cc8-1a40-11ee-1f21-d39b07e2611c | |
| md"# Aufzug" | |
| # ╔═╡ 267967f6-63fc-46d4-8559-aad4c5da64c6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Press [CTRL+C] to stop.." | |
| while :; do | |
| ps -eo pid,ppid,cmd,comm,%mem,%cpu --sort=-%mem | head -10 | |
| sleep 1 | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Ender 3 Custom End G-code | |
| M400 ; Wait for current moves to finish | |
| G4 ; Wait | |
| M220 S100 ; Reset Speed factor override percentage to default (100%) | |
| M221 S100 ; Reset Extrude factor override percentage to default (100%) | |
| G91 ; Set coordinates to relative | |
| G1 F1800 E-3 ; Retract filament 3 mm to prevent oozing | |
| G1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely | |
| G90 ; Set coordinates to absolute | |
| G1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Ender 3 Custom Start G-code | |
| M190 S60 | |
| G28 ; Home all axes | |
| G29 ; Auto bed-level (BL-Touch) | |
| ;*** Start Preheating *** | |
| M104 S{material_print_temperature_layer_0} ; Set Extruder temperature | |
| M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature | |
| M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature | |
| M109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bash | |
| sudo rclone copy --config=~/.config/rclone/rclone.conf --auto-confirm --buffer-size 1G --bwlimit 5M --contimeout 5m --fast-list --immutable --multi-thread-streams 12 --no-update-modtime --progress --transfers 12 -u -v --stats 5s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var elems = document.querySelectorAll("#delete_undefined.icon.delete:not(.hidden)"),i | |
| for (i = 0; i < elems.length; ++i) { | |
| elems[i].click() | |
| } | |
NewerOlder