Skip to content

Instantly share code, notes, and snippets.

View mayankshah1607's full-sized avatar
๐Ÿ•
Focusing

Mayank Shah mayankshah1607

๐Ÿ•
Focusing
View GitHub Profile
@debasishg
debasishg / cache-oblivious.md
Last active December 26, 2024 09:12
Papers related to cache oblivious data structures

Cache Oblivious and Cache Aware Data Structure and Algorithms

  1. Cache-Oblivious Algorithms and Data Structures - Erik Demaine (One of the earliest papers in cache oblivious data structures and algorithms that introduces the cache oblivious model in detail and examines static and dynamic cache oblivious data structures built between 2000-2003)

  2. Cache Oblivious B-Trees - Bender, Demaine, Farch-Colton (This paper presents two dynamic search trees attaining near-optimal performance on any hierarchical memory. One of the fundamental papers in the field where both search trees discussed match the optimal search bound of ฮ˜(1+log (B+1)N) memory transfers)

  3. Cache Oblivious Search Trees via Binary Trees of Small Height - Brodal, Fagerberg, Jacob (The data structure discussed in this paper works on the version of [2] but avoids the use o

@dims
dims / README.md
Last active March 30, 2025 21:48
Kubernetes Resources
#!/bin/bash
set -eu
if [ $# -ne 0 ]; then
echo "no arguments allowed for ${0##*/}, given: $*" >&2
exit 64
fi
bindir=$( cd "${BASH_SOURCE[0]%/*}" && pwd )
@trisberg
trisberg / Minikube-on-Fedora.md
Last active May 17, 2021 16:33
Setting up Minikube and Helm on Fedora

Setting up Minikube and Helm on Fedora

Start with a basic Fedora 27 Desktop installation.

Development Tools

Install any typical apps needed for software development like Git and Visual Studio Code.

The curl command should be available by default.