Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

📈 Ranked Mode is Here! Jump into skill-based matchmaking in Gorilla Tag: Daytime Forest Map, No Decorations. 4+ players. timed rounds. 1 consistent map. Start in Wood and climb through Rock, Bronze, Silver, Gold, and Beyond! - Its all in Your hands. Let the grind begin. 🏆 #gorillatag #gtag #vrgame

11,395 Aufrufe • vor 1 Jahr •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche Videos

Star Fox Battle Mode is already getting called out for only having three maps. The people saying that are the same ones who burn out on every other multiplayer mode once the new map rotation drops. Three maps works here because the matches stay short, the objectives are actually worth fighting over, and there is enough crazy stuff happening that you are constantly battling the level itself as much as the other Arwings. Power-ups appear in risky positions. Environmental pressure changes during the round. One mistimed boost or bad angle through a corridor and the map punishes you before the enemy needs to finish the job. That constant back-and-forth between pilot skill and level hostility is what stops the same three maps from feeling repetitive after dozens of rounds. The Arwing handling underneath all of it is smooth and tight. Boost timing and lock-on precision actually matter instead of just holding forward and hoping. Small adjustments in speed and angle separate the players who are starting to read patterns from the ones still flying in straight lines. It looks sharp in motion too. The HDR makes explosions, laser fire, and environmental effects stay readable even when everything is happening at once. The sound design helps just as much in the chaos. Clear engine roar, distinct lock-on warnings, and impact feedback that cuts through the orchestral score so you can react to what is actually dangerous. The accolades system adds another layer without turning into a grind. It rewards the behaviours that make the mode interesting: smart objective play, power-up denial, aggressive but calculated lines through the map. There are enough unlocks tied to performance that you get steady progression and reasons to keep dropping in. This is the part most people pushing for more maps will not want to admit. In 2026 a lot of competitive modes assume they need constant new content and huge map pools just to hold attention. Star Fox Battle Mode is testing the opposite idea. A small set of dense, hostile playgrounds with short intense rounds and real skill expression can stay fresh longer than another bloated live service shooter that nobody ever truly masters. The map is an opponent here. That single design choice changes how much replayability three maps can actually deliver. What are your thoughts on Star Fox's online Battle Mode? After a proper session, do the three maps start feeling limiting or does the combination of short rounds, real objectives, and the environment constantly pushing back keep every match feeling different? p.s. Follow for more Star Fox and Nintendo takes! And if you’re jumping into Battle Mode tonight, add me: SW-4504-4427-4511

AussieGamer

23,360 Aufrufe • vor 18 Tagen

Picture this: It’s 1971. A gallon of gas costs 36 cents, the average home runs about $25,000, and an ounce of gold is fixed at $35. Then President Richard Nixon closes the gold window, ending the dollar’s direct link to gold. From that moment, the U.S. monetary system shifts entirely to system of trust in the Federal Reserve. Fast-forward to today. That same home now costs well over $400,000. Gas prices have surged to around $4 a gallon. And inflation, once averaging around 2% a year, is now hitting Americans at what feels like 20% or more over just a few years, especially when they’re standing in the grocery store aisle. Most people don’t realize how deeply they’re trapped in a system built on debt. They earn, spend, and save in a currency that steadily loses purchasing power over time. But starting July 1, 2026, Florida is giving its residents a practical alternative. Governor Ron DeSantis signed House Bill 999 in May 2025, formally recognizing qualifying gold and silver coins as legal tender for the payment of debts. The final rules were ratified this year through HB 1311, locking in the launch date. The rules are clear and voluntary. No one—individual, business, or government agency—is required to accept or use them. The U.S. dollar remains the everyday currency. What makes this different is the combination of options it creates. Physical coins can change hands through private agreements. For practical use, especially larger payments like real estate or taxes, the law enables electronic transfers through licensed custodians. The legislation also removes Florida’s sales tax on qualifying gold and silver purchases and eliminates the previous $500 threshold, lowering the cost of entry and making gold and silver purchases far more straightforward. Effectively, Florida made gold and silver not just assets you buy and hold, but something you can actually use to make purchases in your daily life. Florida is not acting alone. Six other states already recognize gold and silver as legal tender in some form: Arizona, Utah, Wyoming, Oklahoma, Louisiana, and Idaho. Texas has enacted similar phased legislation that begins taking effect in September 2026. And as Americans lose faith in the dollar, that matters. Because Floridians now have a reliable second option in gold and silver, which have historically held value when paper currencies have not. To break down this evolving landscape, what it means for gold and silver, and how Americans can begin using them in their daily lives, Bill Armour from Genesis Gold joins us now. 🧵

