Skip to content

Instantly share code, notes, and snippets.

View pixelstorm's full-sized avatar

pixelstorm pixelstorm

View GitHub Profile
@pixelstorm
pixelstorm / docker-compose.yml
Created August 14, 2019 04:16
docker compose with wpcli for wordpress
version: "2"
services:
my-wpdb:
image: mariadb
ports:
- "8081:3306"
environment:
MYSQL_ROOT_PASSWORD: ChangeMeIfYouWant
my-wp:
image: wordpress
@pixelstorm
pixelstorm / docker_wordpress.md
Created August 13, 2019 11:08 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
// # PugJs Cheat Sheet
// ## Syntax
doctype html
html
head
meta(name="Pugcupid", content="Wiggle with love")
body
main#page
@pixelstorm
pixelstorm / javascript_cheatsheet.txt
Last active July 24, 2019 04:17
javascript_cheatsheet
//operators
B O SM AS
operator precedent in javascript
Brackets pOwers (Division Multiple) (Addition Subtraction)
modulas operators give you the remainder (whatever is left) of any division
first it divides what it can
ie: 5 goes into 9 once with 4 left over
9 % 5 = 4
@pixelstorm
pixelstorm / get woocommerce product attributes by product id
Created July 21, 2019 06:47
get woocommerce product attributes by product id
// Get Product ID
$product->get_id();
// Get Product General Info
$product->get_type();
$product->get_name();
$product->get_slug();
@pixelstorm
pixelstorm / color_psychology.txt
Last active May 22, 2023 08:55
color psychology
Orange
In color psychology, orange represents creativity, adventure, enthusiasm, success, and balance.
The color orange adds a bit of fun to any picture, website, or marketing material it’s on.
Despite it’s attracting color, it’s not as commanding as the color red.
Many marketers still use the color for call to actions or areas of a website that they want to draw the eye too.
Red
Marketing colors like red can capture attention.
The red color meaning is associated with excitement, passion, danger, energy, and action.
You might’ve noticed that some brands use red for ‘order now’ buttons or for their packaging as a way to stand out on the shelf.
@pixelstorm
pixelstorm / cron_cheatsheet
Created July 10, 2019 23:54
cron_cheatsheet
* minute
* hour
* day of month
* month
* day of week
@pixelstorm
pixelstorm / webinar_cheatsheet.txt
Last active June 29, 2019 02:10
webinar_cheatsheet
create process for webinar
create sign up page with
optional countdown
when it is
who its hosted by
what they can expect to learn
- connect with email marketing software
- need to send signups a "confirmation" email right away
- must map people to the course they signed up for - this way we can email all people at once.
@pixelstorm
pixelstorm / composer_install.txt
Created June 28, 2019 10:19
installing composer
this composer part of the installer is not easy to follow https://laravel.com/docs/5.8/valet
so this one is better
https://www.hostinger.com/tutorials/how-to-install-composer
@pixelstorm
pixelstorm / schema_cheatsheet
Last active June 9, 2023 13:31
schema_cheatsheet
https://developer.yoast.com/schema-documentation/integration-guidelines/
implementeing custom json ld schema into a yoast install.
Yoast outputs some basic markup for json ld. most of the time this is ok but if you need more.
then you need to output custom "content type" peices and stich it to the main graph.
add_filter( 'wpseo_schema_graph_pieces', 'yoast_add_graph_pieces', 11, 2 );
//sample adding the person content type