Skip to main content

📎 Discussing the Development of Interactive Tutorials from PaperClip's Interactive Videos

· 5 min read
卤代烃
微信公众号@卤代烃实验室

This article was originally a Zhihu answer, which received good response, so I refined some details and reorganized it for publication

On December 17, 2020, PaperClip Studio launched a new product - "The Birth of an Artificial Intelligence" Interactive Teaching Video. Because I've been exposed to MOOCs since high school and have always been very interested in online education, I immediately followed up and experienced their trial lesson - "Recognizing Numbers".

🔢【Mathematics in Programming】Using De Morgan's Laws to Simplify Boolean Operations

· 7 min read
卤代烃
微信公众号@卤代烃实验室

Today let's talk about the practical application of De Morgan's laws in programming. The title looks intimidating, but actually you only need a little bit of high school math knowledge to understand it. Moreover, this knowledge can be quickly applied to projects after mastering it, with a very high investment-return ratio.

🧭 React Native Version Upgrade Guide

· One min read
卤代烃
微信公众号@卤代烃实验室

React Native as a cross-platform framework has one of the most headache-inducing problems: version updates. Especially when encountering major version updates, the configuration and build files for JavaScript, iOS, and Android all undergo significant changes. Sometimes these configuration files are coupled together, where one change affects everything.

🦀️ Houyi Web Scraper—The Most Conscientious Web Scraping Software

· 9 min read
卤代烃
微信公众号@卤代烃实验室

Houyi Web Scraper header

In 2020, if I had to recommend a data collection software for the general public, it would definitely be Houyi Web Scraper. Compared to the web scraper I previously recommended, if web scraper is a small and precise Swiss army knife, then Houyi Web Scraper is a large and comprehensive heavy weapon that can basically solve all data scraping problems.

Let's discuss the excellent features of this software.

🚀 React Native Version Upgrade Guide

· 24 min read
卤代烃
微信公众号@卤代烃实验室

Preface

React Native, as a cross-platform framework, has one of the most headache-inducing problems: version updates. Especially when encountering major version updates, the configuration and build files for JavaScript, iOS, and Android all undergo significant changes. Sometimes these configuration files are coupled together, where one change affects everything.

This article assumes that the person leading the React Native upgrade is a frontend developer who is familiar with JavaScript-based frontend build processes. If conditions permit, it's strongly recommended to involve iOS and Android developers during the upgrade. For some trivial upgrade details, face-to-face communication is far more efficient than search engines.

Tip: Because each modification and new content will hide the article for re-review, it's recommended to read the original blog post for the best reading experience

👉 Read Original Blog Post

If you find this article useful, please remember to like it 🌟. Thank you, it really means a lot to me!

🌐 Hidden Pitfalls in HTTP Specifications

· 11 min read
卤代烃
微信公众号@卤代烃实验室

The HTTP protocol is arguably the most familiar network protocol for developers. Its characteristics of being "simple and easy to understand" and "easy to extend" have made it the most widely used application-layer protocol.

Despite its many advantages, the protocol specification contains numerous hidden pitfalls due to various compromises and limitations during its definition, which can easily trap unsuspecting developers. This article summarizes common pitfalls in HTTP specifications to help developers consciously avoid them and improve their development experience.

🎨 React Native Performance Optimization Guide - Rendering Chapter

· 38 min read
卤代烃
微信公众号@卤代烃实验室

Update Notice

Article updated on 2022-08-29 with "Image" optimization content

Article updated on 2022-01-22 with "Fabric" architecture chapter

Article updated on 2021-07-01 with Redux optimization content

Talking about React Native in 2020, in the ever-changing frontend circle, might be considered quite alternative. Before writing this article, I hesitated, but then I thought that writing technical articles isn't about following trends - writing about whatever is trendy. So I decided to write this React Native performance optimization article.

The React Native performance optimizations discussed in this article haven't reached the level of modifying React Native source code, so they are highly universal and useful for most RN developers.