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 ドッグ (linda_pp@mstdn.jp)

  1. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Tuesday, 08-Apr-2025 10:51:10 JST ドッグ ドッグ

    Git 20周年か
    https://github.blog/open-source/git/git-turns-20-a-qa-with-linus-torvalds/

    In conversation about 2 months ago from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: github.blog
      Git turns 20: A Q&A with Linus Torvalds
      from Taylor Blau
      To celebrate two decades of Git, we sat down with Linus Torvalds—the creator of Git and Linux—to discuss how it forever changed software development.
  2. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Monday, 10-Mar-2025 00:03:37 JST ドッグ ドッグ
    in reply to
    • naskya::dev

    @dev 情報ありがとうございます🙏 今回は include_str! するのをやめて README と API ドキュメントは別々に書いてしまいましたが,次同じようなことしたい時に検討してみます.

    In conversation about 3 months ago from mstdn.jp permalink
  3. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Wednesday, 12-Feb-2025 21:34:47 JST ドッグ ドッグ
    in reply to
    • naskya::dev

    @dev それだと Rust としてハイライトされてしまうんですよね… 純粋にハイライトされていないコードブロックがほしいのですが

    In conversation about 4 months ago from mstdn.jp permalink
  4. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Wednesday, 12-Feb-2025 21:26:12 JST ドッグ ドッグ

    #![doc = include_str!("../README.md")]

    で README.md を取り込むの結構厳しい.コードブロックを Rust コードだと認識させないために

    ```ignore
    ...
    ```

    とかしないとけないんだけど,GitHub だと ignore は gitignore とかのハイライトが割り当てられてるので困る

    In conversation about 4 months ago from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: ik.imagekit.io
      Changelog
      Announce updates and news to your users with Changelog.md
  5. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Wednesday, 20-Dec-2023 10:41:10 JST ドッグ ドッグ

    Wasm3 の作者,自宅をロシア軍に破壊されたらしくて開発がほぼ止まってしまったらしい😨 https://x.com/wasm3_engine/status/1736712528883769670

    In conversation Wednesday, 20-Dec-2023 10:41:10 JST from mstdn.jp permalink

    Attachments


  6. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Thursday, 07-Dec-2023 23:24:32 JST ドッグ ドッグ
    in reply to
    • らりお・ザ・何らかの🈗然㊌ソムリエ

    @lo48576 コンテキスト分かってないですが AsRef<str> + 'a とかでしょうか?

    In conversation Thursday, 07-Dec-2023 23:24:32 JST from mstdn.jp permalink
  7. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Monday, 04-Dec-2023 16:29:09 JST ドッグ ドッグ

    これラズパイの CPU が古すぎて Clang がアーキを正しく検出できないという話か.2014年に発売の RasPi B+ はコスト抑えるために2003年の CPU 使ってるんだな

    https://rachelbythebay.com/w/2023/11/30/armv6/

    In conversation Monday, 04-Dec-2023 16:29:09 JST from mstdn.jp permalink
  8. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Monday, 27-Nov-2023 17:34:26 JST ドッグ ドッグ

    ripgrep v14 🎊 https://github.com/BurntSushi/ripgrep/releases/tag/14.0.0

    In conversation Monday, 27-Nov-2023 17:34:26 JST from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      Release 14.0.0 · BurntSushi/ripgrep
      Sponsorship is appreciated! ripgrep 14 is a new major version release of ripgrep that has some new features, performance improvements and a lot of bug fixes. In case you haven't heard of it before...
  9. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Sunday, 12-Nov-2023 18:21:03 JST ドッグ ドッグ

    Cargo の doc test で警告が握りつぶされるのってどうにかできないんだろうか.Clippy も doc test の中をチェックしてくれないから,警告出てても気付けない.例えば deprecated な API をうっかり使ってしまったりとか

    In conversation Sunday, 12-Nov-2023 18:21:03 JST from mstdn.jp permalink
  10. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Sunday, 12-Nov-2023 18:09:22 JST ドッグ ドッグ
    in reply to

    #[derive(Debug)]
    struct TestCase {
    lines: &'static [&'static str],
    }

    みたいに明示的に構造体を定義して TestCase { lines: &["a", "b"] } みたいに書いたほうが良いのかな(今は横着してタプル使ってる).しかし,パラメータ化したテスト書く時に毎回構造体書くのが地味に面倒ではある

    In conversation Sunday, 12-Nov-2023 18:09:22 JST from mstdn.jp permalink
  11. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Sunday, 12-Nov-2023 18:07:14 JST ドッグ ドッグ

    &["a", "b"] が &[&str; 2] なのは良いんだけど,これが &[&str] に暗黙変換されないのが地味にテストケース書く時つらい.明示的に変換するのも &["a", "b"][..] もしくは &["a", "b"] as &[_] でパラメータ化した時に毎回書くのは地味に面倒くさい感じ

    In conversation Sunday, 12-Nov-2023 18:07:14 JST from mstdn.jp permalink
  12. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Saturday, 11-Nov-2023 23:59:39 JST ドッグ ドッグ
    • Masanori Ogino 𓀁

    @omasanori はい,特に理由が無ければ追従するんじゃないかなーと

    In conversation Saturday, 11-Nov-2023 23:59:39 JST from mstdn.jp permalink
  13. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Saturday, 11-Nov-2023 23:20:18 JST ドッグ ドッグ

    wry に大きめの破壊的変更が入るので,便乗して前々から気になってたやつを issue にしてみた https://github.com/tauri-apps/wry/issues/1073

    In conversation Saturday, 11-Nov-2023 23:20:18 JST from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      WebView v.s. Webview · Issue #1073 · tauri-apps/wry
      Is your feature request related to a problem? Please describe. Many wry's APIs use WebView but a few APIs use Webview in their names. It would be confusing for users. I know rust-analyzer is smart ...
  14. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Saturday, 11-Nov-2023 22:53:27 JST ドッグ ドッグ

    最近は GPG でコミットにサインするの必須なプロジェクト増えてきたなぁ

    In conversation Saturday, 11-Nov-2023 22:53:27 JST from mstdn.jp permalink
  15. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Saturday, 11-Nov-2023 20:40:21 JST ドッグ ドッグ

    KDE,Wayland がデフォルトになるんだ https://pointieststick.com/2023/11/10/this-week-in-kde-wayland-by-default-de-framed-breeze-hdr-games-rectangle-screen-recording/

    In conversation Saturday, 11-Nov-2023 20:40:21 JST from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: pointieststick.files.wordpress.com
      This week in KDE: Wayland by default, de-framed Breeze, HDR games, rectangle screen recording
      from Nate
      Yep you read that right, we’ve decided to throw the lever and go Wayland by default! The three remaining showstoppers are in the process of being fixed and we expect them to be done soon̵…
  16. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Saturday, 11-Nov-2023 01:07:50 JST ドッグ ドッグ

    また肩こりーヌになってる

    In conversation Saturday, 11-Nov-2023 01:07:50 JST from mstdn.jp permalink
  17. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Friday, 10-Nov-2023 23:51:06 JST ドッグ ドッグ
    in reply to

    だいぶ育ったわね

    In conversation Friday, 10-Nov-2023 23:51:06 JST from mstdn.jp permalink

    Attachments


    1. https://media.mstdn.jp/media_attachments/files/111/386/809/586/123/441/original/0caf75d38f36d52e.png
  18. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Friday, 10-Nov-2023 23:06:35 JST ドッグ ドッグ

    -Z threads でコンパイラフロントエンド側もマルチスレッド化 https://blog.rust-lang.org/2023/11/09/parallel-rustc.html

    In conversation Friday, 10-Nov-2023 23:06:35 JST from mstdn.jp permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: www.rust-lang.org
      Faster compilation with the parallel front-end in nightly | Rust Blog
      from @rustlang
      Empowering everyone to build reliable and efficient software.
  19. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Friday, 10-Nov-2023 19:33:03 JST ドッグ ドッグ

    やっぱテストは書いとくもんだなぁ

    In conversation Friday, 10-Nov-2023 19:33:03 JST from mstdn.jp permalink
  20. Embed this notice
    ドッグ (linda_pp@mstdn.jp)'s status on Friday, 10-Nov-2023 13:22:42 JST ドッグ ドッグ

    Rust で JS/TS のコードフォーマッタ書いて150万円は夢があるけど

    https://twitter.com/vjeux/status/1722733472522142022

    swc とかの既存のパーサ使ってもこのテストケース95%以上通すのはなかなか大変そう https://github.com/prettier/prettier/tree/main/tests/format/js

    In conversation Friday, 10-Nov-2023 13:22:42 JST from mstdn.jp permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      https://github.com/prettier/prettier/tree/main/tests/format/js
  • Before

User actions

    ドッグ

    ドッグ

    はやくコンピュータプログラムになりたい

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          38045
          Member since
          24 Nov 2022
          Notices
          115
          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.