The Vigilant Fox 🦊

123,492 Aufrufe • vor 2 Monaten

Here's a copy/paste prompt recipe and vid showing exactly how to ask an LLM for an interactive map with satellite/map layers + a georeferencer that lets you see how old maps correspond with modern geography. Today the computer can’t make good print maps (that's your hill to climb ) but it can, with five bucks and twenty minutes, make good interactive maps. No software/GIS knowledge necessary, you just need a few nouns and an LLM. Scroll to the bottom for the repo/live map if you want those. I'm using Claude Code as an extension in VS Code but you can use the Claude CLI, Cursor, whatever. 1) Let's grab an old cadastral map and see who owned big tracts of a city; I found this an 1854 map of Niagara Falls, NY I found in the Library of Congress: , grabbed the .jp2, saved as a jpg from photoshop. 2) Let's ask Claude Code for a map. You can see exactly what I did in the video but my prompt, sans simple "hey it's busted" debugging, is written out in the following paragraphs. I explain the map-specific nouns in brackets. You can likely dump this whole thing in your LLM window and it'll work; I'd try plan mode + skip permissions. THE PROMPT Make an interactive map with MapLibre GL JS [maplibre is a javascript mapping library, a FOSS version of Mapbox GL JS. This lets us display tiled map data and arbitrary images on the map] Add basemap toggles with Esri satellite, Carto Positron, and OSM [these map layers require no API keys for light usage; Carto Positron is a nice road map layer and OSM is ugly but comprehensive] Add a globe/mercator projection toggle [I think the globe looks better at low zooms] Add a layer panel on the left with visibility checkboxes and delete buttons. Add a search box on the map that flies to results, with deletable pin markers [Makes this easy to get to your area of interest] Include an interactive local georeferencer: drop a JPG, pick ground control points on a zoomable/pannable image viewer, place them on the map, watch it warp with a progress bar centered on the map. [The georeferencer uses math ("affine transform"??) to match points on the old map to points on the new map; generally you click road intersections on the old map, match them on the new map, repeat a dozen times and everything aligns] The georeferenced map overlay defaults to 25% opacity with a slider above the control point list. [I want it easy to see the underlying modern geography] Add Export/import control point buttons [this saves the control points as a JSON so you can save and reimport your work] Add a button to export the warped image as a GeoTIFF with a .prj [In case you want to add the georeferenced image to a real GIS program like QGIS] Look up all relevant docs before starting [Claude sometimes uses outdated stuff] Split everything into separate HTML/CSS/JS files [Claude tends to pile everything in index.html, which is hard to read] Use Optima font, base color #FEFAF6 [I just like this style] Let me test with a local server [it serves it on a simple server so you can nav your host to localhost:8000 and try it out] Log all errors [so you don't have to play telephone with the LLM describing what's busted] 3) Once your LLM finishes, test it out in your browser; if it doesn't work, ask the LLM to check logs. Repeat 'til functional. 4) After this works on your computer, you can show it to everyone by hosting it on GitHub: prompt with "write a README explaining what everything does, add it to a new GitHub repo, deploy using GitHub pages, gimme the live URL" Here's what Claude made for me, try it yourself: • Upload the JPG in the repo, which is linked below • "Add GCP" • Click somewhere recognizable on the old map, like the tip of an island or a road intersection • Click the matching point on the new map • Repeat til you have least 3x points • Hit "georeference" • You'll see the old map atop the new map; if you want a better fit, delete bad points or add a dozen new ones, hit georeference again, repeat Repo: Is this map robust? Human-maintainable? Elegant? Performant? Secure? No, but *your* personal web map need not be. It just needs to work for *your* narrow use case, because it’s *your* map.

Evan Applegate

15,772 Aufrufe • vor 3 Monaten