Skip to content

Instantly share code, notes, and snippets.

View andrewlvovsky's full-sized avatar
:shipit:
Getting 𝑺 𝑬 𝑮 𝑭 𝑨 𝑼 𝑳 𝑻 𝑺 since '95

Andrew Lvovsky andrewlvovsky

:shipit:
Getting 𝑺 𝑬 𝑮 𝑭 𝑨 𝑼 𝑳 𝑻 𝑺 since '95
View GitHub Profile
@JacobHughes
JacobHughes / HashTable
Created January 22, 2015 03:35
Template Class for Hash Table
template <typename K, typename V>
class HashTable
{
/*
This is my implementation of a generic template class for
a hash table. Type K is the key-type, and V is the data.
This allows any object as the Key or Value.
This implemenation uses a 2D-array for the hash table,
implented with vectors of HashBucket objects.
The HashBucket objects hold and generate hash keys, as well
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active September 23, 2024 13:19
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@claudiosanches
claudiosanches / django-runserver-ssl.md
Last active August 10, 2024 06:42
Django - SSL with runserver

Instalation

[sudo] apt-get install stunnel

Configuration

cd path/to/django/project