Skip to content

Instantly share code, notes, and snippets.

@danrl
danrl / The Technical Interview Cheat Sheet.md
Last active January 18, 2024 14:04 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is TSiege's technical interview cheat sheet. Please find the original and updated at their gist page.

NOTE Forked from @TSiege on Fri 3. May, 2019

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

@danrl
danrl / dynv6.sh
Last active August 5, 2021 12:40 — forked from corny/dynv6.sh
Update script for dynv6.com to set your IPv4 address and IPv6 prefix
#!/bin/sh -e
hostname=$1
device=$2
file=$HOME/.dynv6.addr6
[ -e $file ] && old=`cat $file`
if [ -z "$hostname" -o -z "$token" ]; then
echo "Usage: token=<your-authentication-token> [netmask=64] $0 your-name.dynv6.net [device]"
exit 1
fi