HackerTrans
トップ新着トレンドコメント過去質問紹介求人

jo_beef

no profile record

投稿

The Case of the Stolen Source Code (2017)

blog.panic.com
2 ポイント·投稿者 jo_beef·2 年前·1 コメント

Ask HN: Is Bun trying to do too much?

4 ポイント·投稿者 jo_beef·2 年前·1 コメント

Stack Overflow Discussions

stackoverflow.co
3 ポイント·投稿者 jo_beef·2 年前·0 コメント

Convex – Full Stack Dev Platform Written in TypeScript

convex.dev
1 ポイント·投稿者 jo_beef·3 年前·0 コメント

コメント

jo_beef
·2 年前·議論


  Location: Philippines
  Remote: Yes
  Willing to relocate: No
  Technologies: React.js, Next.js, Typescript, Prisma, Tailwind CSS
  Résumé/CV: https://www.linkedin.com/in/jopsima
  Email: [email protected]
I'm primarily a frontend-leaning developer, but I've got solid experience on the backend too. Unlike the average junior who requires constant hand-holding, I'm quick to pick up new technologies. You could throw me into the deep end, and I'd figure out how to swim in no time.

My projects are available on my GitHub profile (https://github.com/jahriko)
jo_beef
·3 年前·議論
I use https://rescuetime.com
jo_beef
·3 年前·議論
I'm currently building a project using App Router. Here are my thoughts so far:

1. In React Server Components, you fetch data at the component level instead of route level. You can pass the data down as props if it's a client component.

2. I'm not sure if HMR is faster in Pages, but in App Router it tends to be slow. I always use --turbo to see changes quickly, but it can still be a bit buggy.

3. I just found out that using "use client" directive isn't actually sending 100% javascript to the client. It's just a replacement of serverSideProps. The component is rendered both on the server and the client, which can be confusing at first. You can disable SSR using dynamic imports.

4. I actually like Route Groups, best feature by far.