Skip to content

Instantly share code, notes, and snippets.

View Saichethan's full-sized avatar
:octocat:
Open Source Fridays

Saichethan M. Reddy Saichethan

:octocat:
Open Source Fridays
View GitHub Profile
@Saichethan
Saichethan / Social Profile
Created October 30, 2018 11:28
Social Profile
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "your name",
"url": "http://www.your-site.com",
"sameAs": [
"http://www.facebook.com/your-profile",
"http://instagram.com/yourProfile",
"http://www.linkedin.com/in/yourprofile",
@Saichethan
Saichethan / Logo
Created October 30, 2018 11:26
Logo
@Saichethan
Saichethan / Metadata.py
Last active October 30, 2018 11:23
Python Script to get Meta Data
from bs4 import BeautifulSoup
import requests
def main():
#r = requests.get('any url')
#r = requests.get('https://Saichethan.github.io')
u = input("Enter URL :\n")
@Saichethan
Saichethan / Carousels
Created October 30, 2018 06:55
Carousels
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Recipe",
"name": "Party Coffee Cake",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
@Saichethan
Saichethan / Corporate Contact
Created October 30, 2018 06:54
Corporate Contact
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.your-company-site.com",
"logo": "http://www.example.com/logo.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+1-401-555-1212",
"contactType": "customer service"
@Saichethan
Saichethan / Breadcrumb
Created October 30, 2018 06:44
Bread crumb
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Books",
"item": "https://example.com/books"
},{