Skip to content

Instantly share code, notes, and snippets.

View SamuelTissot's full-sized avatar
💾
discovering

Samuel Tissot SamuelTissot

💾
discovering
  • Montreal
View GitHub Profile
@SamuelTissot
SamuelTissot / tut.md
Created June 4, 2024 20:54 — 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.
@SamuelTissot
SamuelTissot / translate.go
Created January 9, 2020 02:25 — forked from hvoecking/translate.go
Golang reflection: traversing arbitrary structures
// Traverses an arbitrary struct and translates all stings it encounters
//
// I haven't seen an example for reflection traversing an arbitrary struct, so
// I want to share this with you. If you encounter any bugs or want to see
// another example please comment.
//
// The MIT License (MIT)
//
// Copyright (c) 2014 Heye Vöcking
//