Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@TUGOhost
TUGOhost / HK_card.md
Created December 28, 2025 03:49
中国大陆居民去香港办理香港银行卡攻略汇总
银行 是否可以线上申请 需提供的主要材料 账户激活需求 优点/特色
汇丰香港(HSBC HK) ✔可通过App提交申请 - 有效的大陆身份证/护照
- 港澳通行证(有效期≥6个月)
- 出入境记录(可通过APP上传)
- 地址证明(可能需要)
需要在香港使用APP完成GPS定位验证(激活账户)(HSBC香港) 全球网络广,国际转账服务强;支持多币种;品牌信誉高
中国银行(香港)BOC HK 线上教程 - 有效大陆身份证
- 港澳通行证/出入境记录
- 联系地址/住址证明(视银行要求)
可能需要补签名 与内地中银系统联通便捷;跨境汇款人民币方便
ZA Bank(众安银行) - 年满18岁- 有效的大陆身份证- 大陆手机号(含漫游接收短信) - 有效出入境记录- 有时需绑定内地银行卡作身份验证 APP开户;无需分行 支持多货币账户;无最低结余;APP开户块(最快几
@TUGOhost
TUGOhost / powershell_bash.md
Created July 31, 2025 02:56
powershell_bash.md

check file sha256 value

bash:

sha256sum file

powershell:

certutil -hashfile file SHA256
@TUGOhost
TUGOhost / configuration.nix
Created August 19, 2024 08:53 — forked from kborling/configuration.nix
NixOS Configuration (Sway/Wayland Enabled)
# 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 = ''
@TUGOhost
TUGOhost / change_rom.md
Created January 3, 2024 06:19
changeRom

change_rom

打印动态注册

  1. Aosp10/art/runtime/jni/jni_internal.cc

      static jint RegisterNatives(JNIEnv* env,
                                  jclass java_class,
                                  const JNINativeMethod* methods,
@TUGOhost
TUGOhost / enc_str.cc
Created May 4, 2023 07:13 — forked from yujincheng08/enc_str.cc
Compile time encrypt string
#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() {
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
@TUGOhost
TUGOhost / anti-anti-frida.ts
Created September 8, 2022 05:30
anti anti-frida
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];