Couldn't resist to share a quote from the
The Manager's Path book:In the most extreme case, one person reported meeting only twice with his manager in the span of six months, one of those times to receive a promotion.Rocket web server framework finally will be possible to build in Rust stable! I think people only used it for personal projects because it was in nightly, I personally did😁. Now this changes things.
https://rocket.rs/v0.5-rc/news/2021-06-09-version-0.5-rc.1/
https://rocket.rs/v0.5-rc/news/2021-06-09-version-0.5-rc.1/
rocket.rs
Rocket v0.5 Release Candidate - Rocket Web Framework
Rocket is a web framework for the Rust
programming language that makes it simple to write fast web applications
without sacrificing flexibility or type safety.
programming language that makes it simple to write fast web applications
without sacrificing flexibility or type safety.
Just as I was planning to continue reading a book on formal verification here comes a meetup about it. And as you might have guessed (if you are familiar with the field of formal verification) they will be doing this in Coq - verifying a subset of Rust programs.
https://twitter.com/RustLondon_/status/1403334223394639872?s=20
https://twitter.com/RustLondon_/status/1403334223394639872?s=20
Twitter
RustLondon 🦀
This month we are giving the floor to @ConcordiumNet, come with an open mind, and you won't be disappointed. We'll have talks on Cryptography, Formal Verification & Smart Contract Development in @rustlang from @dfaranha @BasspittersBs & @thomaswdyoung sk…
Recently was going through OCaml references. Found out that monadic operations were just* introduced in 2018, this late in the language! This was a huge surprise for me. I mean the language designers have to be really devoted to introduce such big changes this late in the language.
* People could write a monad in OCaml before, but there was no explicit support for this pattern from the language side.
* People could write a monad in OCaml before, but there was no explicit support for this pattern from the language side.
GitHub
Add "monadic" let operators by lpw25 · Pull Request #1947 · ocaml/ocaml
Based on a few recent comments and PRs, I thought it might be a good time to revive the idea of adding some support for "monadic" syntax to OCaml. I can't find the last at...
Rust 1.53.0 is out!
Nested or patterns, Unicode identifiers, IntoIterator for arrays and some other minor changes https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html
Nested or patterns, Unicode identifiers, IntoIterator for arrays and some other minor changes https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html
blog.rust-lang.org
Announcing Rust 1.53.0 | Rust Blog
Empowering everyone to build reliable and efficient software.
Forwarded from Awesome Rust
The WebAssembly runtime Wasmer 2.0 is released: up to +50% faster runtime speed, up to 70% faster hot startups, reference types, SIMD and more!
https://wasmer.io/posts/wasmer-2.0
https://wasmer.io/posts/wasmer-2.0
wasmer.io
Wasmer 2.0, It's a big deal!
Wasmer - The Universal WebAssembly Runtime
The joke about Unicode support. The thing is it will print 14, but it also will give you a ton of warnings.
https://twitter.com/tomaka17/status/1405546676790587392?s=19
https://twitter.com/tomaka17/status/1405546676790587392?s=19
Twitter
tomaka
You're a Rust expert? What does this print? let A = 1; let Α = 2; let А = 3; let A= 4; println!("{}", (Α * А) + (A * A));
From hacker news comments:
If the computer solves problems and we know what it's doing, that's software engineering If the computer solves problems and we don't know what it's doing, that's AI If the computer doesn't solve problems and we don't know what it's doing, that's Friday afternoonAnother quote from
I really do think that Agile fans are sometimes just a bit too eager to see it everywhere.
The Manager's Path book that I wanted to share:There are some projects, usually described by words like infrastructure, platform, or system, that require architecture or significant advanced planning. When faced with this kind of project, which includes many unknowns and relatively hard deadlines, you will find it doesn’t fit so well into the standard agile process.I really do think that Agile fans are sometimes just a bit too eager to see it everywhere.
Forwarded from oleg_log (Oleg Kovalov)
In my years at Google and AWS, we had outages and failures, but very very few of them were due to anything as simple as a software bug. Botched deployments, throttling misconfigurations, cert problems (OMG cert problems), DNS hiccups, an intern doing a load test with a Python noscript, malfunctioning canaries, there are lots of branches in that trail of tears. But usually not just a bug. I can’t remember when precisely I became infected, but I can testify: Once you are, you’re never going to be comfortable in the presence of untested code.
https://www.tbray.org/ongoing/When/202x/2021/05/15/Testing-in-2021
https://www.tbray.org/ongoing/When/202x/2021/05/15/Testing-in-2021
Here is my Monday pick of a programming language😁: Flix
- Developed in Aarhus University
- Syntax similar to Scala
- Functional First
- Design inspired by Haskell, Rust, Scala
- Has Higher Kinded Types
- Checks purity and impurity at type level
- Has a special contract (constraint) language
Actually at the first glance I would say I like it a lot. I really think that Haskell over-engineered with their IO monad, and Scala has no built-in purity checks. So here we go. Might actually give it a try.
- Developed in Aarhus University
- Syntax similar to Scala
- Functional First
- Design inspired by Haskell, Rust, Scala
- Has Higher Kinded Types
- Checks purity and impurity at type level
- Has a special contract (constraint) language
Actually at the first glance I would say I like it a lot. I really think that Haskell over-engineered with their IO monad, and Scala has no built-in purity checks. So here we go. Might actually give it a try.
Microsoft seems quite serious about their love for Linux lately. Recently they released a first version of their own Linux Distribution https://github.com/microsoft/CBL-Mariner
GitHub
GitHub - microsoft/azurelinux: Linux OS for Azure 1P services and edge appliances
Linux OS for Azure 1P services and edge appliances - microsoft/azurelinux
Just found this podcast from Jane Street (the famous finance company that uses OCaml). They talk about a variety of topics from OS to UI to compilers.
Mainly they discuss how their teams work on these topics. Seems like a hell of an insight into FP at scale.
Mainly they discuss how their teams work on these topics. Seems like a hell of an insight into FP at scale.
Signalsandthreads
Signals and Threads Podcast
Listen in on Jane Street’s Ron Minsky as he has conversations with engineers working on everything from clock synchronization to reliable multicast, build systems to reconfigurable hardware. Get a peek at how Jane Street approaches problems, and how those…
🔥1
Finally brought up again a personal blog website after fiddling with CSS for a couple of days😅.
So here you go - a blog post on absence of lifetimes in our daily Rust code https://www.ivkov.tech/absence-of-lifetimes/
SQLX is planning to drop async-std runtime support and only use tokio.
And it is very indicative of the state of async runtimes in Rust. A lot of people on Reddit are saying that
I think this is quite sad. Rust async working group should have standardized interfaces for runtimes long ago. Then there would be no split in the ecosystem and consequently less popular projects dying out.
And it is very indicative of the state of async runtimes in Rust. A lot of people on Reddit are saying that
tokio won.I think this is quite sad. Rust async working group should have standardized interfaces for runtimes long ago. Then there would be no split in the ecosystem and consequently less popular projects dying out.
GitHub
Proposal: remove runtime features and async-std support. Still using async-std? Please make yourself heard! · Issue #1669 · launchbadge/sqlx
TL;DR: we want to drop existing runtime features and use Tokio everywhere in SQLx. If you are still using runtime-async-std-[native-tls, rustls], please give this issue a 👎 so we know you're ou...
😢3
As if the async working group heard me - they have just published a vision for async in Rust for the coming years!😁
They mainly discuss:
1. Support for async fns in traits
2. Common interface for runtimes
3. Easier syntax for async iterators
https://blog.rust-lang.org/inside-rust/2022/02/03/async-in-2022.html
They mainly discuss:
1. Support for async fns in traits
2. Common interface for runtimes
3. Easier syntax for async iterators
https://blog.rust-lang.org/inside-rust/2022/02/03/async-in-2022.html
blog.rust-lang.org
Async Rust in 2022 | Inside Rust Blog
Want to follow along with Rust development? Curious how you might get involved? Take a look!
React like cross platform UI framework in Rust - https://dioxuslabs.com/
It's finally happening 😁. Rust is getting better for UI construction!
It's finally happening 😁. Rust is getting better for UI construction!
😱2