ThunderMiracle's Blog - Page 2

ThunderMiracle

Blog part of ThunderMiracle.com

Total 26 posts (11 - 20)

My impressions of Udacity's Nanodegree-Blockchain Developer course

My impressions of Udacity's Nanodegree-Blockchain Developer course

2021年10月18日☕️☕️ 7 min read

5 months before, I received a letter from Udacity with a `75% off` coupon. I'd be able to start a 4 months span Blockchain Developer course with $339 instead of the original $1596. So I said to myself, why not take it right now? And 5 months later, right now, a little bit later than expectation, but I graduated successfully. I experienced a lot, and I'd like to share my experiences to anyone who wants to take the Nanodegree-Blockchain Developer course.

How to add search to a multilingual Gatsbyjs site with algolia

How to add search to a multilingual Gatsbyjs site with algolia

2021年5月1日☕️ 5 min read

GatsbyJS is a great tool for building blog or document sites. It's fast, well-documented, easy to study, and powered by GraphQL. As all we know, [https://reactjs.org/](https://reactjs.org/) is made with GatsbyJS. And of course, search experience is a very important part. Gatsby

Install .Net Core in Arm-64bit AWS EC2

Install .Net Core in Arm-64bit AWS EC2

2021年4月15日☕️ 1 min read

Arm instances have better cost-performance then Intel ones. But installing software on it is quite challeging. Of course, about deploying a .Net Core program on arm64 based OS, docker is a better choice. But sometimes, we need install .Net Core SDK globally on OS directly. Let's do it today.

Debug Next.js+Typescript in VSCode

Debug Next.js+Typescript in VSCode

2020年12月24日☕️ 3 min read

Using `console.log` to debug frontend is easy but absolutely not effective. As `Next.js@9~` was born, debug `Next.js` + `Typescript` became possible. But unfortuately, there's only server side debug manual in Vercel's official site documentation. Let's dig a little more deeper to find out how to debug `Next.js` + `Typescript` in both `server` and `client` side.

LazyLoad GoogleMap

LazyLoad GoogleMap

2020年9月9日☕️ 2 min read

It must be GoogleMap when we talk about adding maps to our sites. GoogleMapAPI is quite easy to use, but we have to face the performance issue when using it as well.

deploy aspnet core to Plesk

deploy aspnet core to Plesk

2020年7月6日☕️ 2 min read

Plesk is a web hosting platform with a GUI control panel which alleviates the management of server. It's very easy to startup a PHP or Node.js in Plesk with SSL and mail server. But deploying a project which needs compilation like aspnet core is not that easy.

Spam filter for Netlify form in Gatsby

Spam filter for Netlify form in Gatsby

2020年6月18日☕️ 3 min read

Netlify form is quite easy to build a contact form in serverless architecture like Gatsby. But the free plan only allows 100 submissions a month, so spam filter is really important at this point.