
潺潺流水而道话
佳事如何?
Who are you?
Where are you going?
What do you have to do?
What is the meaning of life?
Don’t forget yourself
Enjoy the Fun of Programming

潺潺流水而道话
佳事如何?
Who are you?
Where are you going?
What do you have to do?
What is the meaning of life?
Don’t forget yourself

无尽的旅程与新的发现
——DAMIDAMI
Disclaimer:
This article introduces the Sabah State Polytechnic from a personal perspective.
It reflects only my personal views and is not affiliated with any official entity.
What This Article Covers
The following is a brief introduction:
You can learn more through Baidu Baike and the school’s official website.

袅袅青烟而道话
赶大荒
Good morning.I’m cat.
Today, I’d like to share some excellent programming tools that I enjoy using.
If you’re new to programming, you can take a look and use it as a reference.
Below, I will introduce these software programs one by one.
The open source AI code editor
It’s an extremely lightweight code editor.
While it may not offer the same comprehensive environment as JetBrains IDEs, its plugin ecosystem more than makes up for any shortcomings.
I firmly believe it’s the most powerful editor out there.
I’ll share some of my own thoughts. Positioning Visual Studio Code as an AI-focused product is misguided. As a code editor, its primary focus should be enhancing the coding experience. Integrating AI features only bloats the application, which is counterproductive.
If you need a lightweight, scalable code editor, it will be your top choice.
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
If you need version control, Git is one of your options.
Compared to other version control systems, Git is renowned for its distributed nature. However, it still has some drawbacks: every change made in the cloud requires you to synchronize everything, rather than selectively downloading only the necessary code.
From unlimited code completion to an autonomous coding agent – all refined AI features are available in your IDE right now for free.
JetBrains IDE is the one that saves me the most hassle with environment setup among all my IDEs, thanks to its massive installation package and comprehensive support for various programming language environments.
Tabby is an infinitely customizable cross-platform terminal app for local shells, serial, SSH and Telnet connections.
Tabby is an infinitely customizable cross-platform terminal application supporting Windows, Linux, and macOS operating systems. Whether you need local shell operations, serial connections, SSH, or Telnet, Tabby handles it effortlessly. It is compatible with multiple terminals including PowerShell, WSL, Git-Bash, Cygwin, MSYS2, Cmder, and CMD.
I primarily use Tabby’s SSH functionality. Windows’ native terminal is well-optimized, and if you want greater customization, you can opt for it.
Windsurf is the most intuitive AI coding experience, built to keep you—and your team—in flow.
Windsurf is an IDE customized for AI use, built upon Visual Studio Code. If you’re interested in AI, you might want to give it a try.
That’s all for now.
Have a great day!

1. Security
WordPress is an excellent open-source blogging tool and CMS publishing platform.
2. Fast and Simple Deployment
Deploying it on my own server took very little time—I completed the setup in just half a day.
3. Mature Technical Solution
Using the official installation documentation and AI tools, I can resolve most issues.
4. Aesthetic Appeal
It offers great visual appeal with a magazine-like aesthetic.
记录
有上传文件限制,先改了, wp-config.php
在你的服务器上,用以下命令编辑 WordPress 配置文件:
sudo nano /var/www/html/wp-config.php
在文件顶部 <?php 下面另起一行,添加以下内容:
@ini_set( 'upload_max_filesize', '64M' );
@ini_set( 'post_max_size', '64M' );
@ini_set( 'memory_limit', '128M' );
@ini_set( 'max_execution_time', '300' );
保存退出(Ctrl+O,回车,Ctrl+X)。
sudo systemctl restart php8.3-fpm
sudo systemctl reload nginx
如果上述方法无效,可以尝试直接修改 PHP 配置文件:
sudo nano /etc/php/8.3/fpm/php.ini
找到以下几行(可以用 Ctrl+W 搜索),修改为:
upload_max_filesize = 64M
post_max_size = 64M
memory_limit = 128M
max_execution_time = 300
保存后重启 PHP-FPM:
sudo systemctl restart php8.3-fpm
sudo systemctl reload nginx
如果你使用了 Nginx 反向代理上传大文件,还需要确保 Nginx 配置中没有限制:
sudo nano /etc/nginx/sites-available/default
在 server { ... } 块中添加:
client_max_body_size 64M;
保存后重启 Nginx:
sudo systemctl reload nginx