My messy desk, where magic happens ✨
My messy desk, where magic happens ✨

Hey there! 👋 Welcome to Hu Ray's playground, where you can find blog posts about tech, life stories, and maybe some notes. Grab a cup of ☕️ and let's have some fun!

Build Own Web Server Using Go

Build Own Web Server Using Go

In our team, March Studio, we developed a scheduling module that requires concurrency capabilities. Initially, we built this module using Python with the Flask library, but we encountered performance issues. As a result, we decided to create a simple web server using Golang. This module is still under development. This article documents my experience building a web server with Golang, and I hope it can be helpful to others.

Continue reading →

Deep Neural Networks

Deep Neural Networks

Deep Neural Networks (DNNs) are artificial neural networks with many hidden layers. They transform inputs through these layers to learn complex features from data. DNNs excel in tasks like image and speech recognition, and natural language processing. Their success comes from learning from large datasets and using backpropagation to reduce errors. With more computing power and data, DNNs have become essential in deep learning. This post summarizes the SC4001 course at NTU, offering an overview of DNNs based on course notes and my insights.

Continue reading →

Greedy Algorithm, Djikstra and Prim

Greedy Algorithm, Djikstra and Prim

Greedy algorithms make the locally optimal choice on each iteration with the hope of finding a global optimum solution. They are typically used to solve optimization problems, and are usually more efficient than other algorithms. This post provides a comprehensive review of the algorithms covered in Lecture 6 of the SC2001 course in NTU, including Djikstra’s algorithm and Prim’s algorithm.

Continue reading →

Intelligent Agent Prolegomenon

Intelligent Agent Prolegomenon

An intelligent agent is a system that perceives its environment and takes actions that maximize its chances of successfully achieving its goals. Agents are used to build a wide variety of applications, including web search engines, recommender systems, smart home devices, and autonomous vehicles. The agent paradigm is also used to study human decision-making and to build artificial intelligence systems that interact with humans.

Continue reading →

FitLife Project Introduction

FitLife Project Introduction

FitLife - Intelligent Health Management Platform is an innovative web-based solution designed to provide users with convenient and personalized health management services through the Internet. Initially, FitLife is my final project for the Cloud Computing course, but I decided to continue to develop it as a personal project. It is a project under development and I am still working on it.

Continue reading →