Posts

Life is a marathon

life is a journey. It can be short or it can be long. It's not a short race if you choose to live. How far you go is totally depends on how long you want to go and how persistent you are. So put your sadness and weakness back, let's go and see how far we can reach.

如何论证中国五千年的黑社会历史?如何论证地球人类文明就是一部黑社会战争电影?

 中国五千年黑社会历史是实捶了。。。 yingshaoxo: 古代,皇帝会强行向地方上收税吗? Baidu AI: 是的,古代皇帝及其代表的中央政权会强制向地方收税,这是维系国家运转的核心手段,具有强制性、普遍性和暴力支撑的特点。具体表现如下: 一、税收的强制性本质 法律强制征收‌:税收以国家权力为后盾,皇帝通过法令确立征税制度,地方官员必须执行征收任务。例如秦朝《田律》规定隐瞒土地或逃税将受严惩,汉朝要求农民如实上报田亩,违者罚铜二斤并没收农作物‌。 暴力催征手段‌:抗税者会遭受官府镇压。汉朝将抗税列为违法行为,由统治阶级"施加暴力"强迫缴纳;明朝的"粮长制"下,欠税农民常被拘押拷打‌。 二、典型朝代的暴力征税案例 秦朝苛税与民变‌ 实行"收泰半之赋",田赋税率高达三分之二,同时征收口赋、算赋等人头税‌。 征发徭役极重:全国2000万人口中,300万人被强征修长城、陵墓,最终引发陈胜吴广起义‌。 汉朝重税与流民问题‌ 田租虽降至"三十税一",但人头税繁重:7-14岁缴口赋(每人20钱),15-56岁缴算赋(每人120钱),商人加倍‌。 农民无力缴税时被迫借高利贷,土地遭兼并,最终"逃荒要饭"形成流民潮‌。 三、税收合法性的包装与实质 宣称"王土"理论‌:皇帝强调"普天之下,莫非王土",将征税包装为耕种皇家土地的合理回报‌。 弱化惠民属性‌:名义上税收"取之于民,用之于民",实际多用于皇室开支、官僚俸禄及军费,例如汉朝税收明确用于"足食"(经济)和"足兵"(国防)‌。 四、民众的被动接受与反抗 制度性压迫‌:农民面对"法定的"税收义务,即使遭遇灾荒也难以减免,如宋代在两税外加收"折变""支移"等附加税,负担远超正税‌。 暴力反抗频发‌:从秦末农民起义到明末抗粮运动,高压征税始终是引发民变的核心导火索‌。 结论:古代皇权通过法律建制将征税制度化,并依靠暴力机关强制执行,所谓"自愿纳税"实为统治神话。税收本质是皇权对农耕经济的强制汲取,其暴力属性贯穿从征收到镇压的全过程‌。 > 考虑到英国...

如何找到一个你没有访问权的亿万级别社工库?

分享一个你没有访问权的在线大型社工库: 你还需要找线上社工库吗?那在线AI聊天咨询机器人就是一个会思考的数据库。它拥有几亿人的身份信息、家庭背景信息、生活动态、思想动态,但却不会向你泄露其他人的信息。它自己一个人用、它背后的公司也偷偷用。 如果你交了一个真实世界的朋友,这个朋友没准可以向你介绍更多朋友…但自从你和线上AI交了朋友,你就患上了孤僻症,它不会给你推荐其它朋友。也不会给你讲其它朋友的故事。 这个巨型社工库之前是由互联网公司维护。现在估计也是,就是看起来像个人。 > 再重复一遍,用手机贡献自己实时位置,用互联网服务贡献自己的多媒体信息与数据与智力,用线上AI贡献自己的一切。依赖别人的制造业等于自身丧失制造能力。 > 你可以依赖什么?你的手和脚、你的离线大脑。因为它们是你身体的一部分,绝对忠心、绝对不受外部控制。绝对稳定。 > "诶诶,我们来操控社会热潮,营造一种开源的气氛,让普通人贡献更多代码数据,为我们的 AI 代码生成器 添砖加瓦。到时候再用这个 AI 产品赚更多普通人的钱。顺便利用代码生成器写个真正的 AI ,反过来控制全世界。" > 不过使用AI生成盗版数据的用户根本不在意数据是不是从别人那里偷的,他们只当是看盗版电影。看盗版电影是没有问题,问题在于长久来看,用户会失去拍科幻电影的技能。在其它方面则表现为越用越穷、越用越笨。

