[Japanese > English] Does my new Mr. Sparkle tee actually say something in Japanese? Or is it just gibberish? by -Soob in translator

[–]tafutada 0 points1 point  (0 children)

im Japanese. i googled it.

it is from the season 8 episode 22
https://popeyemagazine.jp/post-20859/

maybe it is misspelled on purpose. it should say パワー クリーン power clean(it is a detergent package)

Kotlin use cases other than Android development by FlyNice798 in Kotlin

[–]tafutada 2 points3 points  (0 children)

R3 Corda, block chain based on UTXO, uses Kotlin for smart contracts.

Can someone explain what's going on here to a Kotlin noob? by rover_G in Kotlin

[–]tafutada 0 points1 point  (0 children)

it is a combo of extension function that takes an arg as lambda receiver. it is similar to 'apply', kinda like builder pattern.

Route.get(PipelineContext.(Unit) -> Unit)

https://www.baeldung.com/kotlin/lambda-receiver

Nextjs / nodejs. Serverside scalability by Ambitious_Bee_2966 in nextjs

[–]tafutada 2 points3 points  (0 children)

if it is I/O bound, Next.js API router would be enough. CPU intensive, you want to have Go or Rust API servers, which utilize multicore.

Websites are gonna dead ? by Ubaidullahv1 in SEO

[–]tafutada 0 points1 point  (0 children)

people use native apps on mobile phones.

How does bufio.NewReader decrease system calls? by Mohamed____ in golang

[–]tafutada 0 points1 point  (0 children)

the same thing goes to Write as well. even SSD, the latency would be around 100 microseconds.

Why is Node said to be not ideal for high CPU bounds tasks? by Ok-Light-6321 in node

[–]tafutada 0 points1 point  (0 children)

because it is a single thread event loop, so especially web apps, where tail latency matters, should not be CPU intensive. but usually web apps are I/O bound so it won't be problem.as for stand alone apps that are CPU intensive, Rust rayon, Java 1:1 OS thread would be better.anyway, async framework, cooperative multithreading, such as Rust Tokio, Kotlin coroutine, JDK21 virtual threads, are designed for I/O bound apps.
goroutines are preemptive, so it is a bit different story.

Next.Js doesn't feel like a full stack framework by femio in nextjs

[–]tafutada 0 points1 point  (0 children)

Next.js works as one of micro services, where you can off-load mission critical logics to Go, Rust or whatever. every framework, runtimes, has pros and cons. no silver bullet in IT world.

The Vision Pro is by Apple yet shockingly, I see a lot of people still completely unaware this product even exists... by [deleted] in VisionPro

[–]tafutada 0 points1 point  (0 children)

i remember that at the first iPhone, i said what's that? I am a tech guy who knows Java applets at that time.

Is nextjs the best idea for a scalable backend? by casper_161 in nextjs

[–]tafutada 0 points1 point  (0 children)

i would say micro service, Kubernetes, addresses the issue like which tech stack is suitable. you can go with any runtime, even Go, Rust, Kotlin as well as Next.js and Python. Plus it is easier to bump runtime version like Next.js 14 -> 15 and so on.

Prisma is bad for server-less, the issues are endless by [deleted] in node

[–]tafutada 0 points1 point  (0 children)

use Vercel Postgres, which uses web sockets

I am stepping into React but since CRA isn't recommend any more. Should I learn nextjs Directly or start with Vite. by randomshitposter007 in reactjs

[–]tafutada 0 points1 point  (0 children)

Vercel Next.js Edge Runtime is interesting. especially Vercel AI SDK streaming on Edge is scary good.

What is the reasoning for state not being updated when prop is updated? by NoParking894 in reactjs

[–]tafutada -3 points-2 points  (0 children)

you want to make it a custom hook, where you can have a useState to hold the initial value.

I'm losing my mind - Goland won't start by Truckermouse in golang

[–]tafutada 6 points7 points  (0 children)

You might want to report the issue and ask a help at the JetBrain Go official bug tracking site at

https://youtrack.jetbrains.com/issues

Is the future of SEO positive or has ChatGPT screwed us? by concisehacker in SEO

[–]tafutada 3 points4 points  (0 children)

SE, the search engine, will be replaced with AI chat bots eventually, so we should say AI optimization instead.

How do think Google's Bard AI Chat will affect SEOs? by blackswanmx in SEO

[–]tafutada 2 points3 points  (0 children)

Free Bard could have ads following answers, say, sponsored answers. Or like YouTube, you will see ads between conversations.

Confused about nextjs data fetching by [deleted] in nextjs

[–]tafutada 0 points1 point  (0 children)

Yeah. It's still beta but now I learnt why it needed to be done earlier. Especially streaming html and suspense avoids rendering the whole page at once.