Tullio Facchinetti
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • ATOM Feed
  • Daily Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Display

Filter untagged links
page 1 / 2
30 results tagged rust  ✕
Tiemoko Ballo https://tiemoko.com/blog/blue-team-rust/
Sun 02 Aug 2020 11:44:55 AM CEST
QRCode
article programming rust
List of Rust libraries/crates - Command line utilities https://lib.rs/command-line-utilities
Mon 22 Jun 2020 10:57:33 PM CEST
QRCode

Applications to run at the command line.

#cli-app article collection list opensource rust software
Why the developers who use Rust love it so much - Stack Overflow Blog https://stackoverflow.blog/2020/06/05/why-the-developers-who-use-rust-love-it-so-much/
Sun 07 Jun 2020 08:29:35 AM CEST
QRCode

Here’s why Rust gets so much love, straight from the Rustaceans themselves.

article programming rust
C++ Is Faster and Safer Than Rust: Benchmarked by Yandex https://www.viva64.com/en/b/0733/
Sun 10 May 2020 03:58:16 PM CEST
QRCode

Spoiler: C++ is not faster or slower – that's not the point, actually. This article continues our good tradition of busting myths about the Rust language shared by some big-name Russian companies.

article benchmark c++ comparison critics rust
Impressions of Rust as a Swift Developer: Memory Management https://blog.spencerkohan.com/impressions-of-rust-as-a-swift-developer-2/
Wed 11 Mar 2020 05:16:39 PM CET
QRCode

Like many developers, I have been interested in Rust for quite some time. Not only because it appears in so many headlines on Hacker News, or because of the novel approach the language takes to safety and performance, but also because people seem to talk about it with a particular sense of love and admiration. On top of that, Rust is of particular interest to me because it shares some of the same goals and features of my favorite go-to language: Swift. Since I've recently taken the time to do try out Rust in some small personal projects, I wanted to take a little time to document my impressions of the language, especially in how it compares to Swift.

article programming rust
A half-hour to learn Rust https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/
Sat 29 Feb 2020 09:20:36 PM CET
QRCode

In order to increase fluency in a programming language, one has to read a lot of it. But how can you read a lot of it if you don't know what it means?
In this article, instead of focusing on one or two concepts, I'll try to go through as many Rust snippets as I can, and explain what the keywords and symbols they contain mean.

Ready? Go!

programming rust tutorial
Filtering Duplicates on the Command Line: 30x Faster than sort|uniq https://medium.com/adobetech/filtering-duplicates-on-the-command-line-30x-faster-than-sort-uniq-96ca5f7b4277
Sat 29 Feb 2020 10:50:51 AM CET
QRCode
article programming rust
Why is Rust the Most Loved Programming Language? https://matklad.github.io/2020/02/14/why-rust-is-loved.html
Sat 22 Feb 2020 05:41:05 PM CET
QRCode

Some hints: Naming Convention; Keyword First Syntax; Type Last Syntax; No Dangling Else; Everything Is An Expression, Including Blocks; etc.

article programming rust
List of Rust books https://github.com/sger/RustBooks/blob/master/README.md
Sun 16 Feb 2020 05:24:34 PM CET
QRCode
book collection list programming reading resources rust
Battle other Rust programmers using your Rust knowledge! https://rustbattle.net/battle/straight-finch-8-e4f4
Sun 16 Feb 2020 04:37:26 PM CET
QRCode

Learn Rust tricks and test your knowledge at the same time!

educational games online programming rust
“Rust is the future of systems programming, C is the new Assembly”: Intel principal engineer, Josh Triplett https://hub.packtpub.com/rust-is-the-future-of-systems-programming-c-is-the-new-assembly-intel-principal-engineer-josh-triplett/
Thu 29 Aug 2019 10:28:51 AM CEST
QRCode

At Open Source Technology Summit (OSTS) 2019, Josh Triplett, a Principal Engineer at Intel gave an insight into what Intel is contributing to bring the most loved language, Rust to full parity with C.

