Skip to content

Instantly share code, notes, and snippets.

View williamnewton's full-sized avatar

William Newton williamnewton

View GitHub Profile
@williamnewton
williamnewton / icethosefools.js
Created November 11, 2015 21:37
remove non-followers, en masse
// copy paste this script into your console from the 'non-followers' screen on crowdfire
var connectBtns = document.getElementsByClassName('row item follow-item js-user-item');
var timeout;
var i = 0;
var iceUnfollowers = function() {
button = connectBtns[i].getElementsByClassName('icon icon-button-unfollow pointer action-button js-follow-unfollow-button')[0];
if (button) {
button.click();
}
.screen:hover .slider {
left:-320px;
}
@williamnewton
williamnewton / Basic App Screen CSS
Last active August 29, 2015 13:56
Basic App Screen CSS
.screen {
overflow:hidden;
width:320px;
height:568px;
}
.slider {
position:relative;
float:left;
height:568px;
left:0;
<div class='screen'>
<div class='slider'>
<img src='mockup-1'>
<img src='mockup-2'>
</div>
</div>