Skip to content

Instantly share code, notes, and snippets.

@brandoncc
brandoncc / woocommerce_sales_by_year_and_state.php
Created September 19, 2023 14:25
Generate a page of tables containing sales totals for all US sales in WooCommerce, grouped by year then state
<?php
function format_as_currency( $amount ) {
return '$' . number_format( $amount, 2 );
}
function get_sales_by_year( $orders ) {
$sales_by_year = array();
foreach ( $orders as $order_id ) {
const rules = require('./webpack.rules');
const plugins = require('./webpack.plugins');
rules.push({
test: /\.css$/,
use: ['style-loader', 'css-loader', 'postcss-loader'],
});
module.exports = {
module: {
@brandoncc
brandoncc / install_vips.sh
Created October 22, 2020 17:44
Install libvips on ubuntu
apt-get update && apt-get install -y \
build-essential \
autoconf \
automake \
libtool \
intltool \
gtk-doc-tools \
unzip \
wget \
git \
import React from "react";
import { LandingPad } from "./Portal";
export default function Article() {
return (
<div>
<LandingPad />
<h1>Here is a latin article</h1>
<p>
import React from "react";
import { Portal } from "./Portal";
export default function FlashMessage() {
return (
<Portal>
<div class="alert alert-primary" role="alert">
This is a special announcement, be sure and read it!
</div>
import React, { useRef, useEffect } from "react";
import ReactDOM from "react-dom";
export function LandingPad() {
return <div id="portal-root" />;
}
export function Portal (props) {
const elRef = useRef(document.createElement("div"));
const rootRef = useRef();
import React, { useRef, useEffect } from "react";
import ReactDOM from "react-dom";
export default function Portal (props) {
const elRef = useRef(document.createElement("div"));
const rootRef = useRef();
useEffect(() => {
rootRef.current = document && document.getElementById("portal-root");
rootRef.current && rootRef.current.appendChild(elRef.current);
import React from "react";
import Portal from "./Portal";
export default function FlashMessage() {
return (
<Portal>
<div class="alert alert-primary" role="alert">
This is a special announcement, be sure and read it!
</div>
import React from "react";
import ReactDOM from "react-dom";
import Article from "./Article";
import FlashMessage from "./FlashMessage";
import "./styles.css";
function App() {
return (
import React from 'react';
export default function Article () {
return (
<div>
<div id="portal-root" />
<h1>Here is a latin article</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>