Skip to content

Instantly share code, notes, and snippets.

View creed1120's full-sized avatar
🎯
Focusing

Cedric A Reed creed1120

🎯
Focusing
  • Site Spring Technologies
  • Chandler, AZ
View GitHub Profile
@creed1120
creed1120 / r-debug.php
Created September 12, 2024 20:17 — forked from sumitpore/r-debug.php
R Debug Plugin Created by Andrey "Rarst" Savchenko
<?php
/*
Plugin Name: R Debug
Description: Set of dump helpers for debug.
Author: Andrey "Rarst" Savchenko
Author URI: https://www.rarst.net/
License: MIT
*/
/** ORDER MATTERS **/
/** Use to target Mobile for Portait **/
@media (min-width:320px) {
}
/** Use to target Desktop and not override Mobile **/
@media (min-width:801px) {
@creed1120
creed1120 / docker_deploy.yml
Created August 10, 2021 15:38
Laravel Docker github acitons workflow .yml file
# This is a basic workflow to help you get started with Actions
name: CI/CD
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ staging ]
pull_request:
@creed1120
creed1120 / wp-query-ref.php
Created June 1, 2021 05:17 — forked from luetkemj/wp-query-ref.php
WP: Query $args
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.github.io
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php
*/
@creed1120
creed1120 / Load_CSV_file_to_DB.csv
Last active October 2, 2024 17:37 — forked from hofmannsven/README.md
MySQL CLI Cheatsheet
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 5.
sql
LOAD DATA INFILE '/Users/cedric.reed/mysqldoc/data.csv'
INTO TABLE employee
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES;