Skip Navigation
thepiggz thepiggz @programming.dev
Posts 6
Comments 36
Does Intrinsic Value Exist?
  • After some thought, my new inclination:

    Whether intrinsic value exists or not is unknowable to us, specifically because we did not create our own universe. I can’t say for certain there is value in truth, justice, love, etc. beyond what we humans assign to these things. Yet, I can’t say for certain that there is not. Intrinsic value by its very nature and definition is a mystery.

  • Does Intrinsic Value Exist?
  • Could be. Interesting tactic. Energy does indeed seem to intrinsically exist. Existence does seem to exist. Scarcity does seem to exist. Even shared feelings of value for things that are hard to make a logical case for them seem to intrinsically exist. Yet, I feel unsatisfied that intrinsic value exists. Maybe I mean something harder to define.

  • Does Intrinsic Value Exist?
  • I like this idea of life in general defining inherent value. What if we encountered an alien race that developed completely separate from us and we happened to view certain common things as having intrinsic value? Could we make a case that these concepts of intrinsic value truly exist?

    Yet, if life itself were high on that list we might be a bit bias.

  • Does Intrinsic Value Exist?
  • Say, existence = value maybe? Or, energy = value?

  • Does Intrinsic Value Exist?
  • A good question. Does value exist without an entity to experience and quantify it? Is there value in a universe without humans - assuming such a universe could exist?

  • Philosophy @lemmy.ml thepiggz @programming.dev

    Does Intrinsic Value Exist?

    I’m new in this community. Anyone interested in engaging with these sorts of questions? If so, share your thoughts.

    My initial inclination is that intrinsic value is an illusion.

    10
    Are Our Posts Valuable?
  • I’m a programmer. If someone had an interest they could preserve all of your self-hosted data without your permission. I think it is worth considering tho, if all of this is valuable then it would be ideal if we could get that value into the accounts of people in need rather than the alternative.

  • *Permanently Deleted*
  • Agreed that instance admins might not be expected to handle this sort of thing.

    Agreed that it is easy to get a copy of the content.

    I think we might handle this best as a cumulative platform and community.

  • *Permanently Deleted*
  • Oddly enough, my understanding is that in many jurisdictions it is a matter explicitly asserting these rights. Aside from that, requesting that they be enforced when they are violated.

  • Are Our Posts Valuable?
  • Interesting take. I like the light philosophical bend there with the mental value. I think you’re right about that. I have been more considering whether the cumulative data of a platform like Lemmy as a whole is something that we as the users/server should be asserting our ownership of. Or, whether it is effectively worthless.

  • Are Our Posts Valuable?

    This is a quick follow-up to my previous post about whether or not we own our posts. Any thoughts?

    10
    *Permanently Deleted*
  • Agreed it would be trivial for Meta to obtain the posts. But I think the concern of most people here isn’t Meta obtaining the posts, it’s Meta monetizing them through ads and training. Would it not be in our best interest to try to prevent this?

  • I'm glad there's fewer 'comedians' here
  • Agreed. It would be nice if joke comments could continue to find a happy home in joke communities. I’m not really in it for the laughs most of the time.

  • [ DEVELOPMENT UPDATE ] Erroneous end-of-feed issue on 0.19
  • Excellent. I appreciate the update and the fix!

  • *Permanently Deleted*
  • Interesting perspective. Yet, server admins actually do have control over who they federate with. People do have control over what servers they use. Why not exercise this control?

    My understanding is that one can post things publicly online but still retain rights, including distribution rights in certain jurisdictions.

    I don’t think it is out of the question that the fediverse as a whole could make some decisions going forward that would make it more difficult for Meta (or other official corporations) to monetize the things we post with ads in their clients or through training of predictive models.

  • Do we own our posts?
  • I feel your frustration. Hang in there though. Perhaps there is a way to combat it.

  • Do we own our posts?
  • An interesting thought. I’m not sure this is entirely true though in many jurisdictions. It is clearly possible to post something on someone else’s server and still maintain ownership of it. Platforms like SoundCloud have you specify a license in the ui client at the time of upload. While this might seem performative, it is explicit.

  • Do we own our posts?
  • Thanks for sharing. I honestly was wondering how people were thinking about this. I was wondering why not include a license specified per post in the client UI as that seemed quite explicit. Yet, I was wondering how this might prohibit federation from being controlled at the server level.

    I had considered ads in clients and llm training. Both of which, people in need should be paid for if it is using content they generated if at all possible.

  • Do we own our posts?
  • Might we easily make it more clear that the poster or the server owns them outright?

    Hypothetically, a corporation federates and wants to monetize my posts. Can they do this? I’m not personally fixated on ownership (which could easily be viewed as my systemic privilege), but the pathway out of this type of thought in general doesn’t seem to be yielding all power to already powerful growth-based corporations. I didn’t create the current systems, but I do acknowledge their existence.

  • Do we own our posts?

    Who owns what we post?

    40

    The Icon is Excellent

    I like this happy looking guy. I originally thought his ears were his arms - now I just keep thinking of it that way. Like a white Kirby reaching for the stars.

    Anyway, I enjoy the app very much and support what y’all are doing.

    1
    OO awkward
  • GPT4 rewrite:

    Title: Optimizing TypeScript: Embracing Functional Patterns and Leveraging V8's Strengths

    Body:

    Hello TypeScript Community! Our journey in TypeScript development benefits greatly from a deeper understanding of JavaScript's core mechanics and the V8 engine's optimizations. It's become increasingly clear that JavaScript, and by extension TypeScript, subtly discourages traditional object-oriented (OO) programming in its built-in functionalities, favoring functional programming paradigms instead. Combining this with V8’s optimization techniques can significantly enhance our code's performance and readability.

    1. Functional Over OO in JavaScript's Built-ins:

      • Function References in Core Functions: JavaScript's built-ins, like addEventListener, setTimeout, setInterval, and array methods (map, filter, reduce), prefer function references over objects with expected methods. This design choice subtly favors functional programming over OO.
      • Closures for State Management: Instead of passing around shaped objects or using bind, closures provide a more natural and efficient way to maintain state in functions, aligning well with JavaScript's functional tendencies.
    2. Understanding and Utilizing V8's Optimizations:

      • Leveraging Hidden Classes and Inline Caching: Consistent object property initialization helps V8 create and reuse hidden classes efficiently, optimizing property access. Inline caching improves performance by optimizing repeated property and method access on objects.
      • Best Practices for V8 Optimizations: Avoid dynamic changes to object shapes and focus on writing monomorphic code to aid V8's optimization processes.
    3. Adapting to Functional Programming in TypeScript:

      • Functional Patterns for Performance: Embrace functional patterns, such as immutable data and pure functions, which V8 optimizes more effectively than complex class hierarchies.
      • Using TypeScript Features for Functional Code: TypeScript's powerful type system, including interfaces and type aliases, supports a more functional style of coding, which is inherently more aligned with V8’s optimization strategies.
    4. Moving Away from Classic OO Patterns:

      • Challenges with OO in TypeScript: The behavior of this, complex inheritance structures, and the awkwardness of bind highlight the incongruities of OO patterns in TypeScript.
      • Functional Techniques as Solutions: Opt for closures and composition over inheritance. Utilize functional programming constructs to create more modular, reusable, and efficient code.

    In conclusion, by understanding the inherent functional leanings of JavaScript and TypeScript, and by aligning our coding practices with V8’s optimization techniques, we can write more efficient and maintainable TypeScript code. This approach not only capitalizes on the language’s strengths but also ensures our code is primed for optimal performance by the V8 engine. Let's continue to explore and embrace these functional paradigms and share our insights on leveraging V8's capabilities in TypeScript development.

  • OO awkward

    addEventListener accept function references rather than objects with expected methods like handleEvent

    setTimeout and setInterval array map, filter, reduce, forEach, etc. promise then, catch, finally

    bind awkward

    closures

    what say v8? hidden classes

    fully init objects give me more perf tips

    1
    What is the 'sunk cost fallacy'? Is it ever a good thing?
  • This is such an odd title to an article. Is the fallacy ever a good thing? The fallacy itself is a concept - so not really good or bad. Using it as a logical premise in an argument is recognized to be problematic.

    Are we actually asking: is ever good to keep doing something you yourself hate only because you yourself already spent money on it? The answer seems clearly to be no.

  • Not that into VR, but Dungeons Of Eternity coop is worth a try

    www.meta.com Dungeons Of Eternity tuotteessa Oculus Quest 2

    Endless fantasy action and adventure await you and your friends in Dungeons of Eternity. Band together with other heroes and explore every dark corner for precious loot while using a variety of weapons to smash the hordes of monsters in your way. Hack-n-slash takes on a whole new meaning in VR: swin...

    Dungeons Of Eternity tuotteessa Oculus Quest 2

    If you have a Quest or whatnot and haven’t booted it up in a while, trying this out is worth the sickness and eye strain.

    4