Skip to content

Instantly share code, notes, and snippets.

@A1vinSmith
A1vinSmith / Privilege Escalation.md
Last active November 15, 2025 02:24
Privilege Escalation: Systemctl (Misconfigured Permissions — sudo/SUID)
@dennisprangle
dennisprangle / jags_install.md
Last active November 15, 2025 02:22
JAGS installation notes

Tips for installing JAGS on your own PC

Window / Mac

First you need to install the JAGS program. You can download the installer from https://sourceforge.net/projects/mcmc-jags/files/.

Then install rjags R package. Within R, run install.packages ("rjags").

If this doesn't work, see the troubleshooting tips below. I'll try to add more advice as particular issues come up.

@mhSangar
mhSangar / install-textlive.sh
Created April 21, 2021 23:45
Latex Workshop VSCode settings for Biber and pdflatex and installation steps for textlive
#!/bin/bash
echo "Installing TextLive"
sudo apt install -y texlive-latex-extra
sudo apt install -y texlive-lang-english texlive-lang-spanish texlive-bibtex-extra
# sudo apt autoremove
@adns44
adns44 / ovh-eco-bf-2024.md
Last active November 15, 2025 02:17
OVH ECO 2024 BlackFriday offers

OVHcloud ECO 2024 BlackFriday offers

You can use the values provided here on API order You can find the planCode, FQN, addons and labels, everything that are needed to place an order.

Use it on your own risk. Prices and specs are not guaranteed!

Source: OVH availability API and OVH catalog.

@Klerith
Klerith / instalaciones-nestjs.md
Last active November 15, 2025 02:16
Instalaciones recomendadas para el curso de Nest.js
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active November 15, 2025 02:15
set -e, -u, -o, -x pipefail explanation
@xiaolai
xiaolai / markdownhere.css
Created July 2, 2016 12:12
markdown-here-css
.markdown-here-wrapper {
font-size: 16px;
line-height: 1.8em;
letter-spacing: 0.1em;
}
pre, code {
font-size: 14px;
font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace;
#EXTM3U
#EXTINF:-1,beINSports-fr1
http://iptv.am000.tv:8000/live/add17/add17/16.ts
#EXTINF:-1,beINSports-fr2
http://iptv.am000.tv:8000/live/add17/add17/17.ts
#EXTINF:-1,BEINSPORTS-FR3
http://iptv.am000.tv:8000/live/add17/add17/566.ts
#EXTINF:-1,Alkas-1
http://iptv.am000.tv:8000/live/add17/add17/73.ts
#EXTINF:-1,Alkas-2
@FranklinYu
FranklinYu / README.markdown
Last active November 15, 2025 02:06
links for old versions of Docker for Mac (inspired by docker/for-mac#1120)

links for old versions of Docker for Mac

Deprecated

Docker provides download links in release note. They promised that

(we) will also include download links in release notes for future releases.

Note:

@mmozeiko
mmozeiko / !README.md
Last active November 15, 2025 01:55
Download MSVC compiler/linker & Windows SDK without installing full Visual Studio

This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.

Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.

You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.

To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.

To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).