- 中国人很投机, 包括本人在部分情况下也是投机者. 总想不劳而获, 抄袭他人劳动成果. 想想我们学生时代的抄袭作弊之风盛行便可知... (然而为什么会这样)
- "土皇帝"情节, 因自己在某方面上比别人强, 听听粉丝的追捧, 就觉得自己不可一世, 比别人优越, 殊不知人外有人山外有山, 而且自己在其他方面也有不如他人的地方. (然而为什么会这样)
- 家长情节 总想要一个"家长"来管理一切, 把应该由自己解决的问题抛给别人"包办解决", 图一时之便. 久而久之结果就是并不了解你一切的"家长""包办解决"你的一切, 而你却失去了基本的思考解决问题能力, 看不到目标, 找不到方法, 只好任由"家长"摆布. 这种"爱"是现实的囚笼. (然而为什么会这样)
| Set-TimeZone -Name 'Eastern Standard Time' | |
| Set-Service -Name W32Time -StartupType Automatic | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer' -Name 'Enabled' -Value 1 -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\Config' -Name 'AnnounceFlags' -Value 0xA -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient' -Name 'Enabled' -Value 1 -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient' -Name 'SpecialPollInterval' -Value 300 -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\Parameters' -Name 'Type' -Value 'NTP' -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\Parameters' -Name 'NtpServer' -Value 'time.windows.com,0x8' -Force | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\Config' -Name 'MaxPosPhaseCorrection' -Value 1800 -Force | |
| Set-ItemProperty -Path 'HK |
⚠️ Disclaimer: This guide is provided solely for educational purposes. The creator assumes no responsibility for any damage, data loss, or other adverse effects that may occur as a result of following these instructions. Proceed entirely at your own risk!
Many users who have rooted their devices finds issues where system or third-party applications detect the root status and refuse to operate. This guide outlines a procedure to hide root detection on the majority of Android devices, specifically the ones running Noble ROM for Samsung S9/S9+/N9. The approach detailed here leverages KernelSU-Next in conjunction with SuSFS.
API endpoints used by the official Wuthering Waves launcher.
Most of the info was found here: Wuwa-Web-Request.
The rest I found myself by decrypting KRApp.conf (found at C:\Program Files\Wuthering Waves\<version>\Assets\KRApp.conf), which is encoded as base64(XOR(data, 0x63)). Decoding it reveals the full launcher JSON config, including the stable launcher-config endpoint and the app constants (appId, appKey, gameId) that make up the CDN path.
The URL structure follows a consistent pattern built from those constants:
<CDN_BASE>/<appId>_<appKey>/<gameId>/...
| #!/bin/bash -e | |
| # Stash the staged files if any. | |
| NEEDS_UNSTASH=0 | |
| if ! git diff --staged --exit-code >/dev/null; then | |
| echo -ne '\033[1;32m' | |
| echo -n 'Stashing the staged files' | |
| echo -e '\033[0m' | |
| git stash | |
| NEEDS_UNSTASH=1 |
On August 25, 2025 Google published a blog that starting in 2026, Android will require all apps to be registered by verified developers in order to be installed by users on certified Android devices. This applies to all apps installed from outside the Google PlayStore from either third part app stores like F-Droid, or directly from sites via browsers/file manager apps. Publishing apps on Google PlayStore already has had these same requirements since July 12, 2023. The verification requirements for all apps will engage for Brazil, Indonesia, Singapore and Thailand in September 2026 and engage globally in 2027 and beyond.
There has been lot of noise and backlash regarding the new requirements since then. Malware being deployed both outside and from PlayStore is a big issue and is obviously a cause for concern and a legitimate reason for how developer verification can help reduce it,
| Product Year Version Product Keys | |
| Visual Studio 2022 2021 17.x Professional: | |
| TD244-P4NB7-YQ6XK-Y8MMM-YWV2J | |
| Enterprise: | |
| VHF9H-NXBBB-638P6-6JHCY-88JWH | |
| Visual Studio 2019 2019 16.x Professional: | |
| NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y | |
| Enterprise: |
| from Crypto.Cipher import ARC4 | |
| from hashlib import sha1, md5 | |
| from random import randint | |
| from ecutils.core import Point, EllipticCurve | |
| from sys import argv | |
| KCHARS = "BCDFGHJKMPQRTVWXY2346789" | |
| SPK_ECKEY = { | |
| "a": 1, |
| @REM https://www.tachytelic.net/2019/01/clear-rdp-cache/ | |
| @echo off | |
| reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default" /va /f | |
| reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" /f | |
| reg add "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" | |
| del /ah %homepath%\documents\default.rdp |