clino's repos on GitHub
JavaScript · 8 人关注
avalon-uliweb-examples
avalon uliweb examples
Python · 7 人关注
angular-uliweb-examples
Angularjs developer guide example using uliweb
5 人关注
f1do.com
https://www.f1do.com
JavaScript · 5 人关注
gfwlist2pac
Python · 3 人关注
gitldapacl
git ldap acl (access control list with apache+mod_wsgi)
Python · 2 人关注
gitguidifftool
git gui difftool is a script using in git-gui,make it easy to use visual diff tool in git-gui.
Python · 0 人关注
apkutils
A library that gets infos from APK. (py2&3 compatible fork)
Python · 0 人关注
apollyon
Scripts for daily list maintenance
0 人关注
awesome-fabric
Hyperledger fabric resources
Python · 0 人关注
awesome-python
A curated list of awesome Python frameworks, libraries, software and resources
Python · 0 人关注
buildbot
Python-based continuous integration testing framework; send pull requests for your patches!
JavaScript · 0 人关注
cdnjs
Our goal is to operate this CDN in a peer reviewed fashion.
C · 0 人关注
ChinaDNS
Protect yourself against DNS poisoning in China.
Python · 0 人关注
ChinaDNS-Python
Protect yourself against DNS poisoning in China.
HTML · 0 人关注
codeinsight
CodeInsight: view and search with large scale source code
HTML · 0 人关注
gevent-tutorial
Gevent tutorial for the Working Python Developer
0 人关注
gfwlist
The one and only one gfwlist here
Python · 0 人关注
gfwlist2privoxy
Generate action file for privoxy from gfwlist, inspired by clowwindy's gfwlist and modified from it.
Python · 0 人关注
git-repo
https://gerrit.googlesource.com/git-repo/ fork
0 人关注
gitbug
0 人关注
gofound
GoFound GoLang Full text search go语言全文检索引擎,毫秒级查询。 使用使用http接口调用,集成Admin管理界面,任何系统都可以使用。
0 人关注
gofound-python
gofound-python 是gofound全文检索客户端
Python · 0 人关注
httpserver
A enhanced version of SimpleHTTPServer write with python
0 人关注
iview-admin
Vue 2.0 admin management system template based on iView
0 人关注
missing-semester-cn.github.io
the CS missing semester Chinese version
Python · 0 人关注
mmscope
Python · 0 人关注
my_turn
simple server/client working like turn-tcp(rfc6062). But it's not rfc6062 implementation!
Python · 0 人关注
node_in_uliweb_example
Python · 0 人关注
pingdata
JavaScript · 0 人关注
plugs
uliweb apps collcection project
clino

clino

V2EX 第 1368 号会员,加入于 2010-09-07 15:04:08 +08:00
12 G 68 S 79 B
用 codemirror 的时候如何动态加载某个语言的.js 文件?
JavaScript  •  clino  •  2019-07-18 08:12:32 AM  •  最后回复来自 clino
4
webpack 工程化和 vue 单文件组件开发例子项目
webpack  •  clino  •  2018-06-14 18:25:34 PM  •  最后回复来自 clino
2
容易写错和读错的字
分享发现  •  clino  •  2018-05-11 12:15:08 PM  •  最后回复来自 laoyur
32
给微信开发人员: 浏览信息时的一个建议
全球工单系统  •  clino  •  2018-02-08 09:23:41 AM  •  最后回复来自 clino
7
比特币的几个问题
Bitcoin  •  clino  •  2017-12-15 17:39:49 PM  •  最后回复来自 acess
29
clino 最近回复了
19 小时 31 分钟前
回复了 iorilu 创建的主题 程序员 有没有类似 mongodb 的本地轻量文档数据库呢
unqlite
类似于 sqlite 的 nosql 单文件数据库,单文件可以很大都能用
用 Cursor ,不会 css 的用 AI 能救命,直接给具体指令,生成什么看不懂也无所谓,能工作就行
可能还是会碰到疑难杂症,但是比没有 AI 辅助应该还是会好非常多
8 天前
回复了 defaw 创建的主题 程序员 一种不付费使用 cursor 的方式
其实我一直这么用,ctrl+k 反复局部迭代代码我觉得就很够了,用 token 数也比较可控
Android 的 code review 用的是 Gerrit ,不过使用起来和这几个差别较大,如果能接受也可以试试。
14 天前
回复了 BerniLin 创建的主题 程序员 cursor tab 要充钱才能用了
@mumbler 我刚完全只用 ctrl+k 完成了一个有点规模的小项目
14 天前
回复了 5261 创建的主题 Rust rust 大抵是病了,它担心大家太容易掌握了
@gimp 感谢提醒,不知道有这个规矩,下次如果要发这种应该弄个 gist 再在这里发链接之类的
14 天前
回复了 BerniLin 创建的主题 程序员 cursor tab 要充钱才能用了
我觉得 ctrl+k 最重要,我只用这个,完全不用 tab
14 天前
回复了 5261 创建的主题 Rust rust 大抵是病了,它担心大家太容易掌握了
让 AI 解释一下,不过我不会 rust ,看得还不是很懂,楼主看看有没有帮助

```
// 这是一个 Rust 语言中 Option 类型的 unwrap_or_else 方法实现
// 它用于在 Option 为 Some 时返回其值,为 None 时执行传入的闭包并返回其结果
// 这个函数的主要用途是提供一种安全的方式来处理可能为 None 的 Option 值,同时允许在 None 情况下执行自定义逻辑

// 为泛型类型 Option<T>实现方法
impl<T> Option<T> {
// 定义公共方法 unwrap_or_else ,接受一个闭包 f 作为参数
pub fn unwrap_or_else<F>(self, f: F) -> T
where
// 约束 F 必须是一个 FnOnce 闭包,且返回类型为 T
F: FnOnce() -> T
{
// 使用 match 匹配 self (当前 Option 实例)
match self {
// 如果是 Some(x),直接返回 x
Some(x) => x,
// 如果是 None ,执行闭包 f 并返回其结果
None => f(),
}
}
}

// 使用示例:
fn main() {
let some_value: Option<i32> = Some(42);
let none_value: Option<i32> = None;

// 当 Option 为 Some 时,直接返回值
let result1 = some_value.unwrap_or_else(|| {
println!("Some case");
0
});
println!("Result1: {}", result1); // 输出: 42

// 当 Option 为 None 时,执行闭包返回默认值
let result2 = none_value.unwrap_or_else(|| {
println!("None case");
0
});
println!("Result2: {}", result2); // 输出: 0
}
```
16 天前
回复了 kingpo 创建的主题 生活 天冷手脚冰凉有什么改善方法
增加肌肉量以后发热能力会提高,多运动提高血液循环能力
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2597 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 22ms · UTC 05:24 · PVG 13:24 · LAX 21:24 · JFK 00:24
Developed with CodeLauncher
♥ Do have faith in what you're doing.