➔ Why Megalayer is the Best VPS Provider for Chinese Users
| 2 minute read
If you’re a Chinese user in need of a reliable and fast VPS provider, Megalayer is an excellent choice. In this article, we’ll take a closer look at why Megalayer is the best VPS provider for Chinese users, highlighting its speed, native IPs, and special optimizations.
Speed: Fast and Reliable Connections
Megalayer’s servers are designed for speed and reliability, with data centers located around the world to ensure low latency and high performance.
Read More >>
➔ When executing sudo mkdir xxx in the root directory of macOS Monterey, the error message Read-only file system is returned.
| 1 minute read
For security and protection purposes, Apple has restricted the ability to create files in the root directory starting from macOS Big Sur. Even if you use sudo with root privileges, you cannot create files directly in the root directory. However, Apple has provided a workaround solution using Firmlinks, a link mechanism similar to Unix symbolic links, that can satisfy specific user requirements without compromising the system. Many online solutions require
Read More >>
➔ Resolved github REMOTE HOST IDENTIFICATION HAS CHANGED issue
| 2 minute read
How to fix the following issue when run the command pod update –verbose or pod install –verbose [!] Error installing XXX
[!] Failed to download ‘XXX’: [!] /usr/bin/git clone [email protected]:username/XXX.git /var/folders/z5/qp2m0vpj35zdzlk6sfhhnhwh0000gn/T/d20230401-33779-1wmy5bk –template= –single-branch –depth 1 –branch 1.4.4
Cloning into ‘/var/folders/z5/qp2m0vpj35zdzlk6sfhhnhwh0000gn/T/d20230401-33779-1wmy5bk’…
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
Read More >>
➔ CocoaPods Install
| 1 minute read
1、Check the gem version: gem --version 2、If the gem version is less than 2.6.14, it is recommended to upgrade to version 2.6.14 or higher: sudo gem update --system 3、Change the gem source: sudo gem --remove https://rubygems.org sudo gem --add http://gems.ruby-china.org 4、Use the Sudo-less install method to install CocoaPods: a)
Read More >>
➔ How to solve the Cocoapods CDN Error error when executing pod update or pod install.
| 1 minute read
When executing pod update or pod install with Cocoapods 1.8.5, the error message is as follows: Update all pods Updating local specs repositories [!] CDN: trunk URL couldn't be downloaded: https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/ Response: 400 Solution: Follow the official documentation to add a source to the Podfile: # Uncomment the next line to define a global platform for your project source 'https://github.com/CocoaPods/Specs.git' platform :ios, '10.0'
Read More >>
➔ macOS Catalina 10.15 have not enough disk warning when install Xcode 11
| 1 minute read
When updating Xcode, it may appear as if you have sufficient disk space, yet you still receive a not enough disk space warning. The most straightforward and effective solution is to free up space by deleting previous Xcode builds and unnecessary simulated devices. This can instantly free up several gigabytes of space. You can perform the following steps in Finder or Terminal to free up space: 1.Delete previous Xcode builds
Read More >>
➔ macOS Catalina 10.15 cannot be opened because the developer cannot be verified
| 1 minute read
Due to the update of the permission system and the default system shell from bash to zsh in macOS Catalina 10.15, it was found that starting MongoDB from the command line was not working as before. After running the command, an error message was directly reported: “Developer cannot be verified”, as shown in the figure below: Solution: Open System Preferences and go to Security & Privacy, click on Allow Anyway
Read More >>
➔ How to solve the problem of high CPU usage and frequent disk overheating after upgrading to macOS Catalina 10.15?
| 1 minute read
Today I upgraded my system to macOS Catalina 10.15 and found that the disk would heat up and the fan would start spinning loudly after using it for a while. Even if all applications were closed, this issue still occurred, and I suspected that the system was doing something in the background. I directly opened the system’s built-in Activity Monitor monitoring tool and found that a process called “photoanalysisd” was
Read More >>
➔ Contact US
| 1 minute read
You can contact us with email: [email protected]
➔ High concurrency in Web
| 2 minute read
Have you ever wondered what kind of request volume or how many users a high-concurrency web application can support? An application that can only handle several hundred or several thousand PVs per day is not considered a high-concurrency system. However, there is no clear definition online as to what constitutes high concurrency. Note that the term concurrency here does not refer to concurrency in programming. For information on concurrency and
Read More >>