AI Agent Hub

Blog

In-depth articles on AI agents, LLM engineering, servers, Python and software development.

📝
Playing Music with Android Service
Aug 16, 2017 · Android

This article introduces the method of implementing a music player using a Service. First, a custom Service named MusicService is created, and related operations of MediaPlayer are implemented within i

# Android 763 views
📝
Implementing WeChat-Style Bottom Navigation with Fragments in Android
Aug 16, 2017 · Android

You have successfully implemented a simple bottom navigation bar, where each tab corresponds to a Fragment. This is a common feature in Android applications. Below are some supplementary explanations

# Android 822 views
📝
Displaying Network Images Directly on ImageView in Android
Aug 16, 2017 · Android

This code demonstrates how to implement image network downloading and local caching functionality in an Android application. The following is a detailed analysis of the code: ### 1. **Network Image D

# Android 909 views
📝
Reading SMS and Contacts on Android
Aug 16, 2017 · Android

This tutorial explains in detail how to read SMS and contact information in an Android application. To help you better understand and practice, I will organize and simplify these steps and provide som

# Android 874 views
📝
SQL Format Notes
Jul 06, 2017 · Backend

This content mainly introduces the basic SQL statements for creating, modifying, and deleting tables, as well as data querying, inserting, updating, and deleting. First, when creating a table, you nee

# SQL # database 760 views
📝
Solving Chinese Garbled Characters in MySQL under XAMPP
May 27, 2017 · Backend

This article introduces how to set up UTF-8 encoding in MySQL integrated with XAMPP. First, open the configuration file my.ini in the control panel and add four lines of code: default_character_set =

# XAMPP 842 views
📝
Developing Java Web Projects with IntelliJ IDEA
May 21, 2017 · Backend

This article introduces the basic steps to develop Java Web applications using IntelliJ IDEA Ultimate. First, download and install the software from the official website, choosing the trial version du

# JavaWeb 760 views
📝
Installing Ubuntu Linux Subsystem on Windows 10
May 14, 2017 · Other

This article introduces two methods to install the Ubuntu subsystem on Windows 10. The first method is to search and obtain it through the Microsoft Store, which requires opening the Settings and enab

# Ubuntu # Windows # Linux 973 views
📝
Log.d() Not Outputting in Android Debugging
May 13, 2017 · Android

The article discusses the differences in log output between real devices and emulators during Android application debugging. The author found that when debugging on a real device, the logs from Log.d(

# Android 781 views
📝
Receiving and Sending Cookies in Android
May 13, 2017 · Android

This article author shares the difficulties encountered when implementing automatic login on the web using Okhttp3 and provides solutions. By default, Android does not save cookies, so it is necessary

# Android # Cookie 945 views