fa
Feedback
Блог*

Блог*

رفتن به کانال در Telegram

Блог со звёздочкой. Много репостов, немножко программирования. Небольшое прикольное комьюнити: @decltype_chat_ptr_t Автор: @insert_reference_here

نمایش بیشتر
1 923
مشترکین
-124 ساعت
-27 روز
-630 روز
آرشیو پست ها
photo content
+1

photo content

photo content

photo content

parsing sequences (like dates or version strings) by matching on part index playground original example thanks to @kanashimia
parsing sequences (like dates or version strings) by matching on part index playground original example thanks to @kanashimia for suggesting this one!

#prog #rust #article Fish 4.0: The Fish Of Theseus Довольно подробно описывают различные моменты, возникшие во время переписывания. Советую к прочтению — возможно, портирование далеко не так сложно для вашего проекта, как кажется. The port wasn’t without challenges, and it did not all go entirely as planned. But overall, it went pretty dang well. We’re now left with a codebase that we like a lot more, that has already gained some features that would have been much more annoying to add with C++, with more on the way, and we did it while creating a separate 3.7 release that also included some cool stuff. (thanks @teamerlin)

#prog #rust #article Compiling C to Safe Rust, Formalized (PDF) <...> We instead explore a different path, and explore what it would take to translate C to safe Rust; that is, to produce code that is trivially memory safe, because it abides by Rust's type system without caveats. Our work sports several original contributions: a type-directed translation from (a subset of) C to safe Rust; a novel static analysis based on "split trees" that allows expressing C's pointer arithmetic using Rust's slices and splitting operations; an analysis that infers exactly which borrows need to be mutable; and a compilation strategy for C's struct types that is compatible with Rust's distinction between non-owned and owned allocations. We apply our methodology to existing formally verified C codebases: the HACL* cryptographic library, and binary parsers and serializers from EverParse, and show that the subset of C we support is sufficient to translate both applications to safe Rust. Our evaluation shows that for the few places that do violate Rust's aliasing discipline, automated, surgical rewrites suffice; and that the few strategic copies we insert have a negligible performance impact. По понятным причинам подход авторов покрывает лишь некоторое подмножество C, но вроде достаточно обширное для написания реалистичных программ. Парочка претензий: 1. Написанный авторами инструмент пока что отсутствует в публичном доступе, поскольку "will be made public after the review process" (который, судя по всему, ещё не пройден). 2. Два примера кодовых баз, на которых автора проверяли свой инструмент, не были написаны изначально на C, а были написаны, как DSL в F* (для верификации одновременно с трансляцией в C) — на более реалистичных программах подход может показать себя менее эффективно.

Тотализатор (муж. р., ед. ч.) — человек, устанавливающий тоталитаризм

Будем считать, что это #math #meme

learn WHAT NOW
learn WHAT NOW

Куплю на Новый год шоколадных яиц Съем их все И буду говорить, что полон сюрпризов

#prog #rust #article Four limitations of Rust's borrow checker In this post, I’ll cover four surprising limitations of the borrow checker that I ran into in the course of my work. Also note that when I say something can’t be done, I mean that it can’t be done in a way that leverages Rust’s type system, i.e. with static type checking. <...>. It’s never the case that you literally can’t solve a problem at all, since there are always those escape hatches (and I’ll even show examples of an escape hatch I used below), but it is impossible to solve the problem in a way that makes Rust Rust.

"Маленький принц" Антуана де Сент-Экзюпери очень переоценён

Итоги года для канала "Блог*" от @TGStat
Итоги года для канала "Блог*" от @TGStat

photo content

#music Это эпично youtube.com/watch?v=66M8NwkRmew

Repost from N/a
Короче. У нас по соседству с кладбищем находится цирк. И если это не объясняет всю нашу жизнь, то что тогда.

#prog #rust #article Thoughts on Rust hashing Или о том, как дизайн API для хеширования в Rust напрямую ведёт к неэффективностям.

#prog #article Storing currency values: data types, caveats, best practices This article is not the final source of the truth, but it contains useful information that you should take into consideration when designing software.