Skip to content

Instantly share code, notes, and snippets.

View jsdt's full-sized avatar

Jeffrey Dallatezza jsdt

View GitHub Profile
@EyMaddis
EyMaddis / Example.tsx
Created February 5, 2021 18:28
React Native Google Cast MiniPlayer Base Implementation
function ExampleComp() {
// height is necessary otherwise it will be 0
return <View style={{ height: 60 }}>
<RNGoogleCastMiniPlayer style={{ flex: 1 }} />
</View>
}
@ryin
ryin / tmux_local_install.sh
Last active October 2, 2024 14:23
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.8