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 Helge Heß (helge@mastodon.social), page 2

  1. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Sunday, 26-Jan-2025 16:05:52 JST Helge Heß Helge Heß

    I sometimes wonder whether the sole USP of BSky is that it is American. It's not meaningfully different to Masto. But you get a proper company backing it, with the goal to make a lot of money out of it. Not that communist crap where you sponsor or not as you see fit ;-)

    In conversation about 5 months ago from mastodon.social permalink
  2. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Sunday, 26-Jan-2025 16:05:51 JST Helge Heß Helge Heß
    in reply to
    • Rhys Morgan

    @rhysmorgan I assume most of those people have been Americans? I don't know a single non-tech person on BSky, while I know quite a few on Masto. But yes, even more on Twitter.
    The "having to choose an instance" is just boring non-sense. You can just do mastodon.social if you don't care.

    In conversation about 5 months ago from mastodon.social permalink
  3. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Sunday, 26-Jan-2025 16:05:50 JST Helge Heß Helge Heß
    in reply to
    • Rhys Morgan

    @rhysmorgan The argument is weak, the same people don't realise what they are getting into w/ BSky either. It's essentially the same like opting for mastodon.social, except much worse. There are not options in the the first place, *if* you care 🙃
    Maybe a value proposition of BSky is that "we are exactly like Twitter". But then you wonder why people want to see the same thing happening over and over again ...

    In conversation about 5 months ago from mastodon.social permalink
  4. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Thursday, 23-Jan-2025 18:45:50 JST Helge Heß Helge Heß
    • obrhoff

    @obrhoff Fittingly it’s the other way around 🙃
    The AppKit coordinate system is a proper one as you learned it in school. (same for RealityKit btw)

    In conversation about 5 months ago from mastodon.social permalink
  5. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 17-Jan-2025 06:44:04 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell
    • Fluchtkapsel

    @fluchtkapsel @inthehands This is like saying Signal is bolted on IPv4 which was never meant to be secure. Sorry, but this is non-sense. Both PGP and S/MIME are perfectly viable and proven standards to provide proper E2EE.
    But as usual standards have to be *implemented* and made usable. E.g. Apple has done the former, but didn't invest in the latter.
    It works for Signal and WhatsApp because they are silos. That's not necessary w/ email.

    In conversation about 6 months ago from mastodon.social permalink
  6. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 17-Jan-2025 04:37:22 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands Email has e2ee since essentially forever. The claim it not being designed for this is a little misleading.
    Is it supported well? No! Why? Because the vendors either want your data or promote a different platform for secure communication.

    In conversation about 6 months ago from mastodon.social permalink
  7. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Sunday, 22-Dec-2024 08:23:52 JST Helge Heß Helge Heß
    in reply to
    • mcc
    • Joe Groff

    @joe @mcc We also had Objective-TCL. Storing pointers as strings, you bet! https://wiki.tcl-lang.org/page/Objective+Tcl

    In conversation about 6 months ago from mastodon.social permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Objective Tcl
      Tclers wiki
  8. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Sunday, 22-Dec-2024 08:23:50 JST Helge Heß Helge Heß
    in reply to
    • mcc
    • lambdageek
    • Joe Groff

    @lambdageek @joe @mcc JavaScript is prototype based which is pretty cool for such a popular language, it doesn’t have messaging though, which is more important in the
    context.

    In conversation about 6 months ago from gnusocial.jp permalink
  9. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Saturday, 07-Dec-2024 09:11:57 JST Helge Heß Helge Heß
    in reply to
    • Matt Massicotte
    • calicoding

    @mattiem @calicoding Ref counting actually is expensive because it is thread safe, it’s the global interpreter lock of Swift.
    (and it doesn’t just affect user types, all the cow types use it)

    In conversation about 7 months ago from mastodon.social permalink
  10. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Saturday, 07-Dec-2024 09:11:52 JST Helge Heß Helge Heß
    in reply to
    • Joe Groff
    • Matt Massicotte
    • calicoding

    @joe @mattiem @calicoding Even if there is some atomic instruction doing the thing, the cores would still have to synchronize ie flush their pipelines, no? I don’t know much about such low levels and some info why it isn’t expensive would be welcome 🙃
    Or how expensive compared to a simple rc++ increment.
    My assumption is that RC is massively more expensive, is that wrong?

    In conversation about 7 months ago from mastodon.social permalink
  11. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 20-Sep-2024 07:39:49 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands Essentially this:
    ```
    thing.a = 5
    thing.a = 5
    thing.a = 5
    ```
    should modify nothing but `a`. But those could also be composed values, the key thing is that you can assign as often as you want w/o side effects.
    That's what makes a property to me, not whether it is computed or stored.

    In conversation about 10 months ago from mastodon.social permalink
  12. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 20-Sep-2024 07:36:18 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands No, the operation should just be idempotent, i.e. have no side effects. Like this:
    ```
    final class Mehr {
    var _x = 0
    var y = 0

    var x: Int {
    set {
    _x = newValue
    y += 1
    }
    get { _x }
    }
    }
    ```
    I wouldn't consider `x` a "property" here because calling it 10 times will have side effects unrelated to it. This would be fine:
    ```
    final class Meer {
    var _x = 0

    var x: Int {
    set { _x = newValue * 2 }
    get { _x / 2 }
    }
    }
    ```

    In conversation about 10 months ago from mastodon.social permalink
  13. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 20-Sep-2024 07:28:51 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands Interesting. A property to me should have no meaningful side effects. I've seen people doing KVC properties and wondering when they run into issues because a property setter also set like 10 other unrelated things.

    In conversation about 10 months ago from mastodon.social permalink
  14. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Friday, 20-Sep-2024 07:19:47 JST Helge Heß Helge Heß
    • Paul Cantrell

    @inthehands I think the bigger issue/question is that properties are supposed to be idempotent. That's what makes it a property to me.

    In conversation about 10 months ago from mastodon.social permalink
  15. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Thursday, 01-Aug-2024 08:32:33 JST Helge Heß Helge Heß
    • Royce Williams
    • BeAware

    @BeAware @tychotithonus Wait for it if your “open source” models don’t manage to preserve the licensing terms of the original data.
    It does take same balls to admit using such openly 👍

    In conversation about a year ago from gnusocial.jp permalink
  16. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Wednesday, 12-Jun-2024 11:52:33 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands It does, it predates OSX by years. It came to NeXTstep 3.2(?) as part of EOF

    In conversation about a year ago from mastodon.social permalink

    Attachments


    1. https://files.mastodon.social/media_attachments/files/112/600/632/216/142/709/original/d96339e67de4940a.jpeg
  17. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Wednesday, 12-Jun-2024 08:38:18 JST Helge Heß Helge Heß
    in reply to

    Oh, and I learned that the history of Foundation is dating way back to the beginnings of OSX. WTF 🙃

    In conversation about a year ago from mastodon.social permalink
  18. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Wednesday, 12-Jun-2024 08:38:18 JST Helge Heß Helge Heß

    Ugh, the What’s new in Swift got me excited for a few seconds. I was fully prepared to finally see Linux cross compilation and debugging from within Xcode, the same like what we have for Darwin.
    But it looks like what’s new is what’s old, we have had that cross compilation for years (probably for more than 5?).
    “fremdschämen”

    In conversation about a year ago from mastodon.social permalink
  19. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Wednesday, 24-Apr-2024 03:34:51 JST Helge Heß Helge Heß
    in reply to
    • Paul Cantrell

    @inthehands Yes, but you have to do the I/O to write it to a file, and then load it into a buffer, then delete the file. I'd like the byte representation of an in-memory db w/o doing any I/O.

    In conversation about a year ago from mastodon.social permalink
  20. Embed this notice
    Helge Heß (helge@mastodon.social)'s status on Wednesday, 24-Apr-2024 03:34:50 JST Helge Heß Helge Heß
    in reply to
    • Sven A. Schmidt
    • Paul Cantrell

    @finestructure @inthehands This is not the ask, SQLite has an in-memory DB which that stuff is probably using.
    The question is how to serialize that in-memory SQLite DB to say a `Data`. I think the only way is to backup the DB to a file, then load the file into a Data and drop the file.

    In conversation about a year ago from mastodon.social permalink
  • After
  • Before

User actions

    Helge Heß

    Helge Heß

    https://github.com/helje5 #SwiftLang, #SwiftUI, #FOSS, #RealityKit, #visionOS, #Cows, #NeXT, #Magdeburg

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          41637
          Member since
          28 Nov 2022
          Notices
          59
          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.