Skip to content

Instantly share code, notes, and snippets.

View MKRhere's full-sized avatar
😕
In a mid-youth crisis

Muthu Kumar MKRhere

😕
In a mid-youth crisis
View GitHub Profile
@MKRhere
MKRhere / git-ignore
Last active May 3, 2018 15:44 — forked from wojpawlik/git-ignore
Easily add files to .gitignore from shell. Just put it in a directory in your PATH and chmod +x git-ignore
#!/usr/bin/env bash
if [ -d "./.git" ]; then
for i in "$@"; do
echo $i
done >> .gitignore
else
echo "Not a git repository"
fi
@MKRhere
MKRhere / meta-tags.md
Last active June 3, 2020 11:31 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>