Skip to main content

5 posts tagged with "Web App"

ブラウザで完結するWebアプリ(メモ帳・ダーツ計算・各種ツール・localStorage活用等)に関する記事。

View all tags

With SQL, the Answer Alone Isn't Enough.

· 13 min read
hiroaki
Individual Developer

Run a SQL query, and you get an answer.

How much revenue did we make?
Which campaign performed best?
How many customers are still active?
Where are users dropping off?

But looking at the number on the screen tells you nothing about why that number is correct.

Which data made it into the aggregate?
What was excluded, and by which condition?
Did a join duplicate rows along the way?
Does the unit of calculation match the metric you actually wanted?

SQL gives you an answer.

To understand how that answer was produced, you have to look beyond the result, at everything that happens on the way there.

Data is no longer something only a handful of specialists touch.

As business operations have become more digital and more data-driven, it is not just engineers and data analysts who are expected to make decisions grounded in data every day. Marketers, product planners, sales teams, and people driving operational improvements are, too.

And behind much of that, out of sight, sits SQL.

SQL Quiz Book is a problem set for understanding how SQL processes data, by mapping each part of a query to the way the table changes.

Added "Count-Up" to the Free, Browser-Based Darts Score Calculator (No App or Registration Required)

· 3 min read
hiroaki
Individual Developer
If this site helped you, please support us with 🌟 ☕️
Count-Up Darts Score Calculator Screen

Following the previously released browser-based darts score calculator apps for "01" and "Cricket", we have newly added a "Count-Up" score calculator tool.

While 01 and Cricket are highly strategic and fun games, Count-Up is the best choice for basic darts practice or when playing with beginners who have just learned the rules, as it simply competes for total points. As always, no app installation or account registration is required. You can start using it immediately just by opening your browser.

No Registration or Download Required. Released a Free Darts Calculator (01 & Cricket) Ready to Use in Your Browser.

· 4 min read
hiroaki
Individual Developer
If this site helped you, please support us with 🌟 ☕️
01 Game Darts Score Calculator ScreenCricket Darts Score Calculator Screen

I have a steel tip dartboard at home, and until now, I used to calculate scores in my head while throwing. However, when I played with friends, we needed a proper calculator. When I looked for one, I found that many required installing a smartphone app or creating an account—it was surprisingly hard to find something quick and easy to use.

So, I created a simple "Darts Calculator Web App" that requires no downloads or registration and is ready to use just by opening a browser. I've published it on my personal website. It fully supports score management for the classic 01 (Zero-One) and Cricket games.

Browser Memo Feature: A Log of URL Sharing and UX Improvements

· 4 min read
hiroaki
Individual Developer

Browser Memo Feature: A Log of URL Sharing and UI/UX Improvements

Introduction

Regarding the previously implemented Browser Memo feature.

Based on user experience and analysis of competing services, I have implemented significant feature enhancements.

This article outlines the key technical points of implementing a URL-based memo sharing feature and the UI/UX improvements made in the process.

This article is a record from when it was written. For the continuously maintained procedure, see the technical documentation version.

Related:

A Record of Implementing an In-Site Browser Memo Feature in Docusaurus

· 5 min read
hiroaki
Individual Developer

This article organizes the main specifications and technical points from when I implemented a simple, client-side browser memo feature on a Docusaurus site using React and TypeScript.

This feature was later significantly extended in URL Sharing and UX Improvements.

Note that this article is a record from the time of implementation; for the continuously maintained procedure, see the technical documentation version.

1. Basic Features and Purpose

To provide a feature that allows users to easily create and save text memos in their browser, with the content persisting on subsequent visits. The focus is on ease of use and responsiveness by having everything run entirely on the client-side (using the browser's localStorage) without any server-side processing.