LOADING

加载过慢请开启缓存 浏览器默认开启

zmalの折腾笔记

总能在平凡的日子里发现无数温暖的惊喜

Android长按状态栏磁贴启动activity的方法

2025/6/12

首先需要定义这样的一个服务插件磁贴

<service
           android:name=".NoteTiles"
           android:exported="true"
           android:icon="@drawable/p3_122017500"
           android:label="通知开关"
           android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
           <intent-filter>
               <action android:name="android.service.quicksettings.action.QS_TILE" />
           </intent-filter>
       </service>

然后在你想要长按打开的 activity 中注册

<intent-filter>
    <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
阅读全文

快速将WinForm程序打包成单exe文件

2025/6/11

省流:Costura.Fody

阅读全文

finallssh离线激活

2025/5/11
FinalShell 离线激活码生成

离线激活码生成器

 #FinalShell
127.0.0.1 www.youtusoft.com
127.0.0.1 youtusoft.com
127.0.0.1 hostbuf.com
127.0.0.1 www.hostbuf.com
127.0.0.1 dkys.org
127.0.0.1 tcpspeed.com
127.0.0.1 www.wn1998.com
127.0.0.1 wn1998.com
127.0.0.1 pwlt.wn1998.com
127.0.0.1 backup.www.hostbuf.com
阅读全文

获取星铁抽卡记录链接

2025/4/13

PC

[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12; Invoke-Expression (New-Object Net.WebClient).DownloadString("https://gist.githubusercontent.com/Star-Rail-Station/2512df54c4f35d399cc9abbde665e8f0/raw/get_warp_link_cn.ps1?cachebust=srs")

Android

logcat -e https://webstatic
阅读全文

修复xbox录屏失效

2025/4/11

win r输入

regedit

导航到

计算机\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR

AppCaptureEnabled改为1
image
若无AppCaptureEnabled请右键单击该空间并选择New > DROWD (32-bit) Value。将其命名为AppCaptureEnabled

参考链接
https://zhuanlan.zhihu.com/p/689643604
https://ksh7.com/posts/windows-xbox-game-bar/index.html#%E4%BF%AE%E6%94%B9%E6%B3%A8%E5%86%8C%E8%A1%A8%E4%BF%AE%E5%A4%8D-xbox-game-bar
https://www.minitool.com/news/windows-11-xbox-game-bar-not-working.html

阅读全文

Linux 下常用的解压命令

2025/4/5

p7zip-fullunziptar 是 Linux 下常用的压缩与解压工具,以下是它们的常见用法整理。

🔧 安装命令

apt install -y p7zip-full unzip tar
阅读全文

Git仓库操作

2025/4/3

以下是 Git 常用仓库操作命令及示例文档:


1. 初始化仓库

git init
  • 说明:将当前目录初始化为 Git 仓库。
  • 示例
    mkdir my-project && cd my-project
    git init

阅读全文

让你的控制台变身彩虹乐园

2025/3/31

📜 彩色日志使用指南:让控制台变身彩虹乐园 🎨


🌈 概述

彩色日志通过 ANSI 转义码 + 颜文字系统,为枯燥的控制台信息赋予情感表达能力。本文档以 Node.js 场景为例,演示如何打造可爱又实用的日志系统。


阅读全文

所有大人最初都是孩子,但这很少有人记得

2025/3/31

SKY_20250328_071017_
SKY_20250328_071013_

阅读全文

在Linux系统上安装使用mihomo

2025/3/27
  1. 创建文件目录
mkdir -p mihomo
cd mihomo
  1. 下载可执行文件
    检查系统架构
uname -m
阅读全文
1 ... 2 3 4 ... 5
avatar
zmal

总能在平凡的日子里发现无数温暖的惊喜