| 银行 | 是否可以线上申请 | 需提供的主要材料 | 账户激活需求 | 优点/特色 |
|---|---|---|---|---|
| 汇丰香港(HSBC HK) | ✔可通过App提交申请 | - 有效的大陆身份证/护照 - 港澳通行证(有效期≥6个月) - 出入境记录(可通过APP上传) - 地址证明(可能需要) |
需要在香港使用APP完成GPS定位验证(激活账户)(HSBC香港) | 全球网络广,国际转账服务强;支持多币种;品牌信誉高 |
| 中国银行(香港)BOC HK | 线上教程 | - 有效大陆身份证 - 港澳通行证/出入境记录 - 联系地址/住址证明(视银行要求) |
可能需要补签名 | 与内地中银系统联通便捷;跨境汇款人民币方便 |
| ZA Bank(众安银行) | ✔ | - 年满18岁- 有效的大陆身份证- 大陆手机号(含漫游接收短信) - 有效出入境记录- 有时需绑定内地银行卡作身份验证 | APP开户;无需分行 | 支持多货币账户;无最低结余;APP开户块(最快几 |
check file sha256 value
bash:
sha256sum filepowershell:
certutil -hashfile file SHA256
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page | |
| # and in the NixOS manual (accessible by running ‘nixos-help’). | |
| { config, pkgs, ... }: | |
| { | |
| nix = { | |
| package = pkgs.nixUnstable; | |
| extraOptions = '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "enc_str.h" | |
| #include <cstdio> | |
| static_assert(next_prime<next_prime<4>> == next_prime<4> && next_prime<4> == 5, "??"); | |
| static constexpr auto j = "I love vvb2060 and she's my wife."_senc; | |
| static constexpr auto k = ".."_senc; | |
| static constexpr auto l = j + k; | |
| int main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows10下编译LLVM与Clang | |
| 1、下载安装CMake | |
| 2、下载安装Visual studio,按照C++ Desktop开发进行下载相关配置 | |
| 3、下载llvm与clang对应的版本到本地,整体目录如下: | |
| Mode LastWriteTime Length Name | |
| ---- ------------- ------ ---- | |
| d---- 2023/3/20 13:55 clang | |
| d---- 2023/3/20 13:55 llvm-5.0.2.src | |
| 4、命令行下:运行 | |
| >mkdir build && cmake.exe -S .\llvm-5.0.2.src\ -B .\build\ -DLLVM_ENABLE_PROJECTS=clang -DLLVM_TARGETS_TO_BUILD=X86 -Thost=x64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function antiAntiFrida() { | |
| var strstr = Module.findExportByName(null, "strstr"); | |
| if (null !== strstr) { | |
| Interceptor.attach(strstr, { | |
| onEnter: function (args) { | |
| this.frida = Boolean(0); | |
| this.haystack = args[0]; | |
| this.needle = args[1]; |