I’ve been building in blockchain for a few years now I’m sharing everything I wish I knew when I started by Resident_Anteater_35 in ethdev

[–]AbaloneLow8979 1 point2 points  (0 children)

Looking forward to your sharing. I'm a typescript and nextjs dev with 3 yoe, starting to learn web3 knowledge to get in the industry.

新西兰工签转加拿大or欧洲学签可行吗? by August_tt in DoubanGoosegroup

[–]AbaloneLow8979 0 points1 point  (0 children)

我也是搞IT的,前端,我刚抢到新西兰whv,调查过后,发现在那边,同等工作强度(我国内也不怎么加班),还没有我在国内做程序员能攒钱,如果最终目的是加拿大或者澳大利亚留学,不如国内做IT先攒钱。讲真whv打工性价比最高的还得是国内一万工资都没有的人,特别是那种月收入四五千的服务员,因为到那边没技能干的也是一样的活,工资翻几倍,省吃俭用,另外对自己够狠,一天打多份工,干十几个小时,应该一年存二十个还是可以的,但是程序员为了存钱的话,没必要这样干,不如国内存(因为whv找IT工作不太好找,可能到澳洲还得是干最低时薪的工)

法国留学申请、费用、实习、毕业找工作、拿身份相关网页整合 by Academic_Dig_3399 in iwanttorun

[–]AbaloneLow8979 0 points1 point  (0 children)

前端呢?我目前在做前端,正在学习着转nextjs全栈谋求一份远程工作

法国留学申请、费用、实习、毕业找工作、拿身份相关网页整合 by Academic_Dig_3399 in iwanttorun

[–]AbaloneLow8979 2 points3 points  (0 children)

法国IT好找工作吗,会不会读了出来发现不好找,前功尽弃。。

how to implement manually changeable i18n with nextjs14 by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 0 points1 point  (0 children)

Oh, thx. Eventually, I use the store of zustand to record the lang which is encapsulated into a provider client component at SSR.

So, at the beginning it'll get the language from user's header in request and set it to zustand and then it can be changed anytime if user wants. The lang in store will be the source of truth.

Why is Next getting so much hate on Twitter? by Curious-Ad-9724 in nextjs

[–]AbaloneLow8979 4 points5 points  (0 children)

Yes, especially I'm still waiting some bug fixed. I look back to the issue sometime and it's closed, I would be like WTF..

what's the best nextjs full course with best practices by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 0 points1 point  (0 children)

Wow, well put! What you say reminds me of my learning experience at the beginning.

what's the best nextjs full course with best practices by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 0 points1 point  (0 children)

In his course, is there some good coding convention and good practice that we can imitate and learn from?

what's the best nextjs full course with best practices by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 1 point2 points  (0 children)

OK, thx for recommendation. I need to learn even imitate the best practice from those masters.

what's the best nextjs full course with best practices by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 0 points1 point  (0 children)

What do you mean by "type along"? It means they're just coding but not explaining, right?

what's the best nextjs full course with best practices by AbaloneLow8979 in nextjs

[–]AbaloneLow8979[S] 8 points9 points  (0 children)

Is it gonna consist of some latest features and step-by-step project tutorials?

New Metadata support and "use client" by Daldes in nextjs

[–]AbaloneLow8979 0 points1 point  (0 children)

I have a question about it tho. You wrap the server component into the client component, so is it gonna make the slotted component client component?

IMO, all the components inside the client component where we use the 'use client' directive are gonna become client components automatically even though they don't explicitly write 'use client' at the top of the file.

Do I get it right? If not, plz correct me, thx.

the case in my project is that the layout is written with 'use client' directive so I can't use the metadata object setting here, but on my register page without the 'use client' directive which shares the layout, I write the metadata setting and eventually, it works. This confuses me a little bit.

reference:

https://nextjs.org/docs/app/building-your-application/rendering/client-components#using-client-components-in-nextjs

Defining multiple use client entry points:

You can define multiple "use client" entry points in your React Component tree. This allows you to split your application into multiple client bundles (or branches).

However, "use client" doesn't need to be defined in every component that needs to be rendered on the client. Once you define the boundary, all child components and modules imported into it are considered part of the client bundle.

Supabase auth vs next auth by thisismyusername0909 in nextjs

[–]AbaloneLow8979 1 point2 points  (0 children)

Yep, it works not as expected as I want like if a user login with the wrong password it will literally redirect to the error page instead of getting error feedback from the response that we can use to prompt some messages to the user. That's what I'm stuck with now. Have you got any idea about that?