Skip to content

Instantly share code, notes, and snippets.

View maniart's full-sized avatar
📶

Mani Nilchiani maniart

📶
View GitHub Profile

Candace's Crypto-training Docs

Notes from trainings giving at Eybeam (12/3/16), Free School/Escuelita Libre (1/14/17), Art is Labor (4/23/2017), and BUFU's digital security skillshare (7/11/2017)

Secure Communnications

SMS and Messaging

@brianloveswords
brianloveswords / follower-csv.js
Last active November 3, 2017 22:47
Copy a CSV of your followers to your clipboard
// put this in the console on https://twitter.com/<username/followers
timer = setInterval(() => window.scrollTo(0, document.body.scrollHeight), 100);
// wait until the document stops scrolling...
clearInterval(timer);
// this will copy the CSV to your clipboard
copy(
@dphiffer
dphiffer / uber.md
Last active January 11, 2019 18:15
Re: Working For Uber - Let's Connect!
// MapTools Component
<View style={[styles.container, top && styles.top,]}>
<TouchableOpacity hitSlop={{ top: 8, left: 8, right: 8, bottom: 8, }} onPress={onPress}>
{children}
</TouchableOpacity>
</View>
// MapTools styles
export default StyleSheet.create({
@cowboy
cowboy / black-hole-pixel.css
Created April 17, 2019 16:03
one pixel from the black hole image in css, zoomed in
body {
color: #000;
}