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 David Smith (catfish_man@mastodon.social), page 5

  1. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Wednesday, 26-Mar-2025 03:44:51 JST David Smith David Smith
    in reply to
    • Paul Cantrell

    @inthehands this leads directly to my current pessimistic position of “we have not made an artificial intelligence, but if and when we someday do, we won’t be able to tell and probably won’t notice”

    In conversation about a year ago from mastodon.social permalink
  2. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Sunday, 23-Mar-2025 06:09:48 JST David Smith David Smith

    Periodic reminder that if you must link to or include pictures of propaganda from your enemies,
    a) must you, really?
    b) at least put an X covering it or something

    https://en.m.wikipedia.org/wiki/Mere-exposure_effect

    This post brought to you by unredacted terf protest signs on my timeline >.<

    In conversation about a year ago from mastodon.social permalink

    Attachments


  3. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Sunday, 23-Mar-2025 04:55:19 JST David Smith David Smith
    in reply to
    • Lesley Carhart :unverified:
    • Paul Cantrell

    @inthehands @hacks4pancakes @bodil Lando executing the classic iterated prisoner’s dilemma strategy of “grim trigger”, aka start shooting as soon as they betray you once

    In conversation about a year ago from mastodon.social permalink
  4. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Friday, 21-Mar-2025 05:23:50 JST David Smith David Smith
    in reply to
    • Paul Cantrell
    • 🔏 Matthias Wiesmann

    @inthehands @jrose @thias @quephird I have a similar thought exercise that I do when I'm feeling down, which is look at a city skyline at night, and then attempt to trace everything that had to happen to get all those little points of light there

    In conversation about a year ago from gnusocial.jp permalink
  5. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Sunday, 02-Mar-2025 01:10:16 JST David Smith David Smith

    I now have a full month of data to do comparisons with, and wow the before and after heat pump difference is striking. I could leave my microwave running on high 24/7 and still only be using as much power as I was in December.

    In conversation Sunday, 02-Mar-2025 01:10:16 JST from mastodon.social permalink

    Attachments


    1. https://files.mastodon.social/media_attachments/files/114/088/021/422/376/329/original/4bb63e6dc7ca252c.png

    2. https://files.mastodon.social/media_attachments/files/114/088/021/718/102/402/original/e4217aa8c7f9fe6e.png
  6. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 09:26:58 JST David Smith David Smith
    in reply to
    • Paul Cantrell
    • John Siracusa

    @inthehands @siracusa

    2029: GitHub introduces a super intelligent AI with a reward function tied to code quality

    2030: global revolution after the AI manipulates news, markets, and the contents of everyone’s GitHub repos to achieve its goal of removing time-to-market pressure

    In conversation Tuesday, 25-Feb-2025 09:26:58 JST from mastodon.social permalink
  7. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 09:19:36 JST David Smith David Smith
    in reply to
    • Paul Cantrell
    • John Siracusa

    @inthehands @siracusa “how do we get people to stop and think about what they’re doing” remains the greatest unsolved language design question

    Maybe the answer has something to do with reducing the amount of pressure people are under to work quickly… 🙃

    In conversation Tuesday, 25-Feb-2025 09:19:36 JST from mastodon.social permalink
  8. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 09:09:39 JST David Smith David Smith
    • MainActor

    Hot take: If you really want to make an effective Swift linter just grep for

    * .detached
    * Task { @MainActor
    * any

    and ask "are you sure about that?"

    In conversation Tuesday, 25-Feb-2025 09:09:39 JST from mastodon.social permalink
  9. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 09:09:38 JST David Smith David Smith
    in reply to
    • John Siracusa

    @siracusa I actually really disagree! I think assertions are great, and ! is just a compact spelling of one.

    In conversation Tuesday, 25-Feb-2025 09:09:38 JST from mastodon.social permalink
  10. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 06:17:42 JST David Smith David Smith
    in reply to
    • Adrianna Tan

    @skinnylatte oh that’s a great point, the event I was thinking of was in 2010

    In conversation Tuesday, 25-Feb-2025 06:17:42 JST from mastodon.social permalink
  11. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Tuesday, 25-Feb-2025 06:13:35 JST David Smith David Smith
    in reply to
    • Adrianna Tan

    @skinnylatte fwiw I first discovered Tartine at a party where I hadn’t been told what it was, so I think this is really just a case of different people enjoying different things

    In conversation Tuesday, 25-Feb-2025 06:13:35 JST from mastodon.social permalink
  12. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Thursday, 20-Feb-2025 08:47:07 JST David Smith David Smith
    in reply to
    • Paul Cantrell

    @inthehands it's *surprisingly* hard to get it to stop doing it for return values from @\objc methods!

    I've even resorted to lying about the return type and returning an Unmanaged<Foo> instead, since ObjC doesn't care as long as the representation is just a pointer.

    Not aware of any situations where it will other than that one though.

    In conversation Thursday, 20-Feb-2025 08:47:07 JST from mastodon.social permalink
  13. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Thursday, 20-Feb-2025 08:42:14 JST David Smith David Smith
    in reply to
    • Tanner B 🆓🇵🇸

    Autorelease tidbits:

    RunLoops wrap your code in autoreleasepool {} before calling it; so does Swift Concurrency

    DispatchQueues don't, by default! Configure them with .workItem autorelease frequency to fix this

    It's much less overhead than you'd expect from my description

    swiftc can autorelease objects when returning them from @objc methods

    Neither ObjC nor Swift ARC will autorelease things other than that

    Use "Allocations" in Instruments to see where adding a pool would help

    #swiftlang

    In conversation Thursday, 20-Feb-2025 08:42:14 JST from mastodon.social permalink
  14. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Thursday, 20-Feb-2025 08:42:14 JST David Smith David Smith

    This makes me feel old, but lately I've been seeing misunderstandings about what autorelease actually is in objc/swift. "It's a GC", "it's weird magic", "it's a batch allocator", etc…

    Autorelease is just an array. You (or, 99% of the time, SDK methods you're calling) manually put things into the array by calling `autorelease` on them, and then when you reach the closing brace of the autoreleasepool {} block, it calls `release` on anything that was added.

    That's literally all it is.

    #swiftlang

    In conversation Thursday, 20-Feb-2025 08:42:14 JST from mastodon.social permalink
  15. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Monday, 17-Feb-2025 14:45:14 JST David Smith David Smith

    Somehow it hadn’t occurred to me that some of the RTO push is powerful people projecting their own untrustworthiness https://mastodon.social/@MattBinder/114016804969031069

    In conversation Monday, 17-Feb-2025 14:45:14 JST from mastodon.social permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: files.mastodon.social
      Matt Binder (@MattBinder@mastodon.social)
      from Matt Binder
      Attached: 1 image i forced Elon Musk to take down the entirety of Twitter Spaces after discovering an exploit while i was working from home
  16. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Thursday, 13-Feb-2025 20:16:31 JST David Smith David Smith

    @quephird the plunder of Rome by the goths

    In conversation Thursday, 13-Feb-2025 20:16:31 JST from mastodon.social permalink

    Attachments


    1. https://files.mastodon.social/media_attachments/files/113/993/387/578/960/355/original/64cb007e28741436.png
  17. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Sunday, 09-Feb-2025 17:28:24 JST David Smith David Smith

    In hindsight the single best feature of the Pentium 4 was having horrible x87 performance. If it weren’t for that, the world would probably still be saddled with the dang thing being relevant.

    In conversation Sunday, 09-Feb-2025 17:28:24 JST from mastodon.social permalink
  18. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Saturday, 08-Feb-2025 03:25:46 JST David Smith David Smith
    in reply to
    • Adrianna Tan

    @skinnylatte reminds me of reading the yelp reviews for Slanted Door and seeing people baffled and angry that a Vietnamese place is upscale/expensive. Bizarre mindset >.<

    In conversation Saturday, 08-Feb-2025 03:25:46 JST from mastodon.social permalink
  19. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Thursday, 30-Jan-2025 05:34:57 JST David Smith David Smith
    in reply to
    • myrmepropagandist

    @futurebird some time ago, in a fit of sleep deprivation induced brain malfunction, I made this (ResEdit reminded me of it)

    In conversation Thursday, 30-Jan-2025 05:34:57 JST from mastodon.social permalink

    Attachments


    1. https://files.mastodon.social/media_attachments/files/113/903/475/172/566/888/original/485c3f890f6b0ee8.jpeg
  20. Embed this notice
    David Smith (catfish_man@mastodon.social)'s status on Friday, 24-Jan-2025 03:55:03 JST David Smith David Smith

    It’s been less than 48 hours since the last time a leftist earnestly told me a SovCit conspiracy theory, so strongly endorsing this.

    I’m… working on the grace part.

    https://hachyderm.io/@inthehands/113878979766282477

    In conversation Friday, 24-Jan-2025 03:55:03 JST from mastodon.social permalink
  • After
  • Before

User actions

    David Smith

    David Smith

    I am an irregular collection of floating diffuse lights, chiming softly

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          152378
          Member since
          22 Jul 2023
          Notices
          133
          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.