Category: Articles

Computer (3)
Open Source (313)
Security (30)
Server (5)

Piwik Free Open-Source Analytics: Run Your Own Website Statistics Client

Whether you are building a blog or a professional portal website, you will certainly need to install visitor statistics. Analytics allow you to analyze user data and gauge your site’s popularity. Every website we create is meant to attract more and more users — for personal blogs, it brings a sense of satisfaction, while for commercial sites, it can …

TPM (ThinkPHP Mobile) Officially Released

With rapid technological change, the proliferation of smart devices, and the diversification of marketing tactics, mobile clients are playing an increasingly vital role in the mobile internet era. App development for mobile devices has gradually become a critically important part of the IT industry.

To better meet the needs of developers, Thi …

OneThink Content Management Framework Launching Soon

Following the release of ThinkPHP鈥檚 SAE Engine, Cloud Engine, and TPM (ThinkPHP Mobile), Shanghai Topthink Information Technology will launch a content management framework called OneThink during the Mid-Autumn Festival, officially taking a new step toward application development.

As a leading provider of WEB application development frameworks in China, Topthink has been committed to simplifying Web application …

How to Import Large MySQL Database Backups Using BigDump

A commonly used MySQL database recovery tool (which can also perform backup operations) is phpMyAdmin, an open-source and free tool that most hosting providers (such as Hawkhost) offer at no cost. Many webmasters have likely used phpMyAdmin to back up and restore their website databases — it is indeed very convenient, and …

Complete Guide to Linux Open-Source Mirror Sites in China

I’m passionate about open source, not because I can steal code from it, but because of the knowledge it provides and the chance to understand different programming mindsets. Over the years, open source mirror sites have sprung up across China, though they still can’t compare with those abroad. Here, I’ve compiled a list of all open source mirror site addresses in mainland China for your reference …

Vim 7.4 Official Release: The Text Editor Standard

Text Editor Vim 7.4 Stable Released!

2013-08-10. The previous version 7.3 was released on 2010-08-16.
After nearly 3 years, this version incorporates thousands of patches, with major features including 1. improved Python support.
A faster regular expression engine. Full …

53 Tips to Improve PHP Programming Efficiency

This article is from the internet, and I don’t fully agree with all the standards, but take a look anyway! 1. If you can define a class method as static, try to define it as static, its speed will increase by nearly 4 times.
2. $row[’id’] is 7 times faster than $row[id].
3. echo is faster than print, and using …

Static Page Design Principles and Steps

Static site generation is a solution for reducing website load, but it also introduces a range of issues, including increased development complexity and higher maintenance difficulty. If not applied properly, it can even be counterproductive. Many alternative approaches, such as page caching, can also achieve great results when used correctly, so before you begin…