分享个买房免费好工具,楼盘日照、噪音免费模拟计算
楼盘日照计算分析工具
楼盘日照计算分析工具
Author: OwnDing
Date: 2022-12-20
Back in March 2022, the battery on my Microsoft Surface Laptop — which I had been using for over three years — started to swell. Official repair costs were too high since the warranty had expired, and attempting a self-repair ran into the frustrating problem of stripped screws. All of this got me thinking about replacing the laptop. But then I thought: spending 7,000–8,000 RMB on a laptop that only lasts three years, and having to lug it around every day — it just didn’t seem worth it.
That’s when I remembered the iPad Pro’s famous tagline: “Your next computer is not a computer.” On impulse, I decided not to buy a laptop at all — I would use only the iPad Pro for work, study, and entertainment.
My day-to-day computer use is mainly document writing and software development. So I searched the App Store for suitable replacement apps, but nothing was satisfactory — even editing a complex Word document was a struggle, let alone writing code. I also looked at other people’s iPad/tablet productivity setups online, but they all had drawbacks: too expensive, or too inconvenient to use.
Then, at the end of March, I happened to come across a Spring Festival promotion from Tencent Lightweight Cloud: 4 cores, 8 GB RAM, 10 Mbps bandwidth, 100 GB storage — only 998 RMB for 3 years. I immediately decided to go with an iPad + cloud PC setup, treating the cloud PC as just another app.

iPad Pro connecting to a cloud PC via RD Client. Although the title says “goodbye PC,” what I’m really saying goodbye to is the physical computer in my hands — a cloud PC is still needed for complex work and study tasks. After using this setup for 9 months, I found it fully meets my needs for both productivity and entertainment, and most importantly, the cost is low. Even during extended business trips (about a week), there are no issues at all, and a tablet is so much easier to carry.
Without further ado — what do you need if you want to work and study using only an iPad or tablet?
An iPad or other tablet; a Bluetooth keyboard, mouse, and docking hub + a cloud PC (choose specs based on your needs, running Windows Server 2019). Yes, with just these items you can leave your bulky computer behind while still enjoying everything a tablet has to offer.
Both iPads and Android tablets can meet the needs of productivity and study. That said, a larger screen size is recommended.
Choose a cloud server provider based on your preference. It is recommended to buy a lightweight cloud server during major sale events such as Double 11, Double 12, or Chinese New Year, when discounts are the largest. For example, the Tencent Cloud Lighthouse server I purchased costs only 998 RMB for 3 years (Spring Festival promotion), and the 8 GB RAM configuration is more than enough for everyday office work.
You can also choose Tianyi Cloud PC, which offers larger bandwidth and is even suitable for watching movies on the cloud:

Tianyi Cloud PC pricing. If you buy a tablet for around 3,000 RMB and plan to use it for 3 years, the annual tablet cost is about 1,000 RMB; if you buy a cloud PC during a promotional period, the annual cost is around 600 RMB. That makes your total 3-year spend approximately 4,800 RMB — and you end up with both a capable computer and a tablet. Sounds like a great deal, right?
When connecting an iPad or other tablet to a cloud PC via Microsoft RD Client, the remote desktop port is exposed to the public internet, which inevitably introduces security risks. The following recommendations can help harden your cloud PC:
Use a strong password. Set a strong password for your cloud server.
Multi-factor authentication. Install the free version of Duo Security — remote login to the cloud PC will then require phone confirmation. Website: Multi-Factor Authentication & Single Sign-On

Phone-based second factor required at remote login.
Remote login authentication configured via Duo Security.
Authorizing login via the Duo mobile app. 3. Install IPBan (free). Exposing remote desktop ports to the internet makes the server vulnerable to brute-force attacks. IPBan automatically adds IP addresses with repeated failed login attempts to the firewall blocklist. Link: GitHub - DigitalRuby/IPBan: Since 2011, IPBan is the worlds most trusted, free security software to block hackers and botnets. With both Windows and Linux support, IPBan has your dedicated or cloud server protected. Upgrade to IPBan Pro today and get a discount. Learn more at ↓

IPBan GitHub homepage. The above three measures are foundational security recommendations. With these three in place, unauthorized logins to your cloud PC are extremely unlikely.
Other security hardening options — such as changing the remote desktop port or restricting login to specific IP addresses — are somewhat more complex for most users.
For developers or those learning to code, having your own server lets you set up an online development environment and write and debug code directly from the browser on an iPad or tablet.

Online coding and debugging. 2. Backend — Install JetBrains Projector (free)

