GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by Mara (mara@hachyderm.io)

  1. Embed this notice
    Mara (mara@hachyderm.io)'s status on Wednesday, 03-Jul-2024 05:02:42 JST Mara Mara

    Apparently the concept of users who are not men is "too controversial" in the SerenityOS project, "as to not alienate anyone*".

    (*Anyone, as long as you go by he/him, of course.)

    https://github.com/SerenityOS/serenity/pull/24647

    In conversation about a year ago from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/112/718/512/166/370/868/original/3ce610508e3b3f37.png
    2. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      Update outdated male-specific language by denisdefreyne · Pull Request #24647 · SerenityOS/serenity
      The pronouns “they”/“them” are a better choice, as Serenity does not cater to only men.
  2. Embed this notice
    Mara (mara@hachyderm.io)'s status on Wednesday, 03-Jul-2024 05:02:41 JST Mara Mara
    in reply to

    The community: 46 👍, 6 🎉!
    The maintainer: Too controversial! Closed! Locked!

    In conversation about a year ago from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/112/718/563/028/078/869/original/de7033ff659ad7c0.png
  3. Embed this notice
    Mara (mara@hachyderm.io)'s status on Thursday, 29-Feb-2024 00:38:17 JST Mara Mara

    Go get your tickets now for RustNL, one of the biggest Rust events this year!

    https://2024.rustnl.org/

    See you all in Delft!

    In conversation about a year ago from hachyderm.io permalink
  4. Embed this notice
    Mara (mara@hachyderm.io)'s status on Thursday, 07-Dec-2023 23:26:06 JST Mara Mara
    in reply to
    • Jeffrey Yasskin

    @jyasskin It doesn't mention "multiple files", though, just "members" aka "compressed data sets". The RFC doesn't say whether those should represent one file each, or whether they represent chunks of the same file. Fwiw, gzip implementations I've seen all treat it as chunks of a single file, which I think was the original intention of the design: making concatenating transparent to g(un)zip.

    In conversation Thursday, 07-Dec-2023 23:26:06 JST from hachyderm.io permalink
  5. Embed this notice
    Mara (mara@hachyderm.io)'s status on Wednesday, 06-Dec-2023 00:38:55 JST Mara Mara

    🦀 New #rustlang blog post! "Behind the Scenes of Rust String Formatting: format_args!()"

    A dive into the dirty details behind format!(), println!() and similar macros, and an exploration of ideas for future improvement.

    https://blog.m-ou.se/format-args/

    In conversation Wednesday, 06-Dec-2023 00:38:55 JST from hachyderm.io permalink
  6. Embed this notice
    Mara (mara@hachyderm.io)'s status on Friday, 17-Mar-2023 17:43:40 JST Mara Mara

    "programming is serious and not a game [..] stop with the outfits and princess programmer stuff"

    I think we should all start writing software and giving talks while wearing princess dresses. ????

    In conversation Friday, 17-Mar-2023 17:43:40 JST from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/110/029/259/301/425/626/original/b0e39972439818f8.png

    2. https://media.hachyderm.io/media_attachments/files/110/029/259/545/189/236/original/5d61884c5fb60ccb.png
  7. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:22 JST Mara Mara

    ?? Yet another version of #rustlang, Rust 1.67.0, has just been released!

    This one is a relatively small release. So, short release thread:

    ? 1/6

    In conversation Tuesday, 14-Mar-2023 22:52:22 JST from hachyderm.io permalink
  8. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:21 JST Mara Mara
    in reply to

    A must_use attribute on async functions now does what you expect.

    #[must_use]
    async fn hey() -> Thing { … }

    Now, #[must_use] applies to `Thing`, instead of to the `impl Future<Output=Thing>` (which wasn't very useful).

    2/6

    In conversation Tuesday, 14-Mar-2023 22:52:21 JST from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/109/756/968/444/029/340/original/dd123e2a62f9792d.png
  9. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:20 JST Mara Mara
    in reply to

    std::sync::mpsc has a new implementation, based on crossbeam-channel.

    The old implementation had some issues and was hard to maintain. The new implementation fixes some small but long-standing bugs and has better performance.

    (The public interface remains unchanged.)

    3/6

    In conversation Tuesday, 14-Mar-2023 22:52:20 JST from hachyderm.io permalink
  10. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:19 JST Mara Mara
    in reply to

    The integer types now have (integer) logarithm methods: ilog, ilog10, ilog2. (And zero-checking versions: checked_ilog, checked_ilog10, and checked_ilog2.)

    ilog2 is implemented using leading_zeros(), so is very efficient.

    All of these methods usable in const context too.

    4/6

    In conversation Tuesday, 14-Mar-2023 22:52:19 JST from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/109/756/972/527/825/035/original/72bbd58cfa1dab13.png
  11. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:18 JST Mara Mara
    in reply to

    Clippy has a number of exciting new lints: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md#new-lints

    For example, you can now enable #![warn(clippy::manual_let_else)] to tell you about some situations where you could use the recently introduced let-else syntax.

    5/6

    In conversation Tuesday, 14-Mar-2023 22:52:18 JST from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/109/756/980/058/710/718/original/412691c501321060.png
    2. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      rust-clippy/CHANGELOG.md at master · rust-lang/rust-clippy
      A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/ - rust-clippy/CHANGELOG.md at master · rust-lang/rust-clippy
  12. Embed this notice
    Mara (mara@hachyderm.io)'s status on Tuesday, 14-Mar-2023 22:52:16 JST Mara Mara
    in reply to

    For more details and a complete list of changes in Rust 1.67, check out the announcement and release notes:

    Announcement: https://blog.rust-lang.org/2023/01/26/Rust-1.67.0.html

    Release notes:
    Rust: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1670-2023-01-26
    Cargo: https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-167-2023-01-26
    Clippy: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md#rust-167

    Enjoy!

    6/6

    In conversation Tuesday, 14-Mar-2023 22:52:16 JST from hachyderm.io permalink

    Attachments


    1. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      rust/RELEASES.md at stable · rust-lang/rust
      Empowering everyone to build reliable and efficient software. - rust/RELEASES.md at stable · rust-lang/rust
    2. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      cargo/CHANGELOG.md at master · rust-lang/cargo
      The Rust package manager. Contribute to rust-lang/cargo development by creating an account on GitHub.
    3. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      rust-clippy/CHANGELOG.md at master · rust-lang/rust-clippy
      A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/ - rust-clippy/CHANGELOG.md at master · rust-lang/rust-clippy
  13. Embed this notice
    Mara (mara@hachyderm.io)'s status on Sunday, 19-Feb-2023 00:34:53 JST Mara Mara

    ?

    In conversation Sunday, 19-Feb-2023 00:34:53 JST from hachyderm.io permalink

    Attachments


    1. https://media.hachyderm.io/media_attachments/files/109/879/853/830/818/080/original/f337c8b0308bd16f.jpg

User actions

    Mara

    Mara

    Rust dev, Electronics engineer, Founder/CTO of Fusion Engineering, Rust library team lead, ADHD, Polyamorous, Lesbian, She/Her

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          99749
          Member since
          18 Feb 2023
          Notices
          13
          Daily average
          0

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.