Skip to content

Instantly share code, notes, and snippets.

View Developerayo's full-sized avatar
🐾
probably nothing

Shodipo Ayomide Developerayo

🐾
probably nothing
View GitHub Profile
@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">
@tuzz
tuzz / github.css
Last active June 5, 2024 02:29
Github Markdown Stylesheet
/*
Copyright (c) 2017 Chris Patuzzo
https://twitter.com/chrispatuzzo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@SaraSoueidan
SaraSoueidan / index.html
Created February 4, 2013 13:13
A CodePen by Sara Soueidan. CSS3 Testimonials Slider - Metro-style testimonials slider
<h1> CSS3 Testimonials Slider</h1>
<div class="container">
<input type="radio" name="nav" id="first" checked/>
<input type="radio" name="nav" id="second" />
<input type="radio" name="nav" id="third" />
<label for="first" class="first"></label>
<label for="second" class="second"></label>
<label for="third" class="third"></label>
@msteckyefantis
msteckyefantis / meta_template.html
Created July 6, 2018 12:39
the one used for lessonshop, test your url at https://developers.facebook.com/tools/debug/
<title>LessonShop.net</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta property="og:url" content="https://lessonshop.net" />
<meta property="og:title" content="LessonShop.net" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Lessonshop is a lesson bookings marketplace that allows you to effortlessly take or teach lessons." />
<meta property="og:image" content="https://s3.amazonaws.com/lessonshop.net/other/the_logo_300_new.jpg" />
<meta property="fb:app_id" content="1515460021880400" />
<meta name="description" content="Lessonshop is a lesson bookings marketplace that allows you to effortlessly take or teach lessons." />
import React from 'react';
import { Mutation } from 'react-apollo';
import { adopt } from 'react-adopt';
import { gql } from 'apollo-boost';
const INCREASE_COUNT = gql`
mutation increaseCount {
increaseCount {
id
currentCount
"dependencies": {
"gatsby": "^2.0.76",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-feed": "^2.0.8",
"gatsby-plugin-google-analytics": "^2.0.5",
"gatsby-plugin-i18n": "^0.4.2",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.16",
@Developerayo
Developerayo / switch-case.c
Last active April 10, 2019 09:07
Switch case example in C++
#include <iostream>
using namespace std;
int main () {
// local variable declaration:
char grade = 'D';
switch(grade) {
case 'A' :
cout << "Excellent!" << endl;
import React from 'react';
import { Mutation } from 'react-apollo';
import { adopt } from 'react-adopt';
import { gql } from 'apollo-boost';
const INCREASE_COUNT = gql`
mutation increaseCount {
increaseCount {
id
currentCount
import {InMemoryCache} from 'apollo-cache-inmemory';
import {ApolloLink} from 'apollo-client-preset';
import {ApolloClient} from 'apollo-client';
import {withClientState} from 'apollo-link-state';
import gql from 'graphql-tag';
import {graphql} from 'react-apollo';
import compose from 'recompose/compose';
/*
Defaults
@Developerayo
Developerayo / style.css
Last active November 30, 2020 17:45
design A-C md
/* Empty for now */
body {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
color:#24292e;
line-height:1.5;
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
font-size:16px;
line-height:1.5;