Skip to content

Instantly share code, notes, and snippets.

View Vasniktel's full-sized avatar
🇺🇦

Vasyl Teliman Vasniktel

🇺🇦
View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active January 4, 2026 10:17
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@coltonbh
coltonbh / docker-swarm-gpu.md
Last active November 7, 2025 13:40
Docker Swarm GPU Support

GPU Support For Docker Swarm

Docker compose has nice support for GPUs, K8s has moved their cluster-wide GPU scheduler from experimental to stable status. Docker swarm has yet to support the device option used in docker compose so the mechanisms for supporting GPUs on swarm are a bit more open-ended.

Basic documentation

@huksley
huksley / decodeGoogleNewsUrl.ts
Last active December 12, 2025 21:42
This script decodes Google News generated encoded, internal URLs for RSS items
/**
* This magically uses batchexecute protocol. It's not documented, but it works.
*
* Licensed under: MIT License
*
* Copyright (c) 2024 Ruslan Gainutdinov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
@tomlankhorst
tomlankhorst / docker-swarm-gpu.md
Last active November 26, 2025 14:51
Instructions for Docker swarm with GPUs
@h-j-13
h-j-13 / tz.py
Created February 11, 2019 12:16
timezone info
#!/usr/bin/env python
# encoding:utf-8
from dateutil import parser
whois_timezone_info = {
"A": 1 * 3600,
"ACDT": 10.5 * 3600,
"ACST": 9.5 * 3600,
"ACT": -5 * 3600,
@dadoonet
dadoonet / search_kibana_console.txt
Last active July 4, 2024 09:28
Demo script for "A NoSQL search engine to find..." talk
### REINIT
DELETE user
PUT user
{
"mappings": {
"properties": {
"name": {
"type": "text"
},
"comments": {
@atoponce
atoponce / gist:07d8d4c833873be2f68c34f9afc5a78a
Last active January 9, 2026 17:07 — forked from tqbf/gist:be58d2d39690c3b366ad
Cryptographic Best Practices

Cryptographic Best Practices

Putting cryptographic primitives together is a lot like putting a jigsaw puzzle together, where all the pieces are cut exactly the same way, but there is only one correct solution. Thankfully, there are some projects out there that are working hard to make sure developers are getting it right.

The following advice comes from years of research from leading security researchers, developers, and cryptographers. This Gist was [forked from Thomas Ptacek's Gist][1] to be more readable. Additions have been added from