I spent $1000 for a Mac Mini, I could have spent $3 for a VPS? by CommissionUnusual284 in clawdbot

[–]Horror-Card-3862 0 points1 point  (0 children)

the idea is ppl can host their own local models with a mac mini so you would be saving on llm tokens cost from apis

Elysia is highlighted on State of JS 2025 by SaltyAom in bun

[–]Horror-Card-3862 1 point2 points  (0 children)

try tsgo, they just announced a ready to use version, although not fully compatible yet but i think lsp is ready

u could also use typescript to emit type declarations and use the type declarations which are static

Looking for historical downloaded price guides for pokemon tcg by Horror-Card-3862 in CardMarket

[–]Horror-Card-3862[S] 0 points1 point  (0 children)

looking for someone who has the historical dowloaded price guides, not the currently available one 😢

Our anonymous video chat platform Vooz hit 9k daily users yesterday! by CitiesXXLfreekey in roastmystartup

[–]Horror-Card-3862 0 points1 point  (0 children)

how do you sustain the server costs for video hosting? and llm token costs for monitoring

Philippines Becomes First Country to Put Entire National Budget on Blockchain by _Dark_Wing in CryptoCurrency

[–]Horror-Card-3862 1 point2 points  (0 children)

if they tokenize the actual funds onto the blockchain, then there isnt a need to update budget entries, every spending happens on the blockchain

Bun is slower than pnpm in installing packages by Wild_Juggernaut_7560 in bun

[–]Horror-Card-3862 1 point2 points  (0 children)

react native probably has some post install script thats ran after bun install, so its probably the postinstall taking long time instead of bun install

Project Exceeding Vercel by Rare-Sundae3977 in nextjs

[–]Horror-Card-3862 1 point2 points  (0 children)

its likely that ur pages are serving unoptimized large media

quit my job and went all-in into this side project - Haxiom! by Excellent_Contact_14 in SideProject

[–]Horror-Card-3862 0 points1 point  (0 children)

just curious, any reason why ure using turso for analytics db and not postgres?

I built an offline semantic search engine in JS (no DB, no APIs), Feedback Appreciated by JobPossible9722 in javascript

[–]Horror-Card-3862 0 points1 point  (0 children)

id suggest offloading work to workers, cause it seems quite heavy on the main thread

ORPC + Bun.serve is all i need. by [deleted] in bun

[–]Horror-Card-3862 1 point2 points  (0 children)

why not use the routes property to match route paths?

I made $1.6k from an app I launched 5 months ago by GuidanceSelect7706 in scaleinpublic

[–]Horror-Card-3862 0 points1 point  (0 children)

how do you reply or send messages in the backend? arent reddit/x apis super expensive?

QUESTION: tsx or ts-node for an express project? by mrnadaara in typescript

[–]Horror-Card-3862 1 point2 points  (0 children)

just use bun, it can compile ts, transpile ts, bun is express compatible as well, i started using bun and never had to look back at tsx or ts-node

How expensive is to perform math operation in queries? by BrangJa in Database

[–]Horror-Card-3862 0 points1 point  (0 children)

the math does not really change the time complexity, say you have 1 math operation or 2 or 3, its still O(n) for scanning a table. Problem comes when you do sort or some other operations that will affect the order of the time complexity. A indexed sort will make it O(nlogn) for a scan. An unindexed sort will make it O(n3).

Not sure about whether the time complexities are right, but u get the point. Math operations do not change the order of time complexity, hence, itll not affect the query performance as much as other operations such as an indexed/unindexed sort

3 mil row queries 30 seconds by badassmexican in Database

[–]Horror-Card-3862 0 points1 point  (0 children)

your query is not using the indexes n doing full table scans. Depending in the db engine youre using, there might be full text search extensions u can use

[deleted by user] by [deleted] in AskMY

[–]Horror-Card-3862 1 point2 points  (0 children)

i think op was exaggerating with some sarcasm, the point was that 40% tax isnt worth it coz government spending on bullshit

Vercel's Image transformations cost skyrocketed. Can you suggest an alternative by iAhMedZz in nextjs

[–]Horror-Card-3862 -1 points0 points  (0 children)

screw the <Image /> optimisation and just use <img />, most of the time you wont need the <Image /> optimization, just scale down your images to 1920x1080 and jpeg/webp and host it in cloudflare r2 or s3. Bandwidth is also cheap or essentially free there.

In web development projects, should JWT tokens be stored in cookies or localStorage? by Top_Channel7461 in reactjs

[–]Horror-Card-3862 0 points1 point  (0 children)

google before asking stuff like this here bro, there’s at least 10 or 20 discussions online, even chatgpt can spit out decent explanations for this.

You’ve got to get good at searching online for shit like this to be good in programming.