This file contains hidden or 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 | |
use PHPMailer\PHPMailer\PHPMailer; | |
use PHPMailer\PHPMailer\SMTP; | |
require '../vendor/autoload.php'; | |
function sendemail($para, $nombre, $cuerpo, $asunto) { | |
$mail = new PHPMailer; | |
$mail->isSMTP(); | |
$mail->SMTPDebug = 2; | |
$mail->Host = 'smtp.gmail.com'; |
This file contains hidden or 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
var sitesList = [ | |
["http://heeeeeeeey.com/"], | |
["http://tinytuba.com/"], | |
["http://corndog.io/"], | |
["http://thatsthefinger.com/"], | |
["http://cant-not-tweet-this.com/"], | |
["http://weirdorconfusing.com/"], | |
["https://www.eyes-only.net/"], | |
["http://eelslap.com/"], | |
["http://www.staggeringbeauty.com/"], |
This file contains hidden or 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
for file in $(find . -name "*.css"); do mv ${file} ${file%.css}.scss; done |
This file contains hidden or 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
https://react-select.com/async - official docs | |
https://github.com/apollographql/apollo-client/issues/5268 - working with apollo | |
https://codesandbox.io/s/react-select-with-uselazequery-5bkpt?file=/src/index.js - select + useLazyQuery example | |
https://codesandbox.io/s/98vxxr18zw?file=/example.js - async debouce example | |
https://stackoverflow.com/questions/52695414/react-select-with-react-apollo-does-not-work - async + apollo client |
This file contains hidden or 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
/* | |
PutCallFlag: Either "put" or "call" | |
S: Stock Price | |
X: Strike Price | |
T: Time to expiration (in years) | |
r: Risk-free rate | |
v: Volatility | |
This is the same one found in http://www.espenhaug.com/black_scholes.html | |
but written with proper indentation and a === instead of == because it's |
OlderNewer