Trending

#rustc

Latest posts tagged with #rustc on Bluesky

Latest Top
Trending

Posts tagged #rustc

#ThreeGoodThings #3GoodThings

+ #AdventOfCode mit #RustC angefangen
+ Hörbuch
+ In der Vorlesung gewesen

2 0 0 0
A snippet of code from Neovide showing the recursion limit set to 2 to the 14th power (or 16,384).

A snippet of code from Neovide showing the recursion limit set to 2 to the 14th power (or 16,384).

yeah I'm breaking #rustc so what?

3 0 1 1

me: “I’ll just make a quick change and rerun it.”
rustc: “A quick what now?”

[10 minutes later]
me: sipping coffee, watching rustc like it’s a sourdough starter...

#rustlang #programminghumor #devmemes #rustacean #compiletime #softwareengineering #rustdev #developerlife #techhumor #rustc

3 0 1 0
Post image

[Перевод] «Почему компилятор Rust такой медленный?» Я потратил месяц на создание веб-сайта в Docker и теперь гото...

#docker #профилирование #трассировка #компиляция #rustc

Origin | Interest | Match

1 0 0 0
let a = 1; let b = 2; let (a, b) = (b, a); println!("{}, {}",a,b); //output: 2, 1

let a = 1; let b = 2; let (a, b) = (b, a); println!("{}, {}",a,b); //output: 2, 1

🔄 You can swap two values with creating a temp variable!

```rust
let a = 1;
let b = 2;
let (a, b) = (b, a);
println!("{}, {}",a,b);
//output: 2, 1
```
#Rust30by30 #Rustc #Rustlang #Day1

0 0 1 0
Post image

#rustc blows up completely when replacing a source file under ~/.cargo/registry/src with random data. It really should do better. This is not appropriate way to signal memory corruption, shouldn’t memory safety take care of this? :-) #rust #rustlang

0 0 1 0