Skip to content

Instantly share code, notes, and snippets.

View Vasyl-Varkholyak's full-sized avatar

Vasyl Vasyl-Varkholyak

View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active July 23, 2026 07:25
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!






\

@bishboria
bishboria / springer-free-maths-books.md
Last active July 22, 2026 02:28
Springer made a bunch of books available for free, these were the direct links
@tiagopog
tiagopog / Dockerfile
Last active August 11, 2018 10:38
Docker + Docker Compose example
FROM ruby:2.2.3
MAINTAINER tiagopog@gmail.com
# Install apt based dependencies required to run Rails as
# well as RubyGems. As the Ruby image itself is based on a
# Debian image, we use apt-get to install those.
RUN apt-get update && apt-get install -y \
build-essential \
nodejs