// jQuery
$(document).ready(function() {
// code
})
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
import smtplib | |
import os | |
def send_email(host, port, username, password, subject, body, mail_to, mail_from = None, reply_to = None): | |
if mail_from is None: mail_from = username | |
if reply_to is None: reply_to = mail_to | |
message = """From: %s\nTo: %s\nReply-To: %s\nSubject: %s\n\n%s""" % (mail_from, mail_to, reply_to, subject, body) | |
print (message) | |
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
const listeners = (function listAllEventListeners() { | |
let elements = []; | |
const allElements = document.querySelectorAll('*'); | |
const types = []; | |
for (let ev in window) { | |
if (/^on/.test(ev)) types[types.length] = ev; | |
} | |
for (let i = 0; i < allElements.length; i++) { | |
const currentElement = allElements[i]; |
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 | |
/** | |
* PHPMailer - PHP email creation and transport class. | |
* PHP Version 5.5. | |
* | |
* @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project | |
* | |
* @author Marcus Bointon (Synchro/coolbru) <[email protected]> | |
* @author Jim Jagielski (jimjag) <[email protected]> | |
* @author Andy Prevost (codeworxtech) <[email protected]> |
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 | |
class IwMail { | |
protected $subject; | |
protected $headers; | |
protected $content; | |
protected $to; | |
protected $from; | |
public $mail; |
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
public static function WriteErrorFile(String $msg) { | |
$fpath = base_path() . '/errors.log'; | |
$fpath = "/Applications/AMPPS/www/lwnew.thelivingwellco.com.sg/wp-content/plugins/itwonders-woocommerce-deposit/errors.log"; | |
error_log(print_r($msg, TRUE), 3, $fpath); | |
} | |
public static function backtrace($skip=0, $limit=12) { | |
$dump = []; | |
$mydump = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, $limit); |
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
{ | |
"particles": { | |
"number": { | |
"value": 80, | |
"density": { | |
"enable": true, | |
"value_area": 800 | |
} | |
}, | |
"color": { |
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
.test { | |
height: 139px; | |
width: 96px | |
} |
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
function loadScript(url) { | |
var script = document.createElement("script"); // create a script DOM node | |
script.src = url; // set its src to the provided URL | |
document.head.appendChild(script); | |
} | |
loadScript('https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/1.3.3/FileSaver.min.js') | |
/* | |
pass in either myDOM, myid, or myclass, just one of them |