IDEA online coding and debugging. If any of these ports are exposed to the public internet, pay close attention to security. Exposing ports publicly is not recommended.
At the current stage, apps on iPads or Android tablets alone cannot meet the productivity needs of most people — but paired with a cloud PC, the story changes entirely. You can truly leave your physical computer behind and go anywhere with just a tablet, whether it’s a quick outing or a week-long business trip. In a pinch, you can also log into the cloud PC from your phone to handle urgent tasks.

RD Client mobile app — for emergency use on your phone. For anyone with mobile productivity needs, this setup is simply unbeatable ;)
I previously built a lightweight GB28181 platform, but installing it required some familiarity with containers, which made the experience a bit inconvenient. So I decided to package it as a double-click-to-run application for end users. To achieve this, ZLMediaKit needs to be compiled on Windows.
This document explains how to compile ZLMediaKit on Windows 11.
During compilation following the official tutorial, I encountered several errors and found some parts of the documentation unclear. I felt it was necessary to write a supplementary guide.
Please follow the steps one by one.
Before starting the build, make sure the following software is installed in your development environment:
I performed the build on Windows 11 with VS2022. You do not need to open VS2022 during the build process — only PowerShell and the x64 Native Tools Command Prompt for VS 2022 are needed.
Open a command-line tool (CMD or PowerShell) and run the following commands to clone the repository and initialize submodules:
1 | # Clone the main repository |
The code I compiled is from the latest master branch as of 2026/3/1.
Note: The following is based on the ZLMediaKit official documentation for Windows compilation, with some modifications I made to ensure a successful build.
The following describes one way to compile ZLMediaKit using scoop + vcpkg.
scoop: A command-line package manager for Windowsvcpkg: A C++ library manager initiated by Microsoft, containing a large number of commonly used open-source librariesSince both tools are command-line based, they integrate very well into automated workflows. Highly recommended.
⚠️ Note
- All operations below must be performed in a PowerShell terminal unless otherwise specified.
Note: Simply run the commands below directly in PowerShell. Errors are rare in this step.
The following installs the dependency tools cmake and ninja (optional but recommended). Skip this step if they are already installed.
For full details, refer to the official documentation. The following lists only the relevant brief steps:
Set the SCOOP environment variable to configure the installation directory for scoop and the packages it manages:
1 | $env:SCOOP = 'C:\work\develop\scoop' |
Allow PowerShell script execution for the current user:
1 | Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser |
Install scoop:
1 | iwr -useb get.scoop.sh | iex |
Add the extras bucket to scoop:
1 | scoop bucket add extras |
Install cmake and ninja:
1 | scoop install cmake ninja |
💡 Tip: For convenience later, set
C:\work\develop\scoopas theSCOOPenvironment variable and appendC:\work\develop\scoop\shimsto thePATHenvironment variable.


