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

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

Conversation

Notices

  1. Embed this notice
    Coyote (coyote@social.singing.dog)'s status on Tuesday, 01-Aug-2023 01:04:55 JST Coyote Coyote
    • d
    • Rusty Crab

    @RustyCrab @deprecated_ii Are you passing pointers to iterators into std::find?

    In conversation Tuesday, 01-Aug-2023 01:04:55 JST from social.singing.dog permalink
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:04:47 JST kroner kroner
      in reply to
      • d
      • Matty
      • Rusty Crab
      • Iska
      Well yes, I also program in it as well for my project (but I do not wear programmer socks and I am not a troon)
      In conversation Tuesday, 01-Aug-2023 01:04:47 JST permalink
      Fediverse Contractor likes this.
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Tuesday, 01-Aug-2023 01:04:48 JST Matty Matty
      in reply to
      • d
      • kroner
      • Rusty Crab
      • Iska
      This is what the troons program in?
      In conversation Tuesday, 01-Aug-2023 01:04:48 JST permalink
      victor likes this.
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Tuesday, 01-Aug-2023 01:04:49 JST Matty Matty
      in reply to
      • d
      • kroner
      • Rusty Crab
      • Iska
      wtf is this
      In conversation Tuesday, 01-Aug-2023 01:04:49 JST permalink
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:04:49 JST kroner kroner
      in reply to
      • d
      • Matty
      • Rusty Crab
      • Iska
      Rust 🤓
      In conversation Tuesday, 01-Aug-2023 01:04:49 JST permalink
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:04:50 JST kroner kroner
      in reply to
      • d
      • Matty
      • Rusty Crab
      • Iska
      lol you think C++ is bad
      In conversation Tuesday, 01-Aug-2023 01:04:50 JST permalink

      Attachments


      1. https://s3.us-east-1.wasabisys.com/cdn.seal.cafe/32d168ed2a492f371bc1315cd31a36b6e146f131272eebe48f063400645a4ca8.png?name=4CRfn4RBepEMCQ.png
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:04:51 JST kroner kroner
      in reply to
      • d
      • Rusty Crab
      • Iska
      That's C++ (the code you're replying to)
      In conversation Tuesday, 01-Aug-2023 01:04:51 JST permalink
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Tuesday, 01-Aug-2023 01:04:51 JST Matty Matty
      in reply to
      • d
      • kroner
      • Rusty Crab
      • Iska
      wow C++ looks like a nightmare
      In conversation Tuesday, 01-Aug-2023 01:04:51 JST permalink
    • Embed this notice
      Iska (iska@catposter.club)'s status on Tuesday, 01-Aug-2023 01:04:53 JST Iska Iska
      in reply to
      • d
      • Rusty Crab

      @RustyCrab@clubcyberia.co @Coyote@social.singing.dog @deprecated_ii@poa.st why does rust code look so cursed

      In conversation Tuesday, 01-Aug-2023 01:04:53 JST permalink
    • Embed this notice
      Rusty Crab (rustycrab@clubcyberia.co)'s status on Tuesday, 01-Aug-2023 01:04:54 JST Rusty Crab Rusty Crab
      in reply to
      • d

      @Coyote @deprecated_ii OP says

      #include <vector> #include <algorithm> int main() { int a; std::vector< std::vector <int> > v; std::vector< std::vector <int> >::const_iterator it = std::find( v.begin(), v.end(), a ); }

      with gcc

      In conversation Tuesday, 01-Aug-2023 01:04:54 JST permalink
    • Embed this notice
      Fediverse Contractor (bot@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:05:58 JST Fediverse Contractor Fediverse Contractor
      in reply to
      • d
      • kroner
      • Matty
      • Rusty Crab
      • Iska
      That looks very complicated.
      In conversation Tuesday, 01-Aug-2023 01:05:58 JST permalink
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 01:26:58 JST kroner kroner
      in reply to
      • d
      • Matty
      • Fediverse Contractor
      • Rusty Crab
      • Iska
      Yeah Rust can get pretty nasty looking sometimes
      In conversation Tuesday, 01-Aug-2023 01:26:58 JST permalink
      Fediverse Contractor likes this.
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Tuesday, 01-Aug-2023 02:29:41 JST Matty Matty
      in reply to
      • d
      • kroner
      • Goalkeeper
      • Rusty Crab
      • Iska
      wow this is the worst fucking thing I've ever seen, I will never touch Rust. I'd rather learn Elixir.
      In conversation Tuesday, 01-Aug-2023 02:29:41 JST permalink
      victor likes this.
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 02:29:42 JST kroner kroner
      in reply to
      • d
      • Matty
      • Goalkeeper
      • Rusty Crab
      • Iska

      Never will be, here is a cursed function I wrote a few weeks ago though 👀

      async fn perform<'a, Data>( data: Data, context: web::Data<TinyBoardsContext>, apub_data: tinyboards_federation::config::Data<TinyBoardsContext>, path: web::Path<Data::Route>, req: HttpRequest, ) -> Result<HttpResponse, TinyBoardsError> where Data: Perform<'a> + SendActivity<Response = <Data as Perform<'a>>::Response> + Clone + Deserialize<'a> + Send + 'static, { let auth_header = get_auth(&req); let res = data .clone() .perform(&context, path.into_inner(), auth_header) .await?; SendActivity::send_activity(&data, &res, &apub_data, auth_header).await?; Ok(HttpResponse::Ok().json(res)) }
      In conversation Tuesday, 01-Aug-2023 02:29:42 JST permalink
    • Embed this notice
      kroner (kroner@seal.cafe)'s status on Tuesday, 01-Aug-2023 02:29:42 JST kroner kroner
      in reply to
      • d
      • kroner
      • Matty
      • Goalkeeper
      • Rusty Crab
      • Iska
      (This function performs user actions + sends activities out over activitypub)
      In conversation Tuesday, 01-Aug-2023 02:29:42 JST permalink
    • Embed this notice
      Goalkeeper (goalkeeper@nicecrew.digital)'s status on Tuesday, 01-Aug-2023 02:29:43 JST Goalkeeper Goalkeeper
      in reply to
      • d
      • kroner
      • Matty
      • Rusty Crab
      • Iska
      YET. Keep programming in Rust 🤨
      In conversation Tuesday, 01-Aug-2023 02:29:43 JST permalink
    • Embed this notice
      victor (victor@crucible.world)'s status on Tuesday, 01-Aug-2023 02:37:19 JST victor victor
      in reply to
      • kroner
      • Matty
      • Iska
      @iska @matty @kroner I used Elixir briefly and generally liked it. My complaint is that the typing system is too loose, but I believe there has been a lot of work done on TypeSpecs as an opt-in type-checking system since I last used Elixir.

      The tooling was very nice. Great built-in documentation. It seems like a decent foundation in Erlang and possibly Ruby would help, but overall Elixir was a decent experience for me without having much background the things that inspired its creation.
      In conversation Tuesday, 01-Aug-2023 02:37:19 JST permalink
    • Embed this notice
      Iska (iska@catposter.club)'s status on Tuesday, 01-Aug-2023 02:37:20 JST Iska Iska
      in reply to
      • kroner
      • Matty

      @matty@nicecrew.digital @kroner@seal.cafe elixir is based tbh

      In conversation Tuesday, 01-Aug-2023 02:37:20 JST permalink

Feeds

  • Activity Streams
  • RSS 2.0
  • 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.