Appearance
第56期 50 week share 2025-12-11
本周我读到有趣的文章
TIP
In Browser PostgreSQL Playground, no server, just client and pglite (postgresql wasm)
2、sj.h
TIP
Minimal C Language JSON Parsing Library.This is a lightweight C language JSON parsing library that provides reliable JSON traversal and basic parsing functions. It has only 150 lines of code and has no external dependencies
TIP
JavaScript Library for Automatically Compatible with Error JSON Format.This is a JavaScript library for fixing/parsing various error JSON formats. Unlike JSON.parse()
4、CS146S: The Modern Software Developer
TIP
拥抱 Cursor、Claude 等 AI 工具,提升软件开发效率与质量
TIP
WXPush - 基于 Cloudflare Workers 搭建的轻量级微信公众号模板消息推送服务
6、Texo
TIP
超轻量SOTA LaTeX公式识别模型,仅20M参数量,可在浏览器中运行。训练全流程代码开源,以便自学复现。
7、css
css
/* Default styles for extra-small devices (less than 576px) */
.container {
width: 100%;
padding: 16px;
}
/* Small devices (576px and up) */
@media (min-width: 576px) {
.container {
padding: 24px;
}
}
/* Medium devices (768px and up) */
@media (min-width: 768px) {
.container {
display: flex; /* Change to a flex layout on tablets/medium screens */
}
}
/* Large devices (992px and up) */
@media (min-width: 992px) {
.container {
max-width: 960px; /* Constrain width on large screens */
margin: 0 auto;
}
}