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
$Email = new CakeEmail(); | |
$from = "[email protected]"; | |
$to = "[email protected]"; | |
$subject = "Test Message!"; | |
$message = "Hey, this is the body of the message."; | |
$Email->from($from) | |
->bcc($to) | |
->replyTo($from) |
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
<?php | |
require 'vendor/autoload.php'; | |
use Mailgun\Mailgun; | |
use Sabre\VObject; | |
// Instantiate the Mailgun Client | |
$mg = new Mailgun("MG-API-KEY"); | |
$domain = "Your Domain"; |
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
javascript:(function(){setInterval(function() { $('.robin-chat--vote-increase').click(); console.log("Growing.") }, 1000); })() |
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
$(document).on('DOMNodeInserted', function(e) { | |
$('.robin-message--message', e.currentTarget).each(function() { | |
if (/[\u0080-\uFFFF]/.test($(this).text())) { | |
$(this).parent().remove(); | |
} | |
if($(this).text().indexOf("Robin Autovoter") > 0){ | |
$(this).parent().remove(); | |
} | |
if($(this).text().indexOf("voted") > 0){ | |
$(this).parent().remove(); |