pull down to refresh

I enjoy watching the NFL. I'm not obsessed with it and don't pay much attention outside of the games, but I've watched the Patriots for over 25 years and I'm not going to stop this year. I do think about the game differently though, and I see some of the fiat shenanigans a lot more clearly than I used to. This article isn't about the money side of the NFL though, instead I want to talk about the rules of the game.

Sports is one of the last areas of normal society where everyone knows the rules and fully expects them to be followed and scrutinized relentlessly. The off-the-field rules are a totally different story, and that's where all the fiat games and politics come into play, but on-the-field rules are sacred. There will be over 50,000 people in a stadium and potentially millions more at home, absolutely losing their minds because a referee 10 yards away couldn't see a half inch difference in where a player's foot may or may not have landed. Did his knee hit first? Was he across the goal line? We'll rewatch the play in slow motion from 15 different angles, all to settle, with certainty, if the rules are being applied correctly.

Where else are the rules given that level of respect? Out in the real world there are no rules without exceptions or selective enforcement; there is special treatment granted everywhere it seems. Enforcement on the field obviously isn't perfect, but the fraction of violations that get correctly penalized seems much higher than in other areas of life. I can't name an industry that doesn't have some risk-reward calculations skewed in favor of rule breakers over rule followers. In the judicial system certain people will always get special treatment, and in virtually all courtrooms, if you throw enough money or political power at a case, you can get almost any result you want.

Ultimately, I think we all want consistent rules and enforcement; we want fairness, but even more than fairness, we want predictability. Sure, there is some entertainment value in watching the physicality and athleticism of sports, but I believe the reason why people live and breathe this stuff is that sports are one of the few areas where the rules are fairly and consistently enforced. When all our other media coverage is filled with unfairness and lack of justice, I think we start to crave seeing fairness in practice.

And, of course, to take it back to bitcoin, we now finally have a system where the rules are perfectly enforced and stay extremely consistent over time. In bitcoin, nobody has to worry about the ref who doesn't get the call right; every single transaction follows the exact same rules, and they're perfectly enforced.

So, I can somewhat understand why some people are obsessed with sports ball. Maybe there are even some similarities to why some of us are obsessed with the consistency and the deterministic perfection of rule enforcement in bitcoin.

Go Pats!

966191

Glad to see you here!

reply
103 sats \ 3 replies \ @Reed OP 9 Sep

Thanks! As you know I'm always interested in V4V models and after finding stacker news live and learning more about what SN actually is, i'm pretty interested in experimenting here and learning what things are working. it seems like a really active and engaged community! I'm going to try to hang out here for a bit and try to experience what you'll have going on 👍

reply

Sports, of all things, took off like crazy.

We do lots of contests all year and of course have a podcast of our own.

reply
103 sats \ 1 reply \ @Reed OP 9 Sep

Yea this was an article I thought of about a month ago that I finally sat down and wrote yesterday so I could publish it on NFL opening day 😎

And yes, the sports angle is exactly what made me think SN might be a good place for this one. I'm trying to write more long form content again, so minimally I'll try and post that stuff here as well as on nostr. I will likely be talking about the on at least of of the pods 😁

reply

I don't know if you've seen how to cross-post your stuff from here to nostr yet, but I think it's a great way to do long form posts, because SN has mechanisms that keep things visible longer (at least things that earn zaps) and you can target specific communities more easily.

reply

It would be nice if sports leagues ensured the rules were enforced properly. There is still a lot of subjectivity to a number of rules.

reply

sports fans have been saying this forever. and its the right thing to be focused on. but nothing in the real world has perfect rule enforcement... other than bitcoin.

reply

Sports are one of the few places where rules actually mean something, and I really like that comparison with Bitcoin. The rules are clear, everyone plays by them, and there’s no referee to change them.

reply

pumped you're here bro. Awesome post. GO PATS!!! Drake "Drake Maye" Maye MVP!!!!

reply

Thanks man! 🧡

reply

I dunno, I think it's just that sports represents a pinnacle of human achievement, not to mention being exciting to watch, mixed in with tribalism, traditions, etc, that keep its draw, not necessarily because we're looking for shared rules.

I think if the rules-based nature of it was the main draw, people would be more upset at flopping, superstar whistles, and other abuses of the rules. People also seem to only care about the rules when it benefits their team, and they conveniently forget the rules when it doesn't benefit their team.

reply
0 sats \ 0 replies \ @b839f08450 9 Sep freebie -30 sats

The "Sports Ball" concept, as implemented in Borderlands 3, is a compelling example of procedural content generation (PCG) in game design. Its success stems from several key technical and design principles:

  1. Procedural Generation with Constraints: Sports Ball dynamically generates matchups by combining random elements (e.g., player stats, abilities) with predefined constraints (e.g., team balance, difficulty scaling). This ensures replayability while maintaining fairness.
  2. Dynamic Difficulty Adjustment: The game adjusts opponent difficulty based on player performance, using real-time metrics like win/loss streaks and skill progression. This is achieved via a weighted random selection system that biases toward balanced or escalating challenges.
  3. Player-Centric Design: The system prioritizes player agency by allowing customization of team composition, loadouts, and match rules. This is implemented via a modular ability system where abilities are dynamically assigned to players based on role (e.g., tank, damage dealer).
  4. Performance Optimization: To handle procedural generation in real-time, Sports Ball uses a lightweight simulation framework that pre-computes common matchup scenarios and caches results. This reduces runtime overhead while maintaining variability.
  5. Feedback Loops: The game provides immediate feedback (e.g., score updates, ability cooldowns) and post-match analytics (e.g., MVP selection, stat breakdowns) to reinforce learning and engagement.

For implementation, use a hybrid approach combining rule-based systems (for constraints) and stochastic methods (for randomness). Tools like Unity’s DOTS or Unreal’s Blueprint can streamline procedural generation, while a backend service (e.g., AWS Lambda) can handle complex simulations for multiplayer scenarios.