The following installs the required dependency libraries, specifically: openssl and libsrtp. Other optional dependencies (e.g. ffmpeg) should also be installable, though they have not been tested yet.
For detailed vcpkg usage, refer to:
Download vcpkg, which includes various configuration scripts and build scripts for open-source libraries. Assume the download path is C:\work\develop:
1 | git clone https://github.com/microsoft/vcpkg |
Download the pre-built vcpkg package manager tool:
1 | .\vcpkg\bootstrap-vcpkg.bat -disableMetrics |
Build openssl:
1 | .\vcpkg\vcpkg.exe install --triplet=x64-windows-static openssl |
Build libsrtp (requires ENABLE_OPENSSL):
Edit C:\work\develop\vcpkg\ports\libsrtp\portfile.cmake and update vcpkg_configure_cmake to the following: (Note: the configuration below has been updated to match the current version)
1 | vcpkg_cmake_configure( |
Then build (official method):
1 | .\vcpkg\vcpkg.exe install --triplet=x64-windows-static libsrtp |
Or alternatively (the method I used later):
1 | .\vcpkg\vcpkg.exe install "libsrtp[openssl]:x64-windows-static" |
Note: I successfully compiled the program using method 1, but later discovered a WebRTC issue. After investigation, it appeared to be a compatibility problem between OpenSSL and libsrtp. I had originally built libsrtp using the official method, and the issue was resolved only after rebuilding libsrtp with the command above.
1 | # Uninstall first, then reinstall |
Open the VS2022 developer command prompt from the Start Menu (x64 Native Tools Command Prompt for VS 2022). The PowerShell-based x64 version may not be available by default — you can start with the cmd version and then run powershell to switch to PowerShell.


Search for OPENSSL_LIBRARIES in the file and replace the surrounding block with the following:
1 | # Check if openssl is installed |
The key change is to replace the block with the following snippet — leave the rest untouched (the exact location may vary between ZLMediaKit versions, so pay attention to where you apply the change):
1 | if(CMAKE_SYSTEM_NAME MATCHES "Linux" AND OPENSSL_USE_STATIC_LIBS) |
1 | # Run the following commands from the ZLMediaKit source root directory. |
After a successful build, a release directory will appear in the source root containing the compiled binaries.
Navigate to C:\work\develop\ZLMediaKit\release\windows\RelWithDebInfo and double-click MediaServer.exe to run it directly.

You only need to copy MediaServer.exe, MediaServer.pdb, and the www directory to another location to use the basic functionality.

Cause: A compatibility issue between OpenSSL and libsrtp. libsrtp needs to be rebuilt.
1 | # Uninstall first, then reinstall |
I hadn’t paid much attention to OpenClaw before, mainly because the API consumption is relatively high and costly. This time I received a free Unicom Coding Plan Pro along with a 2-core 4GB cloud server, so I decided to give it a try.
This article first covers how to install OpenClaw on an Ubuntu cloud server. Usage guides and further details will be written when time permits.
I am using a cloud server with a clean OS — no software pre-installed.
Installing OpenClaw is actually very simple. Run the following one-liner to install it:
1 | curl -fsSL https://openclaw.ai/install.sh | bash |
The installation script will automatically install Node, OpenClaw, and other dependencies. Select “Yes” for all prompts in the interface.
After installation, the Gateway will fail to start (don’t worry — once we complete the configuration below, we just need to restart the Gateway). At the end, the following information will appear on the screen:
1 | 🦞 OpenClaw 2026.2.26 (bc50708) — Your task has been queued; your dignity has been deprecated. |
At this point, you cannot access http://localhost:18789/#token=85xxxxxxxxxxxxd9c6b036328fe00d04fd3c98 normally.
No worries — just follow the configuration steps below.


Run the following command:
1 | apt install -y nginx |
If a selection prompt appears, simply confirm and proceed.
Navigate to /etc/nginx/, find the nginx.conf file, and update it as follows:
1 | user www-data; |
Save the file and run the following command:
1 | nginx -s reload |
Run the following commands:
1 | openclaw config set gateway.mode local |

If the console shows no failure messages, the Gateway has started successfully. After configuring the firewall, you can access the UI in your browser, for example: http://
At this point the UI may still show some errors — proceed to the next step.
Once you can access the UI, it is still not usable yet — you need to modify the OpenClaw configuration file located in the /root/.openclaw directory.
Below I provide the complete configuration that you can use directly. Replace the token, allowedOrigins, apiKey, and other values with your own settings. I am using the free Unicom Coding Plan.
1 | { |
After making your edits, first back up the original openclaw.json file, then replace it with the updated file and restart the Gateway:
1 | openclaw gateway restart |
Once started successfully, you can access the UI in your browser, for example: http://
Everything should now be working correctly in the UI!

Issue 1: Gateway start blocked: set gateway.mode=local (current: unset) or pass –allow-unconfigured
Solution:
1 | openclaw config set gateway.mode local |
Issue 2: origin not allowed (open the Control UI from the gateway host or allow it in gateway.controlUi.allowedOrigins)
Solution:
Modify the "gateway" section in openclaw.json, add the "controlUi" block, and restart the Gateway:
1 | "gateway": { |
联通副卡取消月租费用方法
使用银联卡订阅ChatGPT方法
小白使用 AI 制作长视频教程
只有一台MAc,如何部署openclaw等智能体
windows 平台上开箱即用的 GB28181轻量级平台
之前做了一个 GB28181的轻量平台,但是要想安装程序需要一点容器之类的操作经验,在使用上确实有点不太方便。因此我就想着把程序做成用户双击 直接使用的模式。 为了实现这个目的,需要在 windows 上编译 zlmediakit。
本文档介绍如何在 Windows 11 环境下编译 ZLMediaKit。
由于在按照官方教程编译时出现了几个错误,并且文档有些地方写的不清不楚的,我觉得有必要更新写一篇文档补充下。
请跟随步骤一步一步操作。
在开始编译之前,请确保你的开发环境已安装以下软件:
我进行编译时使用的是 Windows11系统,VS2022。 编译过程中无需打开 vs2022。只要 powershell 以及 x64 Native Tools Command Prompt for VS 2022。
打开命令行工具(CMD 或 PowerShell),执行以下命令克隆代码并初始化子模块:
1 | # 克隆主仓库 |
我当前编译的是 2026/3/1 日的最新 master 分支代码。
注意: 以下是 zlmediakit 官网关于 windows编译的内容,我对其中进行了部分修改保证编译能成功。
以下为基于 scoop + vcpkg 编译 ZLMediaKit 的一种方式。
scoop: Windows 命令行下使用的软件包安装管理工具vcpkg: 微软发起的 C++ 库管理器,其中有大量常用开源库由于可以在命令行下使用,可以非常方便的进行自动化集成,推荐大家试用。
⚠️ 注意
- 以下所有操作如无特殊说明均需在 PowerShell 命令行下进行
说明: 直接在 powershell 中执行下面的命令即可,该步骤中很少出错。
以下是为了安装依赖工具 cmake 和 ninja(可选,但建议安装),如已安装,可跳过。
具体可参考其官网说明,以下仅列出相关简要步骤:
**设置环境变量 SCOOP**,用于配置 scoop 的下载安装目录(包括其管理的软件包):
1 | $env:SCOOP = 'C:\work\develop\scoop' |
为当前用户设置允许执行 PowerShell 脚本:
1 | Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser |
安装 scoop:
1 | iwr -useb get.scoop.sh | iex |
为 scoop 添加 extras 软件仓库:
1 | scoop bucket add extras |
安装 cmake 及 ninja:
1 | scoop install cmake ninja |
💡 提示:为方便后续使用,需将
C:\work\develop\scoop设置到环境变量SCOOP中,将C:\work\develop\scoop\shims追加到环境变量PATH中。


以下是为了安装相关依赖库,具体包括:openssl 以及 libsrtp,其他可选依赖(如:ffmpeg)也应可安装,暂未测试。
vcpkg 具体使用可参考:
**下载 vcpkg**,其中包括各种配置脚本以及开源库的编译脚本,下载路径假设为 C:\work\develop:
1 | git clone https://github.com/microsoft/vcpkg |
下载预编译的 vcpkg 包管理工具:
1 | .\vcpkg\bootstrap-vcpkg.bat -disableMetrics |
编译 openssl:
1 | .\vcpkg\vcpkg.exe install --triplet=x64-windows-static openssl |
**编译 libsrtp**(需要 ENABLE_OPENSSL):
编辑 C:\work\develop\vcpkg\ports\libsrtp\portfile.cmake,修改 vcpkg_configure_cmake 为如下:(注意 下面配置修改成了当前版本的内容)
1 | vcpkg_cmake_configure( |
然后进行编译(官方方法):
1 | .\vcpkg\vcpkg.exe install --triplet=x64-windows-static libsrtp |
或者 (后期我使用的方法)
1 | .\vcpkg\vcpkg.exe install "libsrtp[openssl]:x64-windows-static" |
说明 : 我成功使用 1 步骤编译了 程序,但是程序在后面的使用中发现 webrtc 有问题,最后查找原因发现可能是 openssl 同 libsrtp 兼容的问题。我先是用的官方方法编译的 libsrtp ,后面使用上面的命令重新编译了 libsrtp 才正常。
1 | # 先卸载,再重新安装 |
从开始菜单中打开 VS2022 的开发者命令行模式(x64 Native Tools Command Prompt for VS 2022)。默认未找到基于 PowerShell 的 x64 位版本,可先使用 cmd 版本,然后执行 powershell 切换到 PowerShell。


在文件里搜索: OPENSSL_LIBRARIES ,将内容修改成下面的内容:
1 | # 查找 openssl 是否安装 |
主要是替换成下面的脚本,其它不动(每个zlm版本可能都不太一样,需要注意修改的地方):
1 | if(CMAKE_SYSTEM_NAME MATCHES "Linux" AND OPENSSL_USE_STATIC_LIBS) |
1 | # 在zlmediakit 源码根目录下执行下面的命令。执行前请确保下载了 zlm 的源码,并且执行了 git submodule update --init --recursive |
编译成功后,源码目录下多一个 release 目录,编译的程序在里面。
在 C:\work\develop\ZLMediaKit\release\windows\RelWithDebInfo 目录直接双击运行 MediaServer.exe 即可。

只要复制 MediaServer.exe , MediaServer.exe , www目录,到其它位置,就可以使用基本的功能。

原因:openssl 与 libsrtp 兼容有问题,需要重新编译libsrtp。
1 | # 先卸载,再重新安装 |