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 / 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 / Months.js
Last active June 20, 2024 19:00
[ Delete ] A list of Months in JS Array
months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ];
@Shakil-Shahadat
Shakil-Shahadat / index.html
Last active June 23, 2024 22:35
✓ Floating box with animation. Demo: https://codepen.io/shakil/pen/BadEgwQ
<div class="info"></div>
@Shakil-Shahadat
Shakil-Shahadat / float.css
Last active June 23, 2024 22:38
[ Delete ] Centering a floating item
.box
{
position: sticky;
bottom: 20px;
width: 600px;
margin: auto;
}
@Shakil-Shahadat
Shakil-Shahadat / ToDo.todo
Last active June 23, 2024 22:41
✓ Basic ToDo File Structure
Bug:
Feature:
Improvement:
Change:
Other:
@Shakil-Shahadat
Shakil-Shahadat / loopOverArray.js
Last active July 1, 2024 04:41
[ Delete ] Summary of 'for / in' & 'for / of' loop
let fruits = [ 'apple', 'orange', 'mango' ];
// for / of loop
for ( e of fruits )
{
// e is now an element of the array
console.log( e ); // Output: apple, orange, mango
}
// for / in loop
@Shakil-Shahadat
Shakil-Shahadat / position.css
Last active June 23, 2024 22:45
[ Delete ] Types of CSS Positioning
.box
{
position: static;
position: absolute;
position: fixed;
position: relative;
position: sticky;
}
@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 / timing.js
Last active June 22, 2024 13:29
[ Delete ] JavaScript Timing Events
// One time event
setTimeout( function(){}, 1000 );
// Repetitive event
setInterval( function(){}, 1000 );
// If these need to be canceled, then assign them
// to a variable and then clear them like this.
clearTimeout( assignedVar );
clearInterval( assignedVar );
@Shakil-Shahadat
Shakil-Shahadat / style.js
Last active June 22, 2024 14:11
[ Delete ] Add CSS Styles within JavaScript
let s = document.createElement( 'style' );
s.innerText = `
.box
{
display: none;
}
`;
document.head.appendChild( s );