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
/* jshint -W028 */ | |
// bookmarklets to summarize the shown webpage. | |
// replace XXXInsertAPIKeyHereXXX with your API key to use these bookmarklets. | |
// this summarizes the text on the page. (We might have to cut it down to 3000 words, because the API has a limit of 3000 words.) | |
javascript:(async () => { | |
var apikey = "XXXInsertAPIKeyHereXXX"; | |
const maxwordcount = 2500; | |
try { |
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
module ActionController | |
class Parameters | |
private | |
def unpermitted_parameters!(params) | |
unpermitted_keys = unpermitted_keys(params) | |
if unpermitted_keys.any? | |
case self.class.action_on_unpermitted_parameters | |
when :log | |
name = "unpermitted_parameters.action_controller" |