Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kaplanmaxe
kaplanmaxe / debug.js
Last active February 18, 2017 16:32
Advanced debugging with js
/**
* Neatly output results of an array into a nice table
* API: https://developer.mozilla.org/en-US/docs/Web/API/Console/table
*/
console.table([
{ name: 'Max', age: 24 },
{ name: 'Susan', age: 52 },
{ name: 'John', age: 33 }
]);
@kaplanmaxe
kaplanmaxe / index.html
Created February 18, 2017 13:52
PHP ReCAPTCHA Form
<form action="mail.php" method="post" enctype="multipart/form-data">
<input name="sender_name" placeholder="Your Name..."/>
<input name="sender_email" placeholder="Your email..."/>
<textarea placeholder="Your Message..." name="sender_message">
<div class="captcha_wrapper">
<div class="g-recaptcha" data-sitekey="YOUR_KEY"></div>
</div>
<button type="submit" id="send_message">Send Message!</button>
</form>
@kaplanmaxe
kaplanmaxe / mail.php
Last active May 7, 2020 05:02
PHP Recaptcha PHP tutorial
<?php
$sender_name = stripslashes($_POST["sender_name"]);
$sender_email = stripslashes($_POST["sender_email"]);
$sender_message = stripslashes($_POST["sender_message"]);
$response = $_POST["g-recaptcha-response"];
$url = 'https://www.google.com/recaptcha/api/siteverify';
$data = array(
'secret' => 'YOUR_SECRET',
'response' => $_POST["g-recaptcha-response"]
@kaplanmaxe
kaplanmaxe / speech.js
Last active February 18, 2017 16:36
JS Speech Synthesis
const msg = new SpeechSynthesisUtterance('hello, max');
window.speechSynthesis.speak(msg);
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.groupme.com/v3/bots/post');
curl_setopt($ch, CURLOPT_POST, 1);
//REPLACE YOUR_BOT_ID with BOT_ID FROM GROUPME
curl_setopt($ch, CURLOPT_POSTFIELDS, "text=TESTING&bot_id=YOUR_BOT_ID");
curl_exec($ch);
curl_close($ch);