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
<html> | |
<head> | |
<style> | |
body * { | |
box-sizing: border-box; | |
} | |
.boat { | |
background-image: url(http://www.lively-dragon.com/Resources/Pictures/boat_seating.png); | |
background-size: 100% auto; |
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
// 1. Go to pokemon.com/us/pokedex | |
// 2. Copy + paste script into the console to reveal n pokemon and download their png source files. | |
// * change 151 to whatever number you like to download more / less pokemon. | |
var figures, | |
n = 151, | |
currentLength = 0; | |
loadMore.click(); | |
var downloadImages = 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
// Tired of getting Meetup.com notifications? Me too. | |
// 1. Navigate to: http://www.meetup.com/account/comm/ (you must be logged in!) | |
// 2. Open your browser's console, and paste in the script below: | |
$('.commSettings').each(function(idx, item) {var $item = $(item);var boardId = $item.attr("id").split('_')[1];var url = $item.children('form').attr('action');var params = {evRemind:1,mailing_list_status:0, submitButton:'Save Settings', submit:'submit'};params['board_' + boardId] = boardId;$.ajax({data: params, url: url, type: 'post'});});$('.generalEmailSettings').find('input[type="checkbox"]').prop('checked', false);$('.generalEmailSettings').find('input[type="submit"]').click(); |
NewerOlder