senooken JP Social
  • FAQ
  • Login
senooken JP Socialはsenookenの専用分散SNSです。
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Masaki Hara (qnighy@qnmd.info), page 54

  1. Masaki Hara (qnighy@qnmd.info)'s status on Friday, 26-Oct-2018 10:09:28 JST Masaki Hara Masaki Hara

    Rust 1.30.0 が出てる https://blog.rust-lang.org/2018/10/25/Rust-1.30.0.html

    In conversation Friday, 26-Oct-2018 10:09:28 JST from qnmd.info permalink

    Attachments


  2. Masaki Hara (qnighy@qnmd.info)'s status on Friday, 26-Oct-2018 10:07:20 JST Masaki Hara Masaki Hara

    品川と神奈川似てる

    In conversation Friday, 26-Oct-2018 10:07:20 JST from qnmd.info permalink
  3. Masaki Hara (qnighy@qnmd.info)'s status on Friday, 26-Oct-2018 10:00:34 JST Masaki Hara Masaki Hara

    https://users.rust-lang.org/t/game-spot-the-error/21630
    このRustコード、どこがおかしいでしょう?というクイズ

    In conversation Friday, 26-Oct-2018 10:00:34 JST from qnmd.info permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: www.rust-lang.org
      Game: spot the error
      from The Rust Programming Language Forum
      I spent about 1/2 an hour trying to work out why the run function wasn’t visible. Can you spot why? #![cfg(not(any(feature = "vulkan", feature = "dx12", feature = "metal")))] compile_error!("must enable a backend feature"); #[cfg(feature = "dx12")] use gfx_backend_dx12 as back; #[cfg(feature = "metal")] use gfx_backend_metal as back; #[cfg(feature = "vulkan")] use gfx_backend_vulkan as back; use gfx_hal as hal; pub mod path; const DIMS: Extent2D = Extent2D { width: 1024, height: 768,...
  4. Masaki Hara (qnighy@qnmd.info)'s status on Friday, 26-Oct-2018 09:15:11 JST Masaki Hara Masaki Hara

    ジャバorノットジャバ検定を受けた直後の人「俺が好きなのはジャバだけどジャバじゃない」

    In conversation Friday, 26-Oct-2018 09:15:11 JST from qnmd.info permalink
  5. Masaki Hara (qnighy@qnmd.info)'s status on Thursday, 25-Oct-2018 21:24:34 JST Masaki Hara Masaki Hara

    https://boats.gitlab.io/blog/post/shifgrethor-iii/
    Rustの実験的なGCライブラリShifgrethorの解説第3段。Pin APIによってrootingが可能になったことが説明されている。

    In conversation Thursday, 25-Oct-2018 21:24:34 JST from qnmd.info permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Shifgrethor III: Rooting
      from withoutblogs
      After the digression in the previous post, it’s time to get back to what I promised in the first post: a look at how shifgrethor handles rooting. Shifgrethor’s solution is somewhat novel and takes advantage of some of Rust’s specific features, so I want to start by looking briefly at some of the other options. How to root a GC’d object There are two broad categories of rooting strategies that are common among precise, tracing garbage collectors:
  6. Masaki Hara (qnighy@qnmd.info)'s status on Thursday, 25-Oct-2018 10:01:27 JST Masaki Hara Masaki Hara

    http://l20n.org
    l20nというのがあるらしい。localizatioocalization?

    In conversation Thursday, 25-Oct-2018 10:01:27 JST from qnmd.info permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: l20n.org
      L20n • Localization 2.0
      Unleashing your native language's power through simple programming.
  7. Masaki Hara (qnighy@qnmd.info)'s status on Thursday, 25-Oct-2018 09:40:51 JST Masaki Hara Masaki Hara

    https://www.pornhub.com/insights/canada-cannabis
    カナダの大麻解禁でPornhubでの検索数も伸びたらしい

    In conversation Thursday, 25-Oct-2018 09:40:51 JST from qnmd.info permalink

    Attachments

    1. Canada's Searches Get Higher
      By mike from Pornhub Insights
      Canada’s Searches Get Higher
  8. Masaki Hara (qnighy@qnmd.info)'s status on Wednesday, 24-Oct-2018 13:20:58 JST Masaki Hara Masaki Hara

    Lumenでdocs.rsやleasewebで調べてみたけどよくわからない。 (docs.rs/about によるとleasewebというところでホストされているらしい)

    In conversation Wednesday, 24-Oct-2018 13:20:58 JST from qnmd.info permalink
  9. Masaki Hara (qnighy@qnmd.info)'s status on Wednesday, 24-Oct-2018 13:10:21 JST Masaki Hara Masaki Hara

    http://status.crates.io/incidents/jsvsy32z0p6r
    ほえ、Rustのドキュメントホスティングサービス docs.rs が落ちていたのはDMCA takedown requestがあったためらしい。(そして予想されてた通りGitHubは関係なかった)

    In conversation Wednesday, 24-Oct-2018 13:10:21 JST from qnmd.info permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: dka575ofm4ao0.cloudfront.net
      docs.rs outage
  10. Masaki Hara (qnighy@qnmd.info)'s status on Wednesday, 24-Oct-2018 13:06:47 JST Masaki Hara Masaki Hara

    https://users.rust-lang.org/t/sync-but-not-send/21551
    SyncだがSendでない型の例が挙げられている。

    In conversation Wednesday, 24-Oct-2018 13:06:47 JST from qnmd.info permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: www.rust-lang.org
      Sync but not Send?
      from The Rust Programming Language Forum
      It’s a relatively simple question (though maybe with not so simple answer), mainly out of curiosity and desire to understand intrinsincs better. We have several types which are Send but not Sync (this is, for example, every Cell-like struct). Reasoning is easy to understand: when the type has interior mutability, we must be sure that we mutate it from one place only, but this place can be everywhere as long as it is singular. But is there any case where the opposite would be sound - i.e., type...
  11. Masaki Hara (qnighy@qnmd.info)'s status on Wednesday, 24-Oct-2018 10:13:54 JST Masaki Hara Masaki Hara

    https://rustwasm.github.io/2018/10/24/multithreading-rust-and-wasm.html
    WebAssemblyのスレッドサポートが進みつつあるらしい。Rust-WASMでのマルチスレッドサポートの現状について、Alex Crichton氏が解説している。Alex Crichton氏は現在Rust-WASMにおけるアトミック操作やスレッドローカルストレージの実装を進めている。

    In conversation Wednesday, 24-Oct-2018 10:13:54 JST from qnmd.info permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Multithreading Rust and Wasm
      from Rust and WebAssembly
      When WebAssembly was first shipped it was an MVP which, while minimal, has spawned a huge number of exciting projects which work today across all major browsers. Rust has capitalized on the wasm MVP’s success as well with tools like wasm-bindgen and wasm-pack by making the MVP feel less minimal. WebAssembly is yet more ambitious, though! Since inception it’s always been intended to extend the WebAssembly specification with new features and functionality.
  12. Masaki Hara (qnighy@qnmd.info)'s status on Tuesday, 23-Oct-2018 09:17:43 JST Masaki Hara Masaki Hara

    https://blog.servo.org/2018/10/23/RGSoC-responsive-images/
    Rails Girls Summer of Code っていうのがあって(GSoC亜種のひとつかな?)、それでServo(Rust製Webブラウザ)の改良をやったらしい。Railsとは

    In conversation Tuesday, 23-Oct-2018 09:17:43 JST from qnmd.info permalink

    Attachments


  13. Masaki Hara (qnighy@qnmd.info)'s status on Tuesday, 23-Oct-2018 09:02:58 JST Masaki Hara Masaki Hara

    最近のフィクションに登場する文字化け、Shift_JIS系エンコーディングをUTF-8として解釈しようとしたやつが多い気がする

    In conversation Tuesday, 23-Oct-2018 09:02:58 JST from qnmd.info permalink
  14. Masaki Hara (qnighy@qnmd.info)'s status on Monday, 22-Oct-2018 10:04:15 JST Masaki Hara Masaki Hara

    https://users.rust-lang.org/t/suggestion-a-take-n-like-iterator-method-that-does-not-take-ownership/21479
    イテレータを最初のn個とそれ以降に分割するには?→as_refとtakeを組み合わせる

    In conversation Monday, 22-Oct-2018 10:04:15 JST from qnmd.info permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: www.rust-lang.org
      Suggestion: a `.take(n)`-like Iterator method that does not take ownership
      from The Rust Programming Language Forum
      Ever wanted to write this kind of code ? fn main () { let mut iterator = (0 .. 10).into_iter(); for x in iterator.take(3) { println!("{} is in the podium!", x); }; for x in iterator { println!("{} is not, but maybe next time?", x); }; } playground Obviously it cannot work since .take(n) takes (duh) ownership of iterator. This can however be fixed by (mutably) borrowing iterator for the time of that first iteration: fn main () { let mut iterator = (0 ...
  15. Masaki Hara (qnighy@qnmd.info)'s status on Monday, 22-Oct-2018 00:49:26 JST Masaki Hara Masaki Hara

    プログラムの検証に関する基本原則 (Hara, 2018)
    1. 検証されていないプログラムは間違いを含んでいる。
    2. 検証されたプログラムは、検証されていない部分に間違いを含んでいる。

    In conversation Monday, 22-Oct-2018 00:49:26 JST from qnmd.info permalink
  16. Masaki Hara (qnighy@qnmd.info)'s status on Sunday, 21-Oct-2018 19:49:19 JST Masaki Hara Masaki Hara

    あーもう主人公たちイチャイチャイチャイチャイチャイチャイチャイチャしすぎでしょ最高の百合か? (ただし触手に浮気することもある)

    In conversation Sunday, 21-Oct-2018 19:49:19 JST from qnmd.info permalink
  17. Masaki Hara (qnighy@qnmd.info)'s status on Saturday, 20-Oct-2018 16:38:21 JST Masaki Hara Masaki Hara

    Resultの場合は.ok()をつけるとかかなあ、個人的にはResult専用メソッドまでは要らないかなと思った

    In conversation Saturday, 20-Oct-2018 16:38:21 JST from qnmd.info permalink
  18. Masaki Hara (qnighy@qnmd.info)'s status on Saturday, 20-Oct-2018 12:43:20 JST Masaki Hara Masaki Hara

    「宮尾さんは生えている」というタイトルを聞いて皆さんは何を思い浮かべましたか?尻尾(正解)ですか?男の娘ですか?私はふ○○りでした。

    In conversation Saturday, 20-Oct-2018 12:43:20 JST from qnmd.info permalink
  19. Masaki Hara (qnighy@qnmd.info)'s status on Saturday, 20-Oct-2018 12:39:52 JST Masaki Hara Masaki Hara

    このbot本当に様々なシチュエーションを言語化していてすごい

    In conversation Saturday, 20-Oct-2018 12:39:52 JST from qnmd.info permalink
  20. Masaki Hara (qnighy@qnmd.info)'s status on Saturday, 20-Oct-2018 10:03:48 JST Masaki Hara Masaki Hara

    新規ファイルもgit add -pのフローに乗せたい場合はgit add -N some/dir とかやる

    In conversation Saturday, 20-Oct-2018 10:03:48 JST from qnmd.info permalink
  • After
  • Before

User actions

    Masaki Hara

    Masaki Hara

    言語処理系いじりとロジックが好き 相方→@qnighy

    Tags
    • (None)
    WebSub

    Following 1

    • せのお (妹尾 賢)

    Followers 0

      Groups 0

        Statistics

        User ID
        2857
        Member since
        12 Aug 2018
        Notices
        769
        Daily average
        0

        Feeds

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

        senooken JP Social is a social network, courtesy of senooken. It runs on GNU social, version 2.0.2-beta0, available under the GNU Affero General Public License.

        Creative Commons Attribution 3.0 All senooken JP Social content and data are available under the Creative Commons Attribution 3.0 license.