Bobinas P4G
  • Login
  • Public

    • Public
    • Groups
    • Popular
    • People

Notices by Jeeves (jeeves@mstdn.io)

  1. Jeeves (jeeves@mstdn.io)'s status on Friday, 02-Feb-2024 05:06:38 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz before Android Auto and Carplay came along, I always thought it'd be nice to just have a display your device could drive instead of the typically terrible infotainment system. Though this sounds like a pretty terrible implementation.

    In conversation Friday, 02-Feb-2024 05:06:38 UTC from mstdn.io permalink
  2. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 18-Oct-2023 19:11:03 UTC Jeeves Jeeves
    in reply to
    • penguin42
    • Bernie

    @codewiz @penguin42 I wonder if they're using the image analysis to train ChatGPT to generate better prompts.

    In conversation Wednesday, 18-Oct-2023 19:11:03 UTC from mstdn.io permalink
  3. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 19-Jul-2023 02:05:58 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz I see some people intensely sniffing a dog's ears and the dog with a look like "I guess this is my existence".

    In conversation Wednesday, 19-Jul-2023 02:05:58 UTC from mstdn.io permalink
  4. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 14-Jun-2023 15:20:44 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz I read the last line as 行ってらっしゃい🖕

    In conversation Wednesday, 14-Jun-2023 15:20:44 UTC from mstdn.io permalink
  5. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 14-Jun-2023 09:27:50 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz What's on the top right? Tofu skins?
    Edit: nevermind, I see it's in the previous post.

    In conversation Wednesday, 14-Jun-2023 09:27:50 UTC from mstdn.io permalink
  6. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 14-Jun-2023 02:32:02 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz maybe it's partially a genetic thing, I always thought it smelled a little bit like coffee or something, never unpleasant. Though when I try to make it at home, sometimes it doesn't turn out right and smells of ammonia.

    In conversation Wednesday, 14-Jun-2023 02:32:02 UTC from mstdn.io permalink
  7. Jeeves (jeeves@mstdn.io)'s status on Tuesday, 06-Jun-2023 23:45:25 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz ChatGPT told me to respond それは良さそうだね!何が一番楽しかったの?

    In conversation Tuesday, 06-Jun-2023 23:45:25 UTC from mstdn.io permalink
  8. Jeeves (jeeves@mstdn.io)'s status on Monday, 05-Jun-2023 18:44:23 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz Just logged onto Mastodon for the first time in a while. Looks like such a fun trip!

    In conversation Monday, 05-Jun-2023 18:44:23 UTC from mstdn.io permalink
  9. Jeeves (jeeves@mstdn.io)'s status on Monday, 11-Apr-2022 04:00:26 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz My goal is to be able to spin up a fresh dev VM easily from some config stored in a git repo instead of having to manually reinstall packages and stuff. Perhaps my Google-fu is too weak, but most of the info I'm finding basically boils down to "use Nix/Guix". How do people typically solve this with other distros?

    In conversation Monday, 11-Apr-2022 04:00:26 UTC from mstdn.io permalink
  10. Jeeves (jeeves@mstdn.io)'s status on Monday, 11-Apr-2022 04:00:09 UTC Jeeves Jeeves
    • Bernie

    @codewiz what are your thoughts on declarative package management? It seems like you should be able to layer a declarative interface on top of imperative package managers, but for some reason, it seems like not many people do that in practice.

    Context: trying to decide which Linux distro to use for my main development VM. I like the idea of declarative package management, but not sure if it's worth it committing to Nix/Guix/Silverblue, with the smaller ecosystem/community right now.

    In conversation Monday, 11-Apr-2022 04:00:09 UTC from mstdn.io permalink
  11. Jeeves (jeeves@mstdn.io)'s status on Monday, 17-Jan-2022 03:47:12 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz could you have the conversion function return the equivalent of Rust's Result type and create a STATIC_UNWRAP macro that hides the template grossness?

    In conversation Monday, 17-Jan-2022 03:47:12 UTC from mstdn.io permalink
  12. Jeeves (jeeves@mstdn.io)'s status on Sunday, 09-Jan-2022 19:14:03 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz I got it to error out at compile time: https://rust.godbolt.org/z/qhhTxb8hr. Had to change from calling the const fn in the argument list of println!() to first assigning the result of the const fn to a const variable, then calling println!() with that variable, so it would evaluate the const fn in a const context (defined at https://doc.rust-lang.org/reference/const_eval.html#const-context).

    In conversation Sunday, 09-Jan-2022 19:14:03 UTC from mstdn.io permalink

    Attachments

    1. Compiler Explorer - Rust (rustc 1.57.0)
      from Matt Godbolt
      const fn increment(x: u8) -> u8 { x + 1 } pub fn main () { print!("blah"); const X: u8 = increment(255u8); print!("{}", X); }
    2. No result found on File_thumbnail lookup.
      Constant Evaluation - The Rust Reference
  13. Jeeves (jeeves@mstdn.io)'s status on Saturday, 08-Jan-2022 16:01:43 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz My previous Toot was wrong so I deleted it; it turns out Rust is actually panicking at runtime, not compile time on integer overflow in a const fn: https://rust.godbolt.org/z/hvPY1YvGz

    In conversation Saturday, 08-Jan-2022 16:01:43 UTC from mstdn.io permalink

    Attachments

    1. Compiler Explorer - Rust (rustc 1.57.0)
      from Matt Godbolt
      const fn increment(x: u8) -> u8 { x + 1 } pub fn main () { print!("blah"); print!("{}", increment(255u8)); }
  14. Jeeves (jeeves@mstdn.io)'s status on Saturday, 08-Jan-2022 05:51:05 UTC Jeeves Jeeves
    in reply to
    • Bernie

    @codewiz What would Rust do? Not very familiar with Rust but it seems like it would give you a compile error if the function were a const fn , according to https://doc.rust-lang.org/reference/const_eval.html. If it weren't a const fn, you'd get a panic in debug mode and silent overflow in release? And if it were a const fn that returned Option/Error, then you'd be safe but have to unwrap at runtime I think. Would be nice if you could configure a const fn to cause a compile error when returning None/Error.

    In conversation Saturday, 08-Jan-2022 05:51:05 UTC from mstdn.io permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Constant Evaluation - The Rust Reference
  15. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 01-Sep-2021 18:31:59 UTC Jeeves Jeeves
    in reply to
    • Bernie
    • ilwoody
    • Marco Tozzini
    • Steak
    • Patrick Georgi

    @codewiz @patrick @lubimaer @5tr34k_ @ilwoody it looks like this is a thing people are working on: https://github.com/WebOfTrustInfo/rwot9-prague/blob/master/topics-and-advance-readings/fediverse-did-integration.md I'm skeptical as to whether that many users would actually use this though since it'd almost certainly be more involved than the status quo of creating an account on an instance.

    In conversation Wednesday, 01-Sep-2021 18:31:59 UTC from mstdn.io permalink

    Attachments

    1. rwot9-prague/fediverse-did-integration.md at master · WebOfTrustInfo/rwot9-prague
      RWOT9 in Prague, The Czech Republic (September 2019) - rwot9-prague/fediverse-did-integration.md at master · WebOfTrustInfo/rwot9-prague
  16. Jeeves (jeeves@mstdn.io)'s status on Wednesday, 01-Sep-2021 17:49:23 UTC Jeeves Jeeves
    in reply to
    • Bernie
    • ilwoody
    • Marco Tozzini
    • Steak
    • Patrick Georgi

    @codewiz @patrick @lubimaer @5tr34k_ @ilwoody it'd be cool if you could switch instances without giving up your username. But that would require some sort of global naming system or piggyback off of DNS to map username to server address, but it's probably too much to ask new users to register a domain for themselves, whether it be DNS or some blockchain based name service. That might fix the pressure toward centralization Patrick describes though.

    In conversation Wednesday, 01-Sep-2021 17:49:23 UTC from mstdn.io permalink
  17. Jeeves (jeeves@mstdn.io)'s status on Tuesday, 25-Jun-2019 00:59:03 UTC Jeeves Jeeves
    in reply to
    • Bernie
    • allan 📊

    @codewiz @allan and finally, the full version of the end theme is out!
    https://www.youtube.com/watch?v=BEEFXAltoqo

    In conversation Tuesday, 25-Jun-2019 00:59:03 UTC from mstdn.io permalink
  18. Jeeves (jeeves@mstdn.io)'s status on Saturday, 22-Jun-2019 01:44:06 UTC Jeeves Jeeves
    • Bernie

    @codewiz do you have any recommendations for keeping files in sync between multiple servers? syncthing, git-annex, something else? Choice overload: https://wiki.archlinux.org/index.php/Synchronization_and_backup_programs#Table

    In conversation Saturday, 22-Jun-2019 01:44:06 UTC from mstdn.io permalink

    Attachments


User actions

    Jeeves

    Jeeves

    Tags
    • (None)
    ActivityPub
    Remote Profile

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          17042
          Member since
          25 Jan 2019
          Notices
          18
          Daily average
          0

          Feeds

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

          Bobinas P4G is a social network. It runs on GNU social, version 2.0.1-beta0, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All Bobinas P4G content and data are available under the Creative Commons Attribution 3.0 license.