Skip to content

Instantly share code, notes, and snippets.

View moacode's full-sized avatar
Converting Coffee into Code...

Josh moacode

Converting Coffee into Code...
View GitHub Profile
@rjgux
rjgux / index.js
Created May 31, 2019 18:45
SEOmatic & CraftQL with react-helmet
/*eslint no-useless-escape: 0 */
import React from "react"
import Helmet from "react-helmet"
import ReactHtmlParser from "react-html-parser"
import { graphql } from "gatsby"
const SEO = props => {
const { data } = props
const splitJsonLdStringIntoArray = data.metaJsonLdContainer
.replace(/\<\/script\>/g, "")
@seanhandley
seanhandley / docker-compose.yml
Last active January 23, 2025 09:49
How To Set Up Docker For Mac (Mojave) with Native NFS
version: '2'
services:
api:
volumes:
- "nfsmount:${CONTAINER_DIR}"
volumes:
nfsmount:
driver: local
driver_opts:
@vxhviet
vxhviet / simplifiedGitFlow.md
Last active March 2, 2025 11:36
A simplified version of Git Flow

Simplified Git-flow

                        RELEASE TAG
o----------------------------o-----------------o------------o------> MASTER
 \                          /  \                \----------/ HOTFIX
  \                        /    \                          \
   \----------------------/      \--------------------o-----o------> DEVELOP
                                  \                  /
 \----------------/ FEATURE
@basham
basham / css-units-best-practices.md
Last active March 10, 2025 20:57
CSS Units Best Practices

CSS units

Recommendations of unit types per media type:

Media Recommended Occasional use Infrequent use Not recommended
Screen em, rem, % px ch, ex, vw, vh, vmin, vmax cm, mm, in, pt, pc
Print em, rem, % cm, mm, in, pt, pc ch, ex px, vw, vh, vmin, vmax

Relative units

Relative units

@CMCDragonkai
CMCDragonkai / DecoratorAbstract.php
Last active June 23, 2019 22:58
PHP: DecoratorAbstract - Allows the creation of flexible nested decorators.
<?php
/**
* DecoratorAbstract allows the creation of flexible nested decorators. All decorators must extend from DecoratorAbstract.
* Decorators can be stacked. They can also have methods that overwrite each other.
* Decorators can omit methods that parent decorators have defined and/or child decorators have defined.
* Methods will cascade to the original child object.
* Properties will read and set from the original child object except when your instance has the property defined.
*/
abstract class DecoratorAbstract{