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
Can you help me rephrase this to make it more [formal/casual/effective]? Here's what I want to say: [Your original statement]. | |
I need help rephrasing this statement: '[Your original statement].' Please adjust it to be [more formal/more casual/more persuasive/more concise/more technical]. The intended audience is [general public/business professionals/teens/academics/specific person or group]. The purpose of this rephrasing is [to inform/to persuade/to explain/to entertain/to appeal]. |
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
/* | |
After purchasing a humble book bundle, go to your download page for that bundle. | |
Open a console window for the page and paste in the below javascript | |
*/ | |
$('a').each(function(i){ | |
if (['MOBI', 'PDF', 'EPUB', 'PDF (HQ)', 'PDF (HD)'].indexOf($.trim($(this).text())) >= 0) { | |
$('body').append('<iframe id="dl_iframe_'+i+'" style="display:none;">'); | |
document.getElementById('dl_iframe_'+i).src = $(this).data('web'); | |
} | |
}); |