Posts

Relocating the blog

next.js to hugo I found out that there is a program that can easily create a static site with go binaries. The library hugo is very fast because it’s made with go. It’s also very easy to change the theme, which I really appreciate. Anyway, I don’t have a habit of writing blogs, so it probably doesn’t mean much to me.
2021-12-15
1 min read

From jpg to webp

Why do we use webp? I’m currently taking a PHP course at Udemy, where I learned about the webp extension. It seems to be an extension created by Google that can compress images with reversible compression and alpha (transparency). Free image samples from the Internet Try to convert a free image from the net to webp The following is a sample image I’ll be using. These are images that I used in my blog in the past, and may use in the future.
2021-05-05
2 min read

Static Typing

Types of variables In the last article, I talked about variables. Boxes, and that they might be a good idea after all. Now, there are two types of programming languages: dynamically typed and statically typed, and there is a mechanism to fix the type of data to be stored in a variable. Let’s talk about that… In JavaScript, which I often write. First, I would like to mention that there are several types of data that can be stored in variables.
2021-04-23
2 min read

On the image of variables and classes

Think about variables and classes
2021-04-22
3 min read

Running a feap program using Docker

Preface feap(A Finite Element Analysis Program) This is a finite element analysis program in Japanese. I was asked by an acquaintance if I could execute the learning code of this program, so I created an environment using Docker. The code I created is here The official website of feap is here Suffering First, I searched on GitHub for Docker feap and no luck, and got only one hit. I found the Dockerfile, but the link specified in the file was broken, so I couldn’t build it.
2021-04-21
2 min read