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
<!-- Turn Off Spell Check --> | |
<input type="text" spellcheck="false"> | |
<!-- Auto Focus --> | |
<input type="text" autofocus> | |
<!-- Content Editable --> | |
<p contenteditable></p> | |
<!-- Horizontal Centering --> |
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 | |
//------------------------------------------------------- | |
// Send Email | |
//------------------------------------------------------- | |
$to = '[email protected]'; | |
$subject = 'Test mail'; | |
$message = 'Hello! This is a simple email message.'; | |
$from = '[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
//------------------------------------------------------- | |
// Add target="_blank" attribute to all anchor tags | |
//------------------------------------------------------- | |
// Add target="_blank" to all anchor tags, v 2.1 | |
for ( let x of document.links ) x.setAttribute( 'target', '_blank' ); | |
//------------------------------------------------------- | |
// Functions to shorten querySelector* calls |
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
<link rel="icon" href="src/favicon.ico"> | |
<link rel="icon" href="src/favicon.svg" type="image/svg+xml"> |
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 | |
header( 'Access-Control-Allow-Origin: *' ); | |
$received = file_get_contents( 'php://input' ); | |
echo $received; | |
// Ref: https://www.php.net/manual/en/reserved.variables.post.php#125651 |
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 | |
header( 'Access-Control-Allow-Origin: *' ); | |
$received = file_get_contents( 'php://input' ); | |
echo $received; | |
// Ref: https://www.php.net/manual/en/reserved.variables.post.php#125651 |
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
[{"quote": "Life isn’t about getting and having, it’s about giving and being.", "author": "Kevin Kruse"}, | |
{"quote": "Whatever the mind of man can conceive and believe, it can achieve.", "author": "Napoleon Hill"}, | |
{"quote": "Strive not to be a success, but rather to be of value.", "author": "Albert Einstein"}, | |
{"quote": "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.", "author": "Robert Frost"}, | |
{"quote": "I attribute my success to this: I never gave or took any excuse.", "author": "Florence Nightingale"}, | |
{"quote": "You miss 100% of the shots you don’t take.", "author": "Wayne Gretzky"}, | |
{"quote": "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", "author": "Michael Jordan"}, | |
{"quote": "The most difficult thing is the decision to act, the rest is merely tenacity.", "author": " |
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
body | |
{ | |
font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif; | |
background-color: whitesmoke; | |
line-height: 26px; | |
} | |
.container | |
{ | |
background: white; | |
border: 1px solid silver; |
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
/* Go Top */ | |
.go-top { | |
position: fixed; | |
bottom: 2em; | |
right: 2em; | |
text-decoration: none; | |
color: white; | |
background-color: #f6f6f6; | |
background-color: rgba(0, 0, 0, 0.3); | |
font-size: 12px; |
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
$('.goto-top').on( | |
'click', | |
function(e){ | |
e.preventDefault(); | |
$('html, body').animate( { scrollTop: 0 } ); | |
} | |
); |
NewerOlder