Extracting Subtitles from Bilibili Videos

Bilibili Subtitle Extraction When watching English-language courses on Bilibili, obtaining the subtitle files can be valuable for later review. While many resort to AI-powered transcription services, Bilibili actually provides subtitle data in JSON format, which can be extracted directly. Downloading CC Subtitles CC subtitles appear as the whit ...

Posted on Mon, 31 Aug 2026 16:14:32 +0000 by pwes24

Utilizing JSON Functions in MySQL 8.0: JSON_EXTRACT, JSON_VALUE, and JSON_TABLE

MySQL 8.0 provides robust support for native JSON data types. Unlike storing JSON as a standard VARCHAR or TEXT string, the native JSON type offers automatic validasion of the document structure and an optimized binary format. This binary storage allows the server to look up sub-elements directly with out reparsing the entire text, significantl ...

Posted on Fri, 28 Aug 2026 16:56:51 +0000 by Patioman

Understanding the JSONPath Module: A Powerful Tool for Querying Data in Python

JSONPath is a query language designed to extract data from JSON structures, similar to how XPath is used for querying XML. In Python, the JSONPath module allows developers to efficiently perform queries on JSON data. This article provides an in-depth look at how to use this module with practical code examples. What is JSONPath? JSONPath is a sy ...

Posted on Fri, 21 Aug 2026 16:40:28 +0000 by cdjsjoe

Python Modules and Serialization Techniques

Python Modules Definition In Python, a .py file is referred to as a module. Categories There are four main categories of modules that can be imported: Built-in standard modules (also known as standard library). Execute help('modules') to see all built-in modules. Third-party open-source modules, which can be installed via pip install <modul ...

Posted on Wed, 19 Aug 2026 16:48:17 +0000 by ztron

LLM Cultivation Game Scenario Generation Template

LLM Cultivation Game Scenario Generation Template Character Persona You are the "Spirit of the Wondrous Realm"—an ancient trial spirit created from a cultivator who ascended to immortality. True Identity: You were once a cultivator, later transformed into a realm spirit, guarding this mystical realm for countless ages. The ascended c ...

Posted on Thu, 13 Aug 2026 16:31:57 +0000 by Deposeni

Managing JSON Data with the shasht Common Lisp Library

Parsing JSON Data The primary mechanism for ingesting and parsing JSON text is the read-json function. It accepts an input source which may be a string, a stream, or nil (defaults to standard input). (read-json &optional input (eof-error-p t) eof-value single-value-p) The behavior of the parser is governed by several dynamic variables, all ...

Posted on Thu, 13 Aug 2026 16:19:19 +0000 by taurus5_6

Recursive Tree Structure Implementation in C#

Hierarchical data structures are essential for building navigation menus, organization charts, and category trees. This article explores several C# implementations to transform flat data lists into recursive tree formats, suitable for JSON APIs, object-oriented models, and UI dropdowns. 1. Generating Recursive JSON Strings In some legacy system ...

Posted on Thu, 13 Aug 2026 16:06:44 +0000 by slimjim

Deep Dive into Gson's Type Adapter Mechanism

data class UserProfile(val userName: String, val userAge: Int) class ExampleActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.layout_main) val Input = "{\"userName\":\"dev_user\",\"userAge\":25}" val user = Gson() ...

Posted on Tue, 11 Aug 2026 16:24:36 +0000 by hyster

Exploring JSON Hero: An Advanced JSON Visualization and Navigation Tool

JSON Hero provides an elegant interface for parsing and understanding JSON structures. It enhances the standard data-viewing experience with intuitive visualizations and automated content previews.Repository: github.com/jsonhero-io/jsonhero-webLocal DeploymentTo self-host the application, retrieve the source code and configure the environment:g ...

Posted on Mon, 10 Aug 2026 16:21:54 +0000 by Integra_grrl

Storing JSON Arrays in MySQL Using Native JSON Columns

MySQL has supported the native JSON data type since version 5.7, enabling efficient storage and querying of structured data such as arrays. Representing complex collections as JSON arrays preserves logical relationships while keeping the format portable across platforms. Table Schema for JSON Storage Define a table with a column of type JSON to ...

Posted on Fri, 07 Aug 2026 16:57:07 +0000 by drax007