This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Go To x.com/{YOUR_PROFILE}/following, copy and paste these functions into your console and run | |
* await summarizeFollowers() | |
* await removeFollowers(excluding? = ['usernaname_to_keep']) | |
*/ | |
// Auto-scroll function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//<script> | |
function clearBlock(el) { | |
const node = el.parentElement.parentElement; | |
node.innerHTML = ''; | |
return node; | |
} | |
const SELECTOR = 'code:not([super-embed-seen])'; | |
function setupEmbeds() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am deanmcpherson on github. | |
* I am deanmcpherson (https://keybase.io/deanmcpherson) on keybase. | |
* I have a public key ASC-7OMzcq3931gdZcut7OQgKpuZ08NarLmqQJMlrfCF4wo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let SortableListView = require('./SortableListView'); | |
let React = require('react-native'); | |
let { | |
View, | |
Text, | |
TouchableHighlight, | |
AsyncStorage | |
} = React; | |
const DATA = 'DATA'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.alignment--left { | |
.public-DraftStyleDefault-block { | |
text-align; left; | |
} | |
} | |
.alignment--center { | |
.public-DraftStyleDefault-block { | |
text-align; center; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var FileTransfer = require('@remobile/react-native-file-transfer'); | |
var s3Conf = { | |
key: 'KEY', | |
bucket: 'BUCKET_NAME', | |
aws_url: 'https://BUCKET_NAME.REGION.amazonaws.com' | |
} | |
var guid = (function() { | |
function s4() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ScrollView horizontal={true} snapToInterval={200} snapToAlignment="center"> | |
<View style={{width: 200}}> | |
<Text>Option 1</Text> | |
</View> | |
<View style={{width: 200}}> | |
<Text>Option 2</Text> | |
</View> | |
<View style={{width: 200}}> | |
<Text>Option 3</Text> | |
</View> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var React = require('react-native'); | |
var { | |
ListView, | |
LayoutAnimation, | |
View, | |
Animated, | |
PanResponder, | |
TouchableWithoutFeedback | |
} = React; |