Skip to content

Instantly share code, notes, and snippets.

View Theshedman's full-sized avatar
💻
Your best, always give it.

Shedrack Ajaegbu Theshedman

💻
Your best, always give it.
View GitHub Profile
@Theshedman
Theshedman / example-vault-admin-policy.hcl
Created June 22, 2023 03:35 — forked from kawsark/example-vault-admin-policy.hcl
An example Vault admin policy with capability to manage leses
# Allow managing leases
path "sys/leases/*"
{
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
}
# Manage auth methods broadly across Vault
path "auth/*"
{
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
@Theshedman
Theshedman / tut.md
Created October 25, 2022 15:30 — 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.