Skip to content

Instantly share code, notes, and snippets.

View MaedahBatool's full-sized avatar
🎯
Building Communities

Maedah Batool MaedahBatool

🎯
Building Communities
View GitHub Profile
@MaedahBatool
MaedahBatool / gatsby-remark-embed-video-eg.js
Last active April 4, 2019 12:30
gatsby-remark-embed-video Plugin Example
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
// Using gatsby-remark-embed-video before gatsby-remark-images & gatsby-remark-responsive-iframe plugins.
resolve: `gatsby-remark-embed-video`,
options: {
maxWidth: 800,
<p>A simple representation of an animated bouncing page loader!</p>
<!-- HTML code for the boucning page loader animation.-->
<div class="loader">
<span></span>
<span></span>
<span></span>
</div>
/* Basic CSS styles. */
body {
background: #FAC100;
}
p {
font-family:"Operator Mono";
font-size: 2rem;
color: #352C00;
text-align: center;
@MaedahBatool
MaedahBatool / .bash_aliases
Last active June 26, 2020 16:47
Bash Aliases
# Reload the shell (i.e. invoke as a login shell)
alias reload="exec $SHELL -l"
alias relaod="reload" #typo addressed
alias reld="reload"
alias rld="reload"
# Create a Symlink and dump its alias to paths.
lns () {
THE_PWD=$PWD
cd ~