101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

487
active users

#rust

38 posts34 participants0 posts today
Thib<p>tatuin, a TUI to manage TODOs from Obsidian, Todoist, GitHub and GitLab. In Rust.</p><p><a href="https://github.com/panter-dsd/tatuin" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">github.com/panter-dsd/tatuin</span><span class="invisible"></span></a></p><p><a href="https://mamot.fr/tags/todo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>todo</span></a> <a href="https://mamot.fr/tags/tui" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tui</span></a> <a href="https://mamot.fr/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a></p>
Lobsters<p>Rust running on every major GPU platform <a href="https://lobste.rs/s/3uemyk" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lobste.rs/s/3uemyk</span><span class="invisible"></span></a> <a href="https://mastodon.social/tags/graphics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>graphics</span></a> <a href="https://mastodon.social/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a><br><a href="https://rust-gpu.github.io/blog/2025/07/25/rust-on-every-gpu/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">rust-gpu.github.io/blog/2025/0</span><span class="invisible">7/25/rust-on-every-gpu/</span></a></p>
Fabian Klötzl<p>Any <a href="https://genomic.social/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a> experts out there? I have one large buffer and want a number of threads to write to different sections of it. In C++ that's trivial but I seem to be fighting the borrow checker here.</p><p>let buffer_ptr = buffer.as_mut_ptr() as usize;</p><p>// later:<br>let slice = unsafe { std::slice::from_raw_parts_mut((buffer_ptr as *mut u8).add(*offset), slice_size)};</p>
Manav Rathi<p>Iterative fibonacci in <a href="https://mastodon.social/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a>, will be interesting if I can shorten it further!</p><p>fn fibi(n: u32) -&gt; u64 {<br> let mut f = 1;<br> let mut pf = 1;<br> for _ in 2..n {<br> let t = pf;<br> pf = f;<br> f += t;<br> }<br> f<br>}</p><p>Driver:</p><p>fn main() {<br> for n in 1..=10 {<br> println!("{}\t{}\t{}", n, fib(n), fibi(n));<br> }<br>}</p><p>fn fib(n: u32) -&gt; u32 {<br> if n &lt; 3 { 1 } else { fib(n - 1) + fib(n - 2) }<br>}</p>
Cody Casterline 🏳️‍🌈<p>I wrote a browser for <a href="https://mastodon.social/tags/gemini" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gemini</span></a> text that works over <a href="https://mastodon.social/tags/geminiprotocol" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>geminiprotocol</span></a> AND HTTP(S).</p><p>It was a great way to learn some <a href="https://mastodon.social/tags/egui" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>egui</span></a> in <a href="https://mastodon.social/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a>, but mostly I wanted to demonstrate that you can have nice things on HTTP too. 😉 </p><p>Let me know what y'all think!</p><p><a href="https://github.com/NfNitLoop/egemi" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">github.com/NfNitLoop/egemi</span><span class="invisible"></span></a></p><p><a href="https://mastodon.social/tags/smallweb" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>smallweb</span></a></p>
Kat Marchán 🐈<p>I tried loco.rs</p><p>I will not be trying loco.rs again, unfortunately.</p><p><a href="https://toot.cat/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a> <a href="https://toot.cat/tags/RustLang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RustLang</span></a></p>
Kevin Karhan :verified:<p><span class="h-card" translate="no"><a href="https://social.glitched.systems/@froge" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>froge</span></a></span> and now we all learbed 3 things:</p><p><code>1.</code> Just because it's written in <a href="https://infosec.space/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a> doesn't make it secure.<br><code>2.</code> <em>NEVER</em> <a href="https://infosec.space/tags/DIY" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DIY</span></a> <a href="https://infosec.space/tags/encryption" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>encryption</span></a>!<br><code>3.</code> <a href="https://infosec.space/tags/Software" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Software</span></a> needs to be maintained and audited and maintained…!</p>
benjamin melançon<p>What <a href="https://social.coop/tags/libre" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>libre</span></a> <a href="https://social.coop/tags/IDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>IDE</span></a> (integrated development environment for programming code) would y'all want to coalesce around using, supporting, and developing? Asking especially for coding websites and applications with <a href="https://social.coop/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a>, <a href="https://social.coop/tags/JavaScript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JavaScript</span></a>, <a href="https://social.coop/tags/CSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CSS</span></a>, and <a href="https://social.coop/tags/HTML" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HTML</span></a> but <a href="https://social.coop/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a>, <a href="https://social.coop/tags/Elixir" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Elixir</span></a>, <a href="https://social.coop/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a>, and <a href="https://social.coop/tags/Go" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Go</span></a> would all be great for us <span class="h-card" translate="no"><a href="https://social.coop/@agaric" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>agaric</span></a></span> too.</p><p><a href="https://social.coop/tags/FLOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FLOSS</span></a> <a href="https://social.coop/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://social.coop/tags/FreeSoftware" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FreeSoftware</span></a></p>
Nicolas Fränkel 🇺🇦🇬🇪<p>"Bypassing" <a href="https://mastodon.top/tags/specialization" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>specialization</span></a> in <a href="https://mastodon.top/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a> or How I Learned to Stop Worrying and Love Function Pointers</p><p><a href="https://oakchris1955.eu/posts/bypassing_specialization/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">oakchris1955.eu/posts/bypassin</span><span class="invisible">g_specialization/</span></a></p>
Jacob Pratt<p>Between a combination of using `const` blocks and (primarily) intelligently omitting what code is emitted, I managed to cut the output of the `format_description!` macro in `time` by 65–70% for a typical use case. All other macros emit less code as well.</p><p>Nothing super flashy, but there will be a release of `time` relatively soon. It will include an MSRV bump to 1.81.0 (released 2024-09-05). It's first MSRV bump in two years. Some new types are under development.</p><p><a href="https://mastodon.social/tags/Rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rust</span></a> <a href="https://mastodon.social/tags/RustLang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RustLang</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a></p>
Rust Bytes<p>This Week's Rust Quiz 🦀 </p><p>Last week we shared a Rust Macro for concise pattern matching and situations where it’s most useful.</p><p>Let’s move on to this week’s quiz.</p><p>Guess the Output!</p><p>Can you guess what the code below will print?</p><p><a href="https://mastodon.social/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a> <a href="https://mastodon.social/tags/rustlang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rustlang</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a></p>
Lluís Revilla<p>If you want to attend <a href="https://fosstodon.org/tags/rstats" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rstats</span></a> and <a href="https://fosstodon.org/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a> meeting, the details are already posted on: <a href="https://blog.bioconductor.org/posts/2025-07-09-developers-forum-july28/#agenda" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">blog.bioconductor.org/posts/20</span><span class="invisible">25-07-09-developers-forum-july28/#agenda</span></a><br>Hope to see you on this <a href="https://fosstodon.org/tags/event" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>event</span></a> for this great learning opportunity and a good discussion on how these two languages can work together</p>
SoftwareMill<p>Rustaceans, let's meet in Krakow! 🦀<br>The meetup by Rust Poland is just a week away!</p><p>📅 July 30th<br>📍 Centrum Obywatelskie, Reymonta 20 (Wisła Kraków Stadium)</p><p>Featuring:<br>🎤 Piotr Gankiewicz (whom you could also hear on stage at @Rustikon 2025!)<br>🎤 Mateusz Lenart<br>🔗 Event link: <a href="https://www.meetup.com/rust-poland-meetup/events/308832371/?eventOrigin=group_upcoming_events" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">meetup.com/rust-poland-meetup/</span><span class="invisible">events/308832371/?eventOrigin=group_upcoming_events</span></a></p><p>Join us for engaging discussions about the language, meet fellow Rust devs and fans, and exchange insights!</p><p><a href="https://softwaremill.social/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a> <a href="https://softwaremill.social/tags/rustlang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rustlang</span></a> <a href="https://softwaremill.social/tags/rustacean" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rustacean</span></a></p>

Please boost :neofox_heart:

Ein einfach zu nutzender CalDAV / CardDAV Server ohne PHP Gedöns ist Rustical. Eine schöne Alternative auch zu Baikal, SabreDAV, Nextcloud oder Davis.

github.com/lennart-k/rustical

Sehr rege Entwicklung, Docker verfügbar und einfach zu nutzen.
Dieses Projekt verdient mehr Aufmerksamkeit :neofox_sign_yes:

a calendar server aiming to be simple, fast and passwordless - lennart-k/rustical
GitHubGitHub - lennart-k/rustical: a calendar server aiming to be simple, fast and passwordlessa calendar server aiming to be simple, fast and passwordless - lennart-k/rustical