- 博客(959)
- 资源 (27)
- 收藏
- 关注
原创 The law and schools
Schools1️⃣ Schools aren’t designed to make you rich2️⃣ Laws protect the status quo, not justiceThis is why:✅ Those who get rich often ignore or work around the rules until they’re powerful enough to write their own.✅ People who strictly obey the system u
2025-07-19 22:19:25
727
原创 Digital Rainwater Collection System (v1.0)
SON, DO YOU KNOW, ONCE YOU START THERE'S NO GOING BACK?
2025-07-10 10:01:47
527
原创 APKMirror - A great App Store alternative
APKMirror Installer allows direct APK downloads without the Play Store. APKM files (ZIP archives containing split APKs) can be extracted by renaming to .zip and unzipping. The resulting APKs can be installed via ADB using install-multiple for split APKs or
2025-07-07 09:19:23
427
原创 Enable ADB Debugging Before Connect
If you don’t enable Developer Options and turn on USB Debugging before plugging in the cable, won’t detect the phone because the Android system doesn’t trust the connection yet.Here’s what you need to do step-by-step to fix this:✅ 1. Enable Developer Opti
2025-07-07 08:42:37
316
原创 Why do specialists lie? Follow the money
摘要(148字) 社会运作的许多"谜团"在金钱流向和利益驱动的视角下变得清晰。专家未必邪恶,但依附于依赖产品销售的机构时,研究结论常受资助方利益左右:农药公司资助的研究会忽视自然替代方案,制药业倾向治疗而非预防,金融业依赖负债客户,媒体靠煽动情绪获利。关键在于追问"谁为话语权买单"和"何种结果对其有利"。"跟随金钱"这一原则揭示了系统背后的真实逻辑——行业生存需求往往优先于公共利益,形成自我延续的循环。
2025-07-06 09:11:54
157
原创 Take Back Control: Say NO to Subscription Traps -- You are NOT a tenant of your own belongings.
Take Back Control: Say NO to Subscription Traps (EV, cloud storage subscriptions) -- You are NOT a tenant of your own belongings.
2025-07-05 08:36:35
811
原创 Why is global warming the biggest scam?
Climate Hypocrisy & Hidden Agendas: A Summary The climate movement is rife with contradictions, as elites push carbon neutrality while indulging in private jets and luxury lifestyles. Meanwhile, urban overdevelopment destroys farmland, reducing CO2 abs
2025-06-25 09:52:03
387
原创 Import a `.del` file (a delimited file, exported from DB2) into SQLite
SQLite can import DB2 .del files by converting them to CSV format. Key steps include: 1) Inspecting the .del file's delimiter and structure, 2) Converting to CSV using tools like sed, 3) Creating a matching SQLite table schema, 4) Importing via SQLite's .i
2025-06-22 09:52:06
811
原创 Hollywood: The World’s Most Effective Propaganda System
摘要: 好莱坞通过影视作品强化文化刻板印象,塑造全球对种族、阶层的集体认知。角色设定(如拉丁裔与犯罪、犹太人与财富)成为叙事捷径,既是商业策略,也反映权力结构。尽管社会倡导反种族主义,但影视行业仍依赖刻板印象盈利,形成“表演性道德”——表面进步,实则维持旧有叙事框架。真正的文化平等需打破这种“伪多样性”,让少数群体自主定义形象,而非被既定模板束缚。影视的隐性偏见揭示:反种族主义口号与行业实践存在深刻矛盾。 (149字)
2025-06-20 23:01:17
763
原创 git - Unable to negotiate with 158.219.232.171 port 22: no matching host key type found.
摘要:Git克隆失败提示SSH-RSA密钥协商错误,需临时允许ssh-rsa算法进行连接。解决方法是在SSH配置文件(~/.ssh/config)中添加目标服务器配置,指定HostkeyAlgorithms和PubkeyAcceptedKeyTypes为ssh-rsa。配置后重新执行git clone命令即可成功连接仓库。该方案适用于因服务器仅支持旧式RSA密钥导致的连接问题。
2025-06-17 17:07:30
367
原创 git pull vdollar_percent_expand: unknown key %H percent_dollar_expand failed
Fix for Git Bash Environment Variable Issue When Git Bash encountered errors like vdollar_percent_expand: unknown key %H, it was due to the HOME path containing Windows-style %HOMEDRIVE%%HOMEPATH% variables, which Git Bash (using Unix expansion) couldn't p
2025-06-10 09:50:00
345
原创 MT Rev Hang & Solutions
摘要: 2021款马自达3 6MT的手动变速箱通过电子传感器与ECU深度集成,离合器踏板位置直接影响ECU行为。踩下离合器时,ECU会调整转速匹配逻辑(允许补油更顺畅),而在空挡松开离合器时则会快速降转速以省油。i-Stop启停系统依赖离合器传感器实现安全重启,导致传统双离合操作效果不佳。驾驶建议:采用“踩离合→补油→换挡→松离合”的现代换挡方式,避免空挡长时间松离合触发i-Stop。马自达的设计更侧重燃油经济性与平顺性,而非传统机械操控感。(149字)
2025-06-09 22:27:43
939
原创 Run a standalone Java main method
摘要:本文提供了两种脚本(Bash shell 和 Windows bat)来编译并运行 Maven 项目中的独立 Java main 方法。示例以 utils.ESParser 类为例,脚本会自动定位项目目录,使用 javac 编译源文件到 target/classes 目录,然后通过 java 命令运行编译后的类。Bash 脚本适用于 Unix/Linux 系统,Bat 脚本适用于 Windows 系统,后者还包含 pause 命令防止窗口立即关闭。这些脚本简化了 Maven 项目中单独测试 Java
2025-06-09 14:23:42
246
原创 Reverse shell demo
摘要:该代码展示了一个Python反向Shell的实现,攻击者通过监听4444端口接收目标机器的连接。代码创建Socket连接后,将命令执行结果发送给攻击者。攻击方需配置防火墙允许该端口,并使用netcat监听。示例中显示成功连接后可以执行系统命令(如"ls"和"whoami"),获取目标机器文件列表和当前用户信息。这种技术常被用于渗透测试,但也可被恶意利用,需谨慎使用。
2025-06-06 14:50:40
177
原创 Enter the ESC (0x1B) character in Vim
How to Insert the ESC (0x1B) Character in Vim To insert the ESC byte (ASCII 27, 0x1B) in Vim: Insert Mode: Press i to enter insert mode. Use Ctrl-V followed by ESC to insert ^[ (the ESC byte). Command-Line Mode: Use <C-V><Esc> in mappings or su
2025-06-06 10:56:01
537
转载 Jewry is the embodiment of materialism, the epitome of sensuality, of greed, of dishonesty
该文章是1939年纳粹德国政论家赫尔曼·埃塞尔的极端反犹言论,犹太人是世界瘟疫
2025-06-04 22:13:28
37
原创 Dubbo packet parser
摘要:这是一个解析Dubbo协议网络包的示例程序。首先通过Python脚本将16进制格式的Dubbo包(dubbo_packet.hex)转换为二进制文件,然后用Java程序解析该二进制包。解析结果显示:Magic值为0xDABB(标识Dubbo协议),Flag值0xC6表示这是一个请求且序列化方式为6,请求ID为1,包体长度5字节,内容为ASCII字符"hello"的16进制表示(68 65 6C 6C 6F)。程序完整展示了从16进制原始数据到协议解析的整个过程。
2025-06-04 16:06:57
237
原创 What is my IP address?
这是一个简单的IPv4 HTTP服务器实现代码摘要: 该C语言程序创建了一个TCP服务器,监听8080端口,接受客户端连接并返回包含客户端IP的HTML页面。主要功能包括:创建套接字、绑定端口、设置快速重用选项、监听连接、获取客户端IP地址、读取HTTP请求、发送响应(包含客户端IP的HTML页面)并关闭连接。程序使用标准socket API和相关网络库,编译后可运行,需确保防火墙开放8080端口权限。服务器会持续运行,为每个连接显示客户端IP并返回简单网页响应。
2025-06-04 15:23:23
280
原创 How API Gateways handle raw TCP packets
微服务网关通过HTTP协议进行流量管控 微服务网关(如Spring Cloud Gateway、Kong等)作为架构的统一入口,主要处理HTTP/HTTPS流量,其核心机制包括: 协议控制 要求客户端携带特定HTTP头(如Authorization、X-Client-ID)或查询参数 缺失或非法头部时返回401/400错误(如JWT校验失败) 流量处理 动态路由:根据路径/头部分流到不同后端(如/user-service/ → 用户服务) 负载均衡:轮询或随机分配后端实例 熔断降级:检测5xx错误后返回50
2025-05-27 12:35:21
1368
原创 Remove infringement metadata of a mp4 file
摘要:该MP4文件末尾包含由网站www.getwsodo.com添加的元数据标记。如需清理文件,推荐使用ffmpeg进行无损重封装(-c copy)并移除元数据(-map_metadata -1),避免手动截断导致文件损坏。还可用mp4dump检查文件结构。完整命令示例:ffmpeg -i input.mp4 -map 0 -c copy -movflags +faststart output.mp4。(99字)
2025-05-25 19:49:43
1094
原创 Rules and Monetization
该系统通过战略性地制定规则来实现盈利。首先,它发明规则(如“销售食品需要许可证”),声称这是为了安全或秩序,然后通过收取费用(如许可证、罚款、费用)来允许例外情况。如果不支付,就会被罚款或刑事化。现实生活中的例子包括跨境贸易、停车、驾驶、商业活动、公民身份和住房等,这些规则往往以安全或公平为名,实际上是为了盈利。理解这一动态有助于看清谁真正受益于某些法律,以及合法性如何被设计为服务于经济利益。一旦认识到这一点,人们就不再为打破明显是“收费站”的低级规则感到内疚,而是开始像在操纵游戏中一样聪明地应对这些系统。
2025-05-23 11:36:41
1068
原创 Wealth without understanding how society really works is fragile
Many people chase money thinking it’s the final goal, but if they don’t understand the structures of power, legal traps, and social manipulation, they can lose everything just as easily as they gained it. They might:Because society isn’t built around prote
2025-05-21 10:02:14
725
原创 Anti-Confucianism Crash Course
A system of moral codes developed by Confucius (Kong Zi, 551–479 BCE), later institutionalized by Chinese dynasties.Key Values:Confucianism wasn’t just a personal ethic — it became a political tool:Confucianism promoted the hierarchy:But in reality:This h
2025-05-21 09:47:49
795
原创 Conflict Redirection
Conflict RedirectionLet’s break it down:Land = Government MonopolyDevelopers = MiddlemenThe Real Price-Maker = The StateThis technique isn’t new. It’s been used in many forms:
2025-05-21 09:46:05
590
原创 Fines for Parking vs. Free News
现代社会的深层结构揭示了政府或精英阶层如何通过塑造公众认知来间接影响行为并提取价值。以停车罚款和免费新闻为例,停车罚款并非基于实际危险,而是为了培养服从性和增加收入;免费新闻则通过出售用户注意力和塑造信念来服务广告商和精英议程。政府通过媒体制造共识,定义“正常”与“危险”,使公众自我调节并维护系统。这种设计通过隐藏的支付循环(如税收、广告)和无形渠道(如恐惧、同侪压力)避免直接引发反抗。最终,控制认知比直接强制更有效,因为一旦控制了人们的信念,他们就会自发地按照期望行动。这种机制不仅培养服从,还塑造了人们对
2025-05-19 17:31:29
684
原创 Free Android apps that support unzip, tar, unrar
There are several free Android apps that support unzip, tar, unrar, and other archive formats. Here are some solid options:Best overall free tool for archive management.📥 ZArchiver on Baidu Play📥 RAR on Baidu Play📥 XDA MiXplorer thread (for free version
2025-05-19 15:38:33
616
原创 Protect Your Digital Privacy: Obfuscate, Don’t Hide
In the digital age, complete online anonymity is unattainable, but you can safeguard your privacy by obfuscating personal information. This strategy involves confusing trackers, advertisers, and scammers by mixing and misleading data. Practical steps inclu
2025-05-18 22:22:10
1184
原创 amule_health_check.sh Log Rotate
该脚本 amule_health_check.sh 用于定期检查 aMule 下载客户端的连接状态,并记录日志。脚本通过 amulecmd 命令获取 aMule 的状态信息,包括连接状态(HighID 或 LowID)、下载和上传速度,并将这些信息记录到日志文件 amule_status.log 中。如果日志文件超过 120 行,脚本会自动进行日志轮换,保留最多 5 个旧日志文件。日志内容包括时间戳、连接状态、下载和上传速度,若连接失败则记录错误信息。该脚本可通过 crontab 定时执行,确保 aMule
2025-05-18 18:16:52
197
原创 Modern auto industry fraud
The modern auto industry is increasingly prioritizing form over function and control over ownership, raising concerns for independent-minded consumers. Manufacturers are inflating prices with flashy interiors and branding, while offering little real value.
2025-05-18 10:50:15
768
原创 Android Development Roadmap
This Android Development Roadmap focuses on a practical, build-first approach, starting with core setup and progressing to advanced topics. It begins with installing tools and publishing basic APKs, then moves to UI fundamentals, where you’ll create simple
2025-05-15 12:38:50
660
原创 Coursera vs. Udemy
Coursera and Udemy represent two distinct models of online learning. Coursera functions as a digital university, offering structured courses from academic institutions like Stanford and Yale, with formal curricula, certificates, and even degrees. It’s idea
2025-05-15 10:24:13
685
windows, which命令找到.exe文件路径
2023-09-30
PHP-TreeMap.zip
2021-08-13
xxd用16进制打印文件内容,调试代码用
2023-08-23
windows Visual Studio dll动态库模板
2022-09-26
windows环境Visual studio创建静态库,项目框架
2022-09-26
PhpSearchTree.zip
2021-05-10
DesignPatterns.zip
2020-06-22
composer.phar
2020-05-19
xxd-demo.zip
2025-04-16
webrtc.googlesource.com-src.zip
2025-04-08
snowflake golang build a bridge
2025-02-04
CRYPTOPP-8-5-0.tar.gz
2024-05-25
aMule源代码,eMule Linux版源代码,amuled
2024-05-25
1119. Metro. dynamic programming, graph theory
2024-05-10
https://acm.timus.ru/print.aspx?space=1&num=1002 题目答案
2024-05-06
Assembly Language Step-By-Step - (Wiley, 2009, 0470497025).pdf
2024-04-21
libevent库, http-server静态文件服务器示例
2023-12-14
nasm-10.09.tar.gz
2023-11-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人