article c programming rust story
Speedy Desktop Apps With GTK and Rust | Nora Codes https://nora.codes/tutorial/speedy-desktop-apps-with-gtk-and-rust/
Sat 06 Jul 2019 08:03:54 PM CEST
QRCode

The web platform is the delivery mechanism of choice for a ton of software these days, either through the web browser itself or through Electron, but that doesn’t mean there isn’t a place for a good old fashioned straight-up desktop application in the picture.

Fortunately, it’s easier than ever to write a usable, pretty, and performant desktop app, using my language of choice (Rust) and the wildly successful cross-platform GUI framework GTK.

GUI prototyped using Glade.

article blog gtk gui programming rust
Rust is not a good C replacement | Drew DeVault’s Blog https://drewdevault.com/2019/03/25/Rust-is-not-a-good-C-replacement.html
Wed 03 Jul 2019 06:42:39 PM CEST
QRCode

I have a saying that summarizes my opinion of Rust compared to Go: “Go is the result of C programmers designing a new programming language, and Rust is the result of C++ programmers designing a new programming language”. This isn’t just a metaphor - Go was designed by plan9 alumni, an operating system written in C and the source of inspiration for many of Go’s features, and Rust was designed by the folks at Mozilla - whose flagship product is one of the largest C++ codebases in the world.

article c comparison programming rust
Shell Completions in Pure Rust | Josh Mcguigan - The things I write https://www.joshmcguigan.com/blog/shell-completions-pure-rust/
Thu 23 May 2019 07:39:48 AM CEST
QRCode
article programming rust tutorial
How to start Rust Chat App – Steadylearner – Medium https://gist.github.com/steadylearner/e809a298064fbbdaf5983c460eaedae7
Thu 23 May 2019 07:35:23 AM CEST
QRCode

GitHub Gist: instantly share code, notes, and snippets.

chat programming rust tutorial
Introduction - The Embedded Rust Book https://rust-embedded.github.io/book/intro/index.html
Sun 28 Apr 2019 08:23:08 PM CEST
QRCode
docs ebook rust
Rust Language Cheat Sheet https://cheats.rs/
Thu 29 Nov 2018 07:17:30 PM CET
QRCode

Contains clickable links to The Book, Rust by Example, Std Docs, Nomicon, Reference. Furthermore, entries are marked as largely deprecated, have a minimum edition, or are bad.

It summarizes concept including: Data Structures, References & Pointers, Functions & Behaviors, Control Flow, Organizing code, Type Aliases and Cast, Code Generation, Pattern Matching, Generics & Constraints, Strings & Chars, Comments, Common Operators, Idiomatic Rust.

cheatsheet online programming resources rust
Build Your Own Shell using Rust https://www.joshmcguigan.com/blog/build-your-own-shell-rust/
Thu 22 Nov 2018 06:05:00 PM CET
QRCode

From Josh Mcguigan.

This is a tutorial on building your own shell using Rust, in the spirit of the build-your-own-x list. Creating a shell is a great way to understand how the shell, terminal emulator, and OS work together.

article blog online operating_system post programming rust tutorial
Is Rust functional? https://www.fpcomplete.com/blog/2018/10/is-rust-functional
Thu 01 Nov 2018 10:58:11 PM CET
QRCode

Rust is an imperative systems programming language. Why does it have so much attention from functional programming advocates? Is it hiding a functional nature?

article functional_programming rust
24 days of Rust http://zsiciarz.github.io/24daysofrust/
Sun 14 Oct 2018 08:54:18 PM CEST
QRCode

Inspired by Ollie Charles and his excellent 24 days of Hackage series, I'm going to try and introduce you to a number of Rust language features, useful libraries and cool projects built with Rust.

In fact this is a learning opportunity for me too - as much as I love Rust, I'm just diving in. If you think I'm wrong or know an interesting library you want me to write about, feel free to comment!

article programming rust tutorial
page 1 / 2
3654 links
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn