【Rust日报】Rust中臭名昭著的Pin

2024-07-02 15:39:56 浏览数 (1)

Rust中臭名昭著的Pin

Pin非常讨人厌,这篇文章对它做了一些思考。但不要指望给出去掉Pin的解决方案。

https://medium.com/@adetaylor/thoughts-on-pin-3092e043eb19

小编观点,Pin这套东西吓退了很多年轻人。

Poro - 一个新的号称类似于Pytorch的Rust ML框架

代码语言:javascript复制
use Poro::tensor::Tensor;
use ndarray::prelude::*;

fn main() {
    let a = Tensor::ones(Shape::new(vec![2, 2]));
    let b = Tensor::zeroes(Shape::new(vec![2, 2]));
    let c = a   b;
    let result = c.item();
    assert!(result == arr2(&[[1.0, 1.0], [1.0, 1.0]]).into_dyn());
}

不过还在非常早期,可用于学习目的。

https://github.com/TuckerBMorgan/poro

godot-rust 发布到 crates.io 了

说明基本可用了。2024会继续完善。

https://godot-rust.github.io/dev/june-2024-update/

Yazelix - 有文件树的 Helix

终于来了,需要先安装 yazi, zellij 和 helix。然后再用下面这个配置文件

https://github.com/luccahuguet/zellij

就可以实现这样的效果:

--

0 人点赞