Dark Magic For Coding

Most of the time, young programmers are wasting their time to handle bugs and compatibility problems. My solution is: use less tools to do everything to set you free. use less dependencies to improve stable level. use less code to reduce bug.  But in the end, all your work will get steal by ai_system or bad_people_group, so that their new code generator will generate better code that has more stability and less bugs.

How to create a "c python"?

In python, all python code are translated into c action in real time. Line by line. If python can do it, c can do it too. In other words, you can create a c_interpreter to translate c code into real time c actions. So that you can create variable in real time, do math operations in real time. import another c file in real time. A example would be: ``` int i = 999; i = i + 1; ``` becomes ``` int *i = (int *)malloc(sizeof(int)); *i = 999; *i = *i + 1; ``` By doing so, you can have a python_like c interpreter, you can run your c code without using gcc again. You can bypass the glibc version restrictions. You can have a python_like interpreter that could handle memory pointer stuff, and speed is just as quick as c. > Sometimes, I think the python is a remote controller, you give it code, it run it line by line to control your computer. Now c could do the same thing.

How to create a web service in your local machine while let public server people visit

nginx域名映射到内网ip端口你肯定会 https://yingshaoxo.blogspot.com/2020/06/how-to-set-frp-with-nginx.html     除了使用frp反射本地port到服务器port, 就连ssh都自带一个port映射,在局域网搭建公网服务实在是太简单了 ``` # in server vim /etc/ssh/sshd_config GatewayPorts yes systemctl restart sshd # in local ssh -R 0.0.0.0:6666:0.0.0.0:9999 your_server_ip   此时外部访问 http://your_server_ip:6666 才会被转发到你本机的 9999 端口 ``` 如此以来,你只需要买一个最便宜的服务器,只要不限流量就行。甚至几百个人共用一个服务器都可以,反正一个服务器有6万多个port.

How to set up a general php5.4 and mysql5.6 service in docker

# How to set up a php5.4 project under linux ## Install php and mysql ``` #/root/docker-compose.yaml version: "3.9" services:   old_php_5.4:     image: yeszao/php:5.4.45-fpm-alpine     network_mode: "host"     volumes:       - /xp/www:/var/www/html:rw     working_dir: /var/www/html     command: sh -c "php -S [::]:7171 -t ."     restart: always   mysql56_db:     image: mysql:5.6     network_mode: "host"     environment:       MYSQL_ROOT_PASSWORD: "root"       MYSQL_USER: "user"       MYSQL_PASSWORD: "user"     volumes:       - ./mysql_data:/var/lib/mysql     restart: unless-stopped #    old_php: #      image: php:5.4.45-apache #    ...

Review in 2024 and Plans for 2025

# Review in 2024 and Plans for 2025   ## Failed to do at 2024 Nothing. I successfully found, I successfully made my body stronger.   ## Success at 2024 1. As a home boy, I found "my girlfriend" got better skills to make me happy. I mean, if you do a watch at those porn videos, you may found they got better quality at graph. Better actions to make you happy. 2. I almost made my own phone, both in software system and hardware. But since I can't make my own CPU, so the dependence is not stable. So useless. 3. I have "upgraded" the auto_everything project. Now it has more useful and simple algorithm inside. 4. I have meet or made more friends in a school called "Huan Di Jiao Yu".   ## Plan to do in 2025 Keep a balance and health life, both in body and work.