Skip to content

Instantly share code, notes, and snippets.

View jashezan's full-sized avatar
🏠
Working from home

Jubyer Ahmed Shezan jashezan

🏠
Working from home
View GitHub Profile
@bmaupin
bmaupin / free-database-hosting.md
Last active September 6, 2025 17:58
Free database hosting
@bmaupin
bmaupin / free-backend-hosting.md
Last active September 5, 2025 14:20
Free backend hosting
@whitingx
whitingx / meta-tags.md
Created October 5, 2012 16:41 — forked from kevinSuttle/meta-tags.md
Complete List of HTML Meta 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'>
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

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

Basic HTML Meta Tags

<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">
<meta name="language" content="ES">
@anderser
anderser / gettag.py
Created January 26, 2012 12:01
Simple python method to retrieve title tag of external page/url - or other tags..
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import requests
def get_page_tag(url, title_re=re.compile(r'<title>(.*?)</title>', re.UNICODE )):
"""
Retrieves the title tag from a given url (or actually any tag if you want..)