HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bjacobso

no profile record

comments

bjacobso
·6 months ago·discuss
https://www.youtube.com/watch?v=aueu9lm2ubo
bjacobso
·6 months ago·discuss
Try https://www.conductor.build/
bjacobso
·7 months ago·discuss
Claude Code et al. asks clarifying questions in plan mode before implementing. This will eventually extend to jira comments
bjacobso
·7 months ago·discuss
Seems like the best competitor to Conductor at the moment. They did a great job.
bjacobso
·9 months ago·discuss
Sounds good
bjacobso
·9 months ago·discuss
Take a look at https://conductor.build/ - they really pioneered this whole direction of using git worktrees. Cursor will soon look like their app, Opencode will soon look like their app, etc.
bjacobso
·11 months ago·discuss
I migrated from ts-rest to Effect/HttpApi. It's an incredible ecosystem, and Effect/Schema has over taken my domain layer. Definitely a learning curve though.
bjacobso
·last year·discuss
I believe Effect Schema fully supports Standard Schema, the issue is that it supports much more than Standard Schema, so not all schemas will work and thus provide compile time errors.
bjacobso
·last year·discuss
I think the main issue is they accidentally created an incredible consumer brand with ChatGPT. They should sell that asset to World.
bjacobso
·last year·discuss
You should check out https://effect.website/

It might help you implement some of these ideas
bjacobso
·2 years ago·discuss
I agree, some of there examples are a little overly complicated by their quest to be hyper composable. In fact they should probably remove that example. I am currently using it with Remix, and using their @effect/platform package to produce a simple web handler (request: Request) => Response (thank remix for heavily promoting the adoption of web standards).

I fully agree parts of the ecosystem are complex, and likely not fully ready for broad adoption. But I do think things will simplify with time, patterns will emerge, and it will be seen as react-for-the-backend, the de facto first choice. effect + schema + platform + cluster will be an extremely compelling stack.
bjacobso
·2 years ago·discuss
that is certainly a possibility
bjacobso
·2 years ago·discuss
I've had a very similar experience, and have been slowly moving from zod and ts-rest to @effect/schema and @effect/platform/HttpApi as well as migration to Effect Match from ts-pattern. There is a learning curve but its a pretty incredible ecosystem once you are in it for a bit.

I think the real turning point was typescript 5.5 (May 2024). The creator of typescript personally fixed a bug that unlocked a more natural generator syntax for Effect, which I think unlocks mainstream adoption potential.

https://twitter.com/MichaelArnaldi/status/178506160889445172... https://github.com/microsoft/TypeScript/pull/58337
bjacobso
·2 years ago·discuss
From my understanding trpc is very similar, however, the rpc mechanism is not a standard. ts-rest produces openapi schemas and speaks REST over http, as well as a typed client.

That being said, I am actually slowly migrating off ts-rest and adopting @effect/schema and @effect/platform/HttpApi, I foresee this being the direction the typescript ecosystem heads in over the next few years. However, the APIs are not stable yet and it has a bit of a learning curve, so would not adopt lightly
bjacobso
·2 years ago·discuss
zod is great, but I have been moving to @effect/schema and think it deserves a mention here. @effect/schema is the evolution of io-ts, which originally inspired zod.

It supports decoding as well as encoding, and fits natively into the rest of the effect ecosystem.

https://effect.website/docs/guides/schema/introduction

It does come with the cost of importing effect, so might not be the best in certain scenarios. However, there are smaller options than zod if that is a concern.
bjacobso
·2 years ago·discuss
I think you are looking for https://ts-rest.com/