Skip to content

Instantly share code, notes, and snippets.

View jaredscheib's full-sized avatar
💭
Building in NYC 🏗️

Jared Scheib jaredscheib

💭
Building in NYC 🏗️
View GitHub Profile
@phillies
phillies / Dockerfile
Last active August 9, 2020 16:21
Reproducibility-oriented docker with pytorch and cuda support
FROM nvidia/cuda:10.1-base
# install git for accessing repositories
# and make /opt accessible for all users
RUN apt-get update && \
apt-get install -y --no-install-recommends git && \
chmod 777 /opt
SHELL ["/bin/bash", "-c"]
@gokulkrishh
gokulkrishh / media-query.css
Last active May 10, 2026 01:58
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */