方言を話すおしゃべり猫型ロボット『ミーア』をリリースしました(こちらをクリック)

2024-11

スポンサーリンク
Development/Design

[Mia] How to use Google Calendar API with Go: From Refresh Token to Event Acquisition

The Google API does not allow direct use of refresh_token to access the API. Instead, you must use refresh_token to issue a temporary access_token and send a request to the API using this token.
application(Flutter)

[Mia] Implementation of Google Calendar API access utilizing Auth Code and Refresh Token (Go and Flutter)

To manage access to the Google Calendar API more securely and efficiently, instead of using access tokens directly on the app side, we have changed the mechanism to send an authentication code (Auth Code) to the backend, generate and store a refresh token, and use that refresh token to access the Changed to a mechanism to access Google Calendar API.
Note/Book

“Sisters In Yellow” by Mieko Kawakami: People Shaken by the Chaos of the 1990s and the Nature of Life

Mieko Kawakami's “The Yellow House” is a work that highlights the nature of “difficulties in living” by depicting poverty, crime, and relationships with pseudo-families in the historical background of 1990s Tokyo. Through this story, we witness the structural problems of society and the desperate individuals caught up in them. Below are some of the points that particularly impressed me.
application(Flutter)

[Mia] How to access Google Calendar from the Flutter application and display the day’s appointments in the console.

Thorough explanation of how to implement Google Calendar integration in Flutter apps, from setting up authentication flow using Google Sign-In, to acquiring events using Google Calendar API, setting scope, and detailed OAuth 2.0 procedures.
Development/Design

How to resolve Dirty status of database migration in Golang

This section summarises how to deal with a Dirty state of migration in server development using Golang and golang-migrate. a Dirty state means that the migration has been interrupted and the database is in an inconsistent state. The solution procedure is described below as a reminder.
Development/Design

[React] Steps to introduce the i18n library and make your project multilingual.

For developers aiming for multilingual support in React, this article details the steps to implement automatic language switching based on the user's browser settings using the i18n libraries react-i18next and i18next-browser-languagedetector. Step-by-step instructions on how to create a multilingual directory structure, build i18n configuration files, add language files, prepare components for translation, and implement a language selection drop-down in the navigation bar; also touches on how to rebuild dependencies in a Docker environment.
スポンサーリンク