Alibaba Cloud's Tongyi Qianwen has been upgraded with a new "One-Click Site Building" feature. Users describe their needs in natural language and AI generates complete enterprise website code.
Alibaba Cloud's AI and infrastructure investments show domestic cloud competition moving from resource sales toward a combination of models, compute, and platform capabilities.
Amazon Bedrock updates show that cloud vendors are moving generative AI from simple model access toward integrated permissions, security, deployment, and operations.
You can check the CPU model and core count on CentOS 7 with a single command. This article covers the /proc/cpuinfo pipeline and alternatives such as lscpu for server selection and performance assessment.
Configuring the SVN Global ignore pattern lets you ignore build artifacts, temporary files, and IDE configuration files that should not be version-controlled. This article provides a practical set of SVN global ignore rules.
PHP 7 removed the mysql_connect family of functions, so legacy code throws a fatal error when called directly. This article explains how to define compatibility functions at the code level that use mysqli internally, letting old code run without major rewrites.
To extract parts of a path in Shell scripts, use ${variable#...}, ${variable##...}, ${variable%...}, and ${variable%%...} pattern matching to quickly strip directory components or extensions.
scp is a secure remote file copy command based on SSH that transfers files and directories between Linux servers with encryption. This article covers scp syntax, common parameters, and examples of uploading and downloading files and directories.
Use a for loop in Linux to compress every folder in the current directory into a zip file with the same name, or use tar to package multiple folders into one archive. This article covers both common batch compression approaches.