Skip to content

Instantly share code, notes, and snippets.

View druskus20's full-sized avatar
🦀
::<>

Druskus druskus20

🦀
::<>
View GitHub Profile
@druskus20
druskus20 / tut.md
Last active September 8, 2022 08:25 — forked from rain1024/tut.md
Install pdflatex ubuntu

PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.

  • Install the TexLive base
sudo apt-get install texlive-latex-base
  • Also install the recommended and extra fonts to avoid running into the error [1], when trying to use pdflatex on latex files with more fonts.
@druskus20
druskus20 / shifting_squares.pde
Last active May 24, 2021 20:35 — forked from beesandbombs/shiftinSquares.pde
Shifting Squares GIF
// by dave @beesandbombs
int[][] result;
float t, c;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
float ease(float p, float g) {