Enrique Mejías
@kiyov09
Followers
2K
Following
53K
Media
2K
Statuses
8K
Software Engineer | Living life with @aryj2288 | Rustacean 🦀 | Occasionally OCamler 🐫 | Arch, btw
probably inside nvim
Joined June 2011
@ptr_to_joel 1. Create a tmux session on a server and open nvim on it. 2. Tell all your devs to ssh into that server and attach to that tmux session. 3. You’re welcome.
2
0
161
@WarrenInTheBuff 😅😅😅. "1991: The Linux kernel is publicly announced on 25 August by the 21-year-old Finnish student Linus Benedict Torvalds.".
4
0
94
🦀 Useful method: skip/skip_while. - Creates an iterator that skips some items. - skip: Given `n`, skip at most `n` items. - skip_while: Given a predicate, skips items till evaluates to false. #rust #rustlang #programming #usefulmethod
5
11
68
🦀 Useful method: chain. - Takes two iterators and creates a new iterator over both in sequence. #rust #rustlang #programming
4
9
62
@anerdguynow I do it when the thing becomes a pain point. But I’ve seen the problem go beyond devs not creating them. They sometimes don’t even care about that stuff to the point of not using them to their advantage when someone else creates the script/tools.
5
0
62
🦀 Useful method: chunks . - From a slice, returns an iterator that produces slices of `chunk_size` len that don't overlap.- Last chunk could be smaller than `chunk_size` depending on the initial slice len.- Panics if `chunk_size` is 0. #rust #rustlang #programming #usefulmethod
3
8
47
@rustafariandev Agree. That’s why I hate the current discourse advocating for teaching high level languages, because the low-level ones make people quit.
9
0
45
Choosing Rust is not all about speed/performance. You also get:. - Super expressive type system. - Superior error management. - Awesome tooling.- Robust ecosystem. #rust #rustlang #programming.
2
6
41
🦀 Useful method: enumerate. - Creates an iterator that counts each iteration. - From an iterator that yields items A, enumerate produces a new one that yields (i, A) pairs, where i is the index and A the item. #rust #rustlang #programming #usefulmethod
3
1
37
@ml4funandprofit @typecraft_dev skill issue. I used Linux as my daily driver for 5 years and never had a problem that made me want to stop using it due to instability. In fact, I'm just about to get back to it.
3
0
39
@WarrenInTheBuff The best part is at the end. "And whenever I say JavaScript, I actually mean TypeScript. I’m not a savage after all.".
0
0
33
🦀 Useful method: repeat . - Receive an usize `n` and returns a new String resulting of repeating the original one `n` times. #rust #rustlang #programming #usefulmethod
4
2
32