//Teacher × Coder × Blogger

Strong Kangaroo

At the boundary of technology and education, recording every moment of daily life with code.

classTeacher{
subject: [ "지구과학", "정보·컴퓨터"]
skills: ["Python", "JavaScript", "Arduino"... ]
passion: "실험하고 기록하기"
}
29
Posts
15
Categories
2021
Since
Trying Kakao Map API with Next.js
Node.js

Trying Kakao Map API with Next.js

There are days like this. 'Did I just speed past a speed camera?' However, it was hard to find the exact locations of the speed cameras. So, I decided to create something. 1. Gyeonggi Public Data Since I mostly travel within Gyeonggi-do, I decided to use Gyeonggi Public Data ...

힘센캥거루
2025년 1월 20일
Updating Session in NextAuth
Node.js

Updating Session in NextAuth

While there are many resources on implementing login, there was little on updating session information. Here's a look at how to update session information. Once again, let's refer to the NextAuth documentation. The order for updating session information is as follows. Using useSession...

힘센캥거루
2025년 1월 13일
Creating a Scroll Button in Nextjs
Node.js

Creating a Scroll Button in Nextjs

Implement a scroll-to-top button using window.scrollTo

힘센캥거루
2025년 1월 13일
Implementing Pagination in Next.js
Node.js

Implementing Pagination in Next.js

I wanted to do pagination and searched for articles, but there were few, and they didn’t fully satisfy me. Most blog articles I found included examples using useState and API. This approach is easy to implement but fails to leverage the benefits of server-side rendering. Today, I’ll try to implement pagination in Next.js using server-side rendering...

힘센캥거루
2025년 1월 5일
Implementing a ChatGPT Chatbox Using Nextjs and AI SDK
Node.js

Implementing a ChatGPT Chatbox Using Nextjs and AI SDK

I've been working hard on decorating and adding features to my blog recently. Looking back at my code, I realized that I don't remember how I made it. It was a day to appreciate the importance of TIL once again. So, I'm documenting it once more. 1. ChatGPT API Official Documentation First, the basic settings can be found in the official documentation...

힘센캥거루
2025년 1월 3일
Setting Up Protected Routes Using NextAuth
Node.js

Setting Up Protected Routes Using NextAuth

Creating protected routes using middleware and withAuth

힘센캥거루
2025년 1월 3일