New: rust-seriesAll contenthive-129948hive-196917krzzanhive-183959steemphotographyhive-180932hive-150122hive-166405hive-185836uncommonlablifehive-183397hive-144064bitcoinhive-188619krsuccesshive-139150hive-103599hive-101145hive-124908hive-180301hive-109690hive-167213TrendingNewHotLikersjimmco (60)in programming • 7 years agoNew episodes of Programming in Rust series coming soon and some recapitulationOver one year ago I had been writing series about programming in Rust (rust-series) published here at Steemit. Today, I decided to continue this series as Rust programming language matured since…jimmco (60)in rust-series • 8 years agoRust lang series episode #33 — tcp client (#rust-series)Hi again everyone, here comes another Rust lang series episode. In last episode we've built simple TCP server and used web browser and command line application curl to connect it. Now we are…jimmco (60)in rust-series • 8 years agoRust lang series episode #32 — tcp server (#rust-series)Greetings everyone, here comes another Rust lang series episode. Today we will try to create simple TCP server in Rust that will listen at given port and return simple text greeting when…jimmco (60)in rust-series • 8 years agoRust lang series episode #31 — regex (#rust-series)Hi again everyone, here comes another Rust lang series episode, this time about Rust and regular expressions. Regular expressions (regex) are standard for a powerful operations with strings.…jimmco (60)in rust-series • 8 years agoRust lang series episode #30 — channels (#rust-series)Hello everyone, 30th Rust lang series episode is here. In previous episode , we were working with multiple threads. Today we will extend it with knowledge of channels. Channels Channel in…jimmco (60)in rust-series • 8 years agoRust lang series episode #29 — threads (#rust-series)Hello everyone, new Rust lang series episode is here. Topic of this episode is working with additional threads. As even mid-range mobile phones CPU today contain multiple cores and each of…jimmco (60)in rust-series • 8 years agoRust lang series episode #28 — linking data structures (#rust-series)Hello everyone, new Rust lang series episode is here. Today we will play with references and composing data across structures or simply said with linking data structures. In the past we've…jimmco (60)in rust-series • 8 years agoRust lang series episode #27 — writing text file (#rust-series)Hello everyone, new Rust series episode is here. Last time we've tried reading text file, today we will try to create a new file and write some content to it. Writing text to file Again we…jimmco (60)in rust-series • 8 years agoRust lang series episode #26 — text file reading (#rust-series)Hello everyone, new episode of Rust lang series is here. As we understand more language fundamentals today we can try again something more practical. Quite common task here is to read content of…jimmco (60)in rust-series • 8 years agoRust lang series episode #25 — pointers (#rust-series)Good morning everyone, there is a new Rust lang episode . We will talk about pointers in Rust, how to handle them and few things around. Content Pointers Stack and heap Box…jimmco (60)in rust-series • 8 years agoRust lang series episode #2 4 — user error types (#rust-series)Hello everyone, new episode of rust series is here, today we will close Error handling in Rust. We will finish our error handling sub-series with user error types and brief summary.…jimmco (60)in rust-series • 8 years agoRust lang series episode #2 3— composing results (#rust-series)Hello everyone, new episode of rust series is here, today we will discuss Error handling from composition point of view. We touched that previous episode and today we show more details and…jimmco (60)in rust-series • 8 years agoRust lang series episode #22 — try! macro (#rust-series)Hello everyone, new episode of rust series is here, today we will discuss more about Error handling in Rust. If you missed previous episode about error handling I recommend to go back and…jimmco (60)in rust-series • 8 years agoRust lang series episode #21 — macros (#rust-series)Hello everyone, new episode of rust series is here. Today it's going to be some introduction of Rust macros. Macros in Rust bring even more flexibility to Rust language. We already know many macros…jimmco (60)in rust-series • 8 years agoRust lang series episode #20 — reading from standard input (#rust-series)Hello everyone, new episode of rust series is here. As we know enough language fundamentals today we can try something more practical. At this stage we will not deal with any GUI, we will have…jimmco (60)in rust-series • 8 years agoRust lang series episode #19 — error handling (#rust-series)Hello everyone, new episode of rust series is here, today we will discuss error handling in Rust. Proper error handling is key aspect for successful code in any programming language. Rust uses…jimmco (60)in rust-series • 8 years agoRust lang series episode #18 — closures (#rust-series)Hello everyone, new episode of rust series is here, today we will discuss closures in Rust. Closures, also called lambdas, are functions that can capture the enclosing environment. Closures…jimmco (60)in rust-series • 8 years agoRust lang series episode #17 — dispatching (#rust-series)Hello everyone, new episode of rust series is here, today we will discuss dispatching. Dispatching in Rust is a mechanism to determine which polymorph code to run. This can sound strange…jimmco (60)in rust-series • 8 years agoRust lang series episode #16 — modules (#rust-series)Hello everyone, new episode of rust-series is here, today we will discuss modules. Up to now we always put our code into one .rs file and it is fine for our limited needs, indeed. But in…jimmco (60)in rust-series • 8 years agoRust lang series episode #15— strings (#rust-series)Good morning everyone, there is a new Rust lang series episode for today. We will talk little bit more about strings in Rust. So far we mostly worked with &str as string representation. Today we…