Skip to content

Instantly share code, notes, and snippets.

View abionics's full-sized avatar

Alex Ermolaev abionics

View GitHub Profile
// https://codeforces.com/contest/2105/problem/A
// 124.35 points
message Vote {
value: Bool;
}
struct ProposalState {
yesCount: Int as uint32;
noCount: Int as uint32;
@denguir
denguir / cuda_install.md
Last active December 28, 2025 15:53
Installation procedure for CUDA / cuDNN / TensorRT

How to install CUDA / cuDNN / TensorRT on Ubuntu

Install NVIDIA drivers

Update & upgrade

sudo apt update && sudo apt upgrade

Remove previous NVIDIA installation

@plentz
plentz / nginx.conf
Last active March 3, 2026 06:56
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048