Skip to main content

Show HN: We’re building a gaming console for the browser https://ift.tt/X1yZRs9

Show HN: We’re building a gaming console for the browser hey all, We’re excited to share bash.gg - a way to play all games on your browser. Our mission is to enable you to play games, from any device, with your friends. We're planning on using a combination of WebGL (soon WebGPU) & pixel streaming to run any game. Our product is going viral within a few school districts, here’s what we’ve built. The Problem: Poor Experiences: Mobile gaming is limited by hardware. Most mobile games are spammy & focused on optimizing value extraction. Existing web games are junk. Expensive: For good games, you need a console or PC, costing $600 - $3k. Not Scalable: Consoles are sold at a loss & desktop computers are too expensive. Necessary hardware is increasing in size and cost. On the other hand, games continue to get more computationally expensive. bash.gg: Great Experiences: We’re bringing the best games from PC and console to your browser so you can play from any device instantly. Affordable: You don’t need expensive hardware, just a stable internet connection. Scalable: As games demand more resources, they’re run in the cloud. The games that don’t need all that power can run in a browser. TLDR: Consoles make it difficult to play with all of your friends. If your friend has Xbox, and you have Playstation - you might not be able to play together. Having games on the browser lets anyone play, by just clicking a link. Not only that, but you can chat and play, all in one place. In progress features: pixel streaming (quic + webcodecs), community features, live audio/text chat (should release within in 2 weeks) Excited to hear what you all think! https://bash.gg January 11, 2023 at 11:25PM

Comments

Popular posts from this blog

Show HN: TypeScript query builder with full type inference https://ift.tt/xZp9HOm

Show HN: TypeScript query builder with full type inference Hey HN! Colin here - a TypeScripter, open sourcer, and engineer at EdgeDB. As the creator of Zod and tRPC, I'm interested in designing tools/APIs that use type inference and generics to make life easier for devs. This query builder represents another step in that direction. We set out to build an EdgeQL query builder that can express queries of arbitrary complexity (EdgeQL has feature parity with SQL, roughly) and infer the static type of the query result. We introspect the database and generate a schema-aware client that represent any query, including ones that use built-in functions, operators, string/array/tuple indexing, aggregations, conditionals, type casting, subqueries, computed properties, etc—things most ORMs can’t represent. This post mostly discusses the API design, which I think will be interesting regardless of familiarity with EdgeQL. I’d love to see some of these ideas bleed into future generations of TypeSc...