Skip to content

Instantly share code, notes, and snippets.

@startuml
actor frizzle
actor sakura
actor xiaoruan
actor yukito
actor toya
actor rika
actor teacher
database cake
#!/usr/bin/env ruby
versions = (3..7).map{ |minor| "2.#{minor}" }
versions.each do |version|
cmd = <<~HERE
$stdout.write "defined?(DidYouMean) == "
$stdout.write defined?(DidYouMean).inspect
$stdout.write "\\n"
$stdout.write "defined?(DidYouMean::Levenshtein) == "
@austinpray
austinpray / out.txt
Created July 9, 2020 22:46
parse props from structured loggin
{"query"=>"can contain spaces", "span"=>"1h"}
{"query"=>"can contain spaces", "span"=>"1h"}
{"query"=>"can contain spaces", "span"=>"1h"}
{"query"=>"can contain spaces", "span"=>"1h"}
{"query"=>"can contain spaces"}
{"query"=>"can contain spaces"}
{"query"=>"can contain spaces"}
{"span"=>"1h"}
{"span"=>"1h"}
{"span"=>"1h"}
Balanced B (B-tier stupid and horny)
VS
Balanced C (C-tier stupid and horny)
#### Balanced B (B-tier stupid and horny)
Nature | Value | Stat | Value
------ | --- | ---- | ---
**stupid** | 4 | **HP** | 60
This file has been truncated, but you can view the full file.
Balanced F (F-tier stupid and horny)
VS
Balanced S (S-tier stupid and horny)
#### Balanced F (F-tier stupid and horny)
Nature | Value | Stat | Value
------ | --- | ---- | ---
**stupid** | 2 | **HP** | 37
{
"repositories": [
{
"type": "package",
"package": {
"name": "zzzzz/no-trailing-comma",
"description": "Placeholder package for clean diffs in composer.json.",
"version": "1.0.0",
"type": "metapackage",
"license": "MIT",
@austinpray
austinpray / the-events-calendar-automatic-ticket-categories.php
Created June 20, 2019 15:03 — forked from MWDelaney/the-events-calendar-automatic-ticket-categories.php
Automatically apply "tribe_events_cat" taxonomy terms to WooCommerce tickets when tickets are saved or updated.
<?php
// Apply product categories to newly created or saved tickets that match the The Events Calendar categories of the associated event
add_action('event_tickets_after_save_ticket', function ($event_id, $ticket, $raw_data, $classname) {
if (empty($ticket) || !isset($ticket->ID)) {
return;
}
// Apply the "event-tickets" category to add tickets so that all tickets have at least this category to start
wp_add_object_terms($ticket->ID, 'event-tickets', 'product_cat');
#!/usr/bin/env bash
for i in 7.1 7.2 7.3;
do
docker run -v $(pwd):/app -w /app php:$i php test-cast.php
docker run -v $(pwd):/app -w /app php:$i php test-no-cast.php
done
@austinpray
austinpray / bad.jsx
Last active September 19, 2018 19:43
PostListing Refactor. I'm using .jsx filenames so I can get proper filenames in the gist use .js or typescript in your project
import React from 'react'
const PostListing = ({post}) => (
<article>
<h3>{post.frontmatter.title}</h3>
<span>{post.frontmatter.date}</span>
<p>{post.excerpt}</p>
</article>
)
@austinpray
austinpray / README.md
Last active September 8, 2018 17:06
react-icons reduced testcase: uglifyjs compatiblity