CLICK ME
yes, even hidden code blocks!
print("hello world!")
(function scrapeData() { | |
const tbody = document.querySelector('tbody'); | |
const trElements = tbody.querySelectorAll('tr'); | |
const result = []; | |
trElements.forEach((tr) => { | |
const amountElement = tr.querySelector('.amount'); | |
const nameElement = tr.querySelector('.name'); | |
if (amountElement && nameElement) { |
let | |
pkgs = import (builtins.fetchTarball { | |
url = | |
"https://github.com/NixOS/nixpkgs-channels/archive/b0bbacb52134a7e731e549f4c0a7a2a39ca6b481.tar.gz"; | |
sha256 = "15ix4spjpdm6wni28camzjsmhz0gzk3cxhpsk035952plwdxhb67"; | |
}) { }; | |
# The standard library in nixpkgs does not come with a *.agda-lib file, so we | |
# generate it here. |
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.
sudo apt-get install texlive-latex-base