Skip to content

Instantly share code, notes, and snippets.

View Shakil-Shahadat's full-sized avatar
🏠
Working from home

Shakil Shahadat Shakil-Shahadat

🏠
Working from home
View GitHub Profile
@Shakil-Shahadat
Shakil-Shahadat / index.html
Last active October 25, 2024 13:24
★ Miscellaneous HTML Codes
<!-- Turn Off Spell Check -->
<input type="text" spellcheck="false">
<!-- Auto Focus -->
<input type="text" autofocus>
<!-- Content Editable -->
<p contenteditable></p>
<!-- Horizontal Centering -->
@Shakil-Shahadat
Shakil-Shahadat / miscellaneous.php
Last active March 25, 2025 10:26
★ Miscellaneous PHP Codes
<?php
//-------------------------------------------------------
// Send Email
//-------------------------------------------------------
$to = '[email protected]';
$subject = 'Test mail';
$message = 'Hello! This is a simple email message.';
$from = '[email protected]';
@Shakil-Shahadat
Shakil-Shahadat / miscellaneous.js
Last active January 22, 2025 06:05
★ Miscellaneous JavaScript Codes
//-------------------------------------------------------
// 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
@Shakil-Shahadat
Shakil-Shahadat / favicon.html
Last active July 3, 2024 04:46
✓ Favicon HTML Code
<link rel="icon" href="src/favicon.ico">
<link rel="icon" href="src/favicon.svg" type="image/svg+xml">
@Shakil-Shahadat
Shakil-Shahadat / post.php
Last active March 24, 2025 13:58
✓ POST Request by Fetch
<?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
@Shakil-Shahadat
Shakil-Shahadat / get.php
Last active March 23, 2025 11:40
✓ GET Request by Fetch
<?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
[{"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": "
@Shakil-Shahadat
Shakil-Shahadat / common.css
Last active December 13, 2024 12:36
★ Some Common CSS Styles I Regularly Use
body
{
font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif;
background-color: whitesmoke;
line-height: 26px;
}
.container
{
background: white;
border: 1px solid silver;
@bbrochier
bbrochier / gotop.css
Last active May 27, 2018 19:00
Go Top Sticky button
/* 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;
@ingowennemaring
ingowennemaring / scrolltotop.js
Created April 18, 2013 14:16
Scroll to top of page
$('.goto-top').on(
'click',
function(e){
e.preventDefault();
$('html, body').animate( { scrollTop: 0 } );
}
);