< body id = "wordpress-org" class = "home blog" > < div id = "header" > < div class = "wrapper" > < h1 > [WordPress.org ](http://cn.wordpress.org/) </ h1 > < h2 class = "rosetta" > [China &#31616;&#20307;&#20013;&#25991; ](http://cn.wordpress.org/) </ h2 > < div style = "clear:both" ></ div > < ul > < li > < a href = "/" title = " &#39318;&#39029; " class = "current" > &#39318;&#39029; </ a > </ li > < li > < a href = "http://zh-cn.forums.wordpress....
[Repost] Memories of Wenlan
From Maomihz's Blog . Original post: http://maomihz.com/archives/225 Prologue 1. Looking back on three busy years, there were originally 44 classmates studying together, but now only 32 remain. One by one, they left, and in the end, I had to leave too. Over these three years, I feel like I never even spoke a word with some people. Even though we studied in the same classroom, we were like strangers to each other. What a pity. Many things couldn't be spoken about before the high school entrance exam, but everyone was doing them. If one could reach the state that Teacher Wu described, then they would truly be a good student. One month before the high school entrance exam, my performance started to decline. Teacher Wu called me out to talk several times. In the end,...

In the Face of WeChat, All Error Detection Programs Are a Joke!
Key adaptations: 1. Title retains the provocative tone by translating "渣渣" as "a joke" for natural English sarcasm 2. Category "转载" becomes "Repost" (standard term for shared content) 3. Tags localized: - 编程 → Programming - 错误 → Errors - 微信 → WeChat (official branding) 4. All technical elements preserved: - Frontmatter structure (---) - Image paths unchanged - Date format remains ISO standard - Markdown syntax intact 5....

The Romance of the Three Kingdoms: A Parody
This is an early work by Cai Ca. (Cai Ca's Weibo: Tencent @fyc009cc, Sina @cyfcc)...
Interoperability between IPv4 and IPv6
IPv4 is currently the most widely supported network protocol, where computers are identified by IP addresses. Theoretically, it can accommodate up to 2 32 2^{32} 2 32 network devices (IPv4: 8 hexadecimal digits). Unfortunately, these addresses have been exhausted, and it's truly a mystery how major ISPs allocate limited IP addresses to an infinite number of computers. IPv6 is far more impressive, with each address containing 32 hexadecimal digits, allowing for 2 128 2^{128} 2 128 network devices. These IP addresses will be more than sufficient before humanity perishes due to Earth's inability to sustain us. This protocol is championed by major internet companies including Google, DNSPod, and others. However, currently in China, IPv6 seems to be used only in universities,...
A Piece of JS for Ultimate Resistance Against Developer Tools
The most frustrating part of website development is having your painstakingly crafted templates ripped off using developer tools, as Chrome Dev Tools and Firebug possess immense power. (No explanation needed) Developer tools were once invincible, until this piece of JS emerged. http://publicdn.cdn.duapp.com/js/wqnmlgb.min.js Source code + author information: /* Plugin Name : WQNMLGB Plugin Author : Xider Plugin Version : 1.2 final Plugin Site : http://lab.i-xider.com Now Support : Chrome , Safari , FireFox ( NOT ALL ) , Opera ( NOT ALL ) , IE ( NOT ALL ) 请原谅我把原生JS和JQuery混为一起写 */ function fuckyou () { window . location = 'http://i-xider.com/#呵呵' //Redirect current window to blank page } function ck () { console . profile () console . profileEnd ()...
Bad Apple NG Fixed and Enhanced Version
This update fixes several issues. The frame rate statistics were actually incorrect (due to my brain-fart code), and the frame rate remained at 20 FPS throughout the entire video. The FPS statistics have now been changed to processing delay. (PS: The program automatically adjusts for processing delay.) Some users reported that it did not run properly on 64-bit OS. It was likely an int64 issue. Now it has been changed to longint, and the issue should be resolved. Added a statistics feature (you can turn it off by changing the third line from stat=true to stat=false). Data file download: /usr/uploads/2013/03/badapple.7z Source code: (compile with FPC 2.6 by yourself) uses crt,dos; const stat= true ; inx= 79 ; iny= 24 ; yanchi= 50 ; yanchitj= 800 ; type pic= array [ 1 ..inx, 1 .....
Bad Apple NG: Enhanced Bad Apple Playback System
UPDATE: If encountering issues like failure to open or runtime error 2, please check the instructions at Bad Apple Command Line Art Version regarding data files!!! My previous Bad Apple Command Line Art Version was successfully reposted by classmate WotorDho and enhanced with delay calibration to maintain consistent FPS when system lags. However, he used a custom XCrt unit from his Wenlan Killer project, which contains redundant code and is hard to understand. After studying XCrt, I modified my player to achieve the same effect (theoretically with better performance). Additionally, I optimized the Telnet transmission that previously wasted bandwidth by sending full frames. The new version only updates changed pixels, significantly reducing data transfer....
Discover More eMule Users with Headless Files to Speed Up Downloads
eMule is a well-known P2P protocol where users can search for other eMule users online and access desired resources. The eMule protocol consists of two parts: ED2K and KAD. ED2K operates similarly to BitTorrent, requiring clients to maintain a server list. During downloads, clients connect to servers to obtain lists of other users before establishing connections - much like Tracker servers in BitTorrent. The unique aspect is the KAD network, which allows direct user searches without servers. However, KAD searches are slow due to the inefficiency of scanning IPs individually. eMule addresses this by allowing KAD exchange through ED2K: clients discover peers via ED2K, exchange KAD contacts, connect through KAD, and repeat. But repeated connections still consume significant time....

Installing LRC Lyrics Display Plugin and Enabling SRS WOW-like Sound Effects in Ubuntu
My ASUS laptop originally had a sound card driver in Windows 7 that included a technology called ASUS Sonic Focus. Its principle involves adjusting the audio equalizer to create a psychological Dolby surround effect, making listeners perceive the sound as spatial. After enabling Sonic Focus, I found the audio quality significantly improved. (I'm not an audiophile.) However, on Ubuntu, there's naturally no Sonic Focus – ASUS wouldn't bother supporting such a rapidly evolving system. Dolby and SRS also don't provide Linux support, so the open-source community developed Extra Stereo to replicate these features. There's also Crystalizer, which enhances high-frequency loudness for clearer sound. Those who've used Creative Sound Blaster or X-Fi cards should be familiar with this. Meanwhile,...