Skip to content

Instantly share code, notes, and snippets.

I currently have tickets to match 59, USA vs Türkiye, of the world cup in Los Angeles on June 25th. My seats are Section 539, Row 14, Seats 13,14,15, & 16.

I plan on selling them but I need to determine a price to list them. I will most likely be listing them via FIFA's resale site but am open to alternatives. The resale page for that specific match requires being logged in, but is available here: https://fwc26-resale-usd.tickets.fifa.com/secure/selection/event/seat/performance/10229226700947/contact-advantages/10229997366894/lang/en

I would like you to help me determine how much I should be listing my tickets for in order to maximize their value my while still making sure they will sell. Given that the official FIFA resale site is behind a login, let me know if you would like me if there is any info I can provide from any of those pages (copy of the HTML perhaps?) or implement some sort of programmatic solution to extract the info.

@BriceShatzer
BriceShatzer / seat locations.md
Last active April 2, 2026 22:45
seat locations

USA vs Australia - Seattle - Match 32 - June 19th

Section 344 - Row D - Seats 8,9,10,11
Views: Row E, Row C Seat 11

Seat Map Screenshot 2026-04-02 at 5 41 40 PM
  • Dearly Beloved - never been here but it looks neat

  • Arbella - cocktail bar I really like, kind of a smaller menu

  • Oak & Honey - never been, but looks cozy

  • These are both right next to each other on Broadway and were really good when I used to live near by. Unfortunately, they don't take reservations so we might have wait a bit for a table.

  • DryHop

@BriceShatzer
BriceShatzer / shortcode-cleanup-notes.md
Last active October 16, 2025 18:52
Shortcode Cleanup nots

Plugins

  • Shortcodes Finder
    • general "shortcode utility"
    • positive reviews from ~4000 installs
    • last updated 4 months ago
    • mentioned in article
Title of thing This is a bunch of text that gets collapsed.
  • you can do bullet points
  • also
and any other markdown stuff 
--- /Users/xbxs250/Projects/template-me-nextjs/skeleton/package-lock.json
+++ /Users/xbxs250/Projects/zzz-lock-test/package-lock.json
@@ -1,17 +1,17 @@
{
- "name": "template-me-nextjs",
+ "name": "zzz-lock-test",
"version": "0.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
@BriceShatzer
BriceShatzer / Search my gists.md
Created January 21, 2022 18:41 — forked from santisbon/Search my gists.md
How to search gists

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html

Hey, I'm Brice. I'm 33 and live & work in Chicago as a software engineer. I'm originally from a small town in Iowa, went to college in Wisconsin, and eventually ended up making my way into the city.

In my spare time you can find me wandering around the river/lakefront aimlessly listening to podcasts, reading stuff, trying to stay active (soccer, flag football, & table tennis in the before times 😷 ), or sifting through the generally absurd amount of browser tabs I always have open.

Here's some recent photos of me at younger brother's wedding a couple of months ago:

// - Write an example of a test case to make sure it works
// You have a set of expensive javascript asynchronous tasks to run, e.g. you need to make 10,000 ajax requests.
// You need a function that takes a set of tasks, and a concurrency limit (e.g. "5 tasks at a time") and runs the tasks until all are complete
// - Design the interface for this function, accounting for ease of use, reusability, error handling, and testing
// - Implement out the function
// - Write an example of a test case to make sure it works
// - What would you do to make it production ready if you had a week to work on it?