标题: 看到一个很有趣的网站,教你如何给你的安卓手机上的应用保活
作者: #BHznJNs
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1230716
时间: 2025-11-28 11:25:47
摘要:
作者: #BHznJNs
板块: #开发调优
编号:
1230716帖子: https://linux.do/t/topic/1230716
时间: 2025-11-28 11:25:47
摘要:
网站地址:https://dontkillmyapp.com/
标题: 有人和我一样关注Yjangoyujianguo/Modevol吗?
作者: #MapleOvO
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230717
时间: 2025-11-28 11:26:37
摘要:
作者: #MapleOvO
板块: #搞七捻三
编号:
1230717帖子: https://linux.do/t/topic/1230717
时间: 2025-11-28 11:26:37
摘要:
最早是几年前看于建国博士的学习观系列视频入的坑的,当时真的被震住了。很多概念放到现在看都算超前但又说得通。后来他又出了世界模型的课程,正好赶上这几年 AI 一路狂飙,越看越感觉当年那套东西是真有远见。
标题: 《HelloGitHub》第 116 期
作者: #削微寒
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/1230723
时间: 2025-11-28 11:27:09
摘要:
作者: #削微寒
板块: #资源荟萃
编号:
1230723帖子: https://linux.do/t/topic/1230723
时间: 2025-11-28 11:27:09
摘要:
兴趣是最好的老师,HelloGitHub 让你对开源感兴趣!
简介
HelloGitHub 分享 GitHub 上有趣、入门级的开源项目。
github.com/521xueweihan/HelloGitHub
这里有实战项目、入门教程、黑科技、开源书籍、大厂开源项目等,涵盖多种编程语言 Python 、Java 、Go 、C/C++、Swift…让你在短时间内感受到开源的魅力,爱上开源!
以下为本期内容|每月 28 号更新
C 项目
1、sj.h:极简的 C 语言 JSON 解析库。这是一个轻量级的 C 语言 JSON 解析库,提供可靠的 JSON 遍历和基础解析功能。它仅 150 行代码、无外部依赖,采用零内存分配策略,直接在原数据上进行解析,速度快且无内存泄漏风险,适用于嵌入式、物联网和游戏开发等场景。
char *json_text = "{ \"x\": 10, \"y\": 20, \"w\": 30, \"h\": 40 }";
typedef struct { int x, y, w, h; } Rect;
bool eq(sj_Value val, char *s) {
size_t len = val.end - val.start;
return strlen(s) == len && !memcmp(s, val.start, len);
}
int main(void) {
Rect rect = {0};
sj_Reader r = sj_reader(json_text, strlen(json_text));
sj_Value obj = sj_read(&r);
sj_Value key, val;
while (sj_iter_object(&r, obj, &key, &val)) {
if (eq(key, "x")) { rect.x = atoi(val.start); }
if (eq(ke
标题: 有没有佬,给我点点star
作者: #狐狸
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/1230725
时间: 2025-11-28 11:27:36
摘要:
作者: #狐狸
板块: #资源荟萃
编号:
1230725帖子: https://linux.do/t/topic/1230725
时间: 2025-11-28 11:27:36
摘要:
gist.github.com
https://gist.github.com/maxscy/2da41b8558b279397b769253551ba056
index.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的个人主页</title>
<style>
/* 简单的样式设计 - 极简暗黑风 */
body {
margin: 0;
此文件已被截断。 显示原始文件
谢谢佬了
标题: 大龄基佬如何交友?
作者: #林森
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230732
时间: 2025-11-28 11:28:05
摘要:
作者: #林森
板块: #搞七捻三
编号:
1230732帖子: https://linux.do/t/topic/1230732
时间: 2025-11-28 11:28:05
摘要:
作为一个马上31的大龄基佬,现在基本没有任何朋友圈,想问下该如何交友?该如何走入新的恋爱关系?
标题: 我的chatgpt是不是出什么问题了
作者: #Aaron
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230742
时间: 2025-11-28 11:30:12
摘要:
作者: #Aaron
板块: #搞七捻三
编号:
1230742帖子: https://linux.do/t/topic/1230742
时间: 2025-11-28 11:30:12
摘要:
新建了话题页是这种结果 好奇为什么会这样
标题: 这个要咋弄啊
作者: #mjanddy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230747
时间: 2025-11-28 11:31:07
摘要:
作者: #mjanddy
板块: #搞七捻三
编号:
1230747帖子: https://linux.do/t/topic/1230747
时间: 2025-11-28 11:31:07
摘要:
佬们,这个升三级是必须的吗?要怎么获得
标题: 佬们出差补助标准多少
作者: #三不小超
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230748
时间: 2025-11-28 11:31:13
摘要:
作者: #三不小超
板块: #搞七捻三
编号:
1230748帖子: https://linux.do/t/topic/1230748
时间: 2025-11-28 11:31:13
摘要:
我公司出差补助一天70,环境恶劣地区120,酒店标准省会城市220 平台地市180。另外交通啥的都能报。想了解下佬们补助多少。
标题: 目前ai_studio的key 不支持 3.0 pro吗?
作者: #shawsong
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1230755
时间: 2025-11-28 11:32:10
摘要:
作者: #shawsong
板块: #开发调优
编号:
1230755帖子: https://linux.do/t/topic/1230755
时间: 2025-11-28 11:32:10
摘要:
尝试用以前调用2.5 pro的接口去调用3.0 pro, 名称换成 gemini-3-pro-preview 结果不成功. 找了半天也没找到什么原因. 用的是openai兼容接口 https://generativelanguage.googleapis.com/v1beta/openai
标题: 最懂二次元的开源文生图模型。
作者: #某人
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1230762
时间: 2025-11-28 11:33:02
摘要:
作者: #某人
板块: #前沿快讯
编号:
1230762帖子: https://linux.do/t/topic/1230762
时间: 2025-11-28 11:33:02
摘要:
【chenkin noob v0.1 最懂二次元的开源大模型震撼发布】 https://www.bilibili.com/video/BV1QfSuBqEvT/?share_source=copy_web&vd_source=fae8cf279c5499e6392d39449a7b4095
[!faq]+有没有大佬去试试
标题: cursor使用方法探讨
作者: #Yu Gu
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1230766
时间: 2025-11-28 11:33:41
摘要:
作者: #Yu Gu
板块: #开发调优
编号:
1230766帖子: https://linux.do/t/topic/1230766
时间: 2025-11-28 11:33:41
摘要:
佬友们好,我一直在用cursor进行开发,订阅的是Pro+ Plan 但是我使用的过程中只是用了agent模式,其他的功能没有使用过,开发环境是Ubuntu22.04 cursor可以接管终端做一些测试或debug,除此之外还有什么其他的好用的内容或功能吗?
标题: gemini网页和ais反代必须要win吗
作者: #谢谢不吃香菜
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1230776
时间: 2025-11-28 11:34:53
摘要:
作者: #谢谢不吃香菜
板块: #开发调优
编号:
1230776帖子: https://linux.do/t/topic/1230776
时间: 2025-11-28 11:34:53
摘要:
我有一个国外的服务器,linux,能反代吗
标题: 求助,什么时候才能吃上真正的丹东奶香草莓!
作者: #hucs -dev
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1230777
时间: 2025-11-28 11:35:02
摘要:
作者: #hucs -dev
板块: #搞七捻三
编号:
1230777帖子: https://linux.do/t/topic/1230777
时间: 2025-11-28 11:35:02
摘要:
1.去年还是前年在v2ex上一个人手里头一次吃到了丹东草莓,真香
2.今年想再买点死活找不到那个人了,佬友们有靠谱的、质量高的丹东草莓商家吗?抖音上最近疯狂推,硬是忍住了没下单购买