Skip to content

Instantly share code, notes, and snippets.

View jhartzell's full-sized avatar
🤑
I may be slow to respond.

Josh Hartzell jhartzell

🤑
I may be slow to respond.
View GitHub Profile
@AustinHunt
AustinHunt / App.jsx
Last active April 30, 2020 21:09
RenderCounter for React Native
import { Text, View } from 'react-native';
import RenderCounter, { RenderCounterProvider } from "./lib/RenderCounter";
function Home() {
return (
<>
<View>
<Text>Welcome!</Text>
</View>
<View>
@jhartzell
jhartzell / helpful-docker-commands.sh
Created May 13, 2019 13:34 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container