98 Matching Annotations
  1. Jun 2025
  2. Apr 2025
  3. Oct 2024
    1. When it comes to measuring the ecological impact of chips during their operation in the end-product, it is difficult to come up with reliable and detailed data. One key challenge is that, according to the GHG Protocol guidance for scope 3, semiconductor manufacturers (both in front- and back-end manufacturing) do not need to report on their climate footprint, particularly with regard to emissions, as their products are classified as ‘intermediate products’ and are not directly sold as end-products

      Intermedia products don't show up in scope 3? That likely helps explain why there are so figures for making chips at all

  4. May 2024
    1. economies of scope

      for - answer - size of a digital nation - definition - economy of scope

      answer - size of a digital nation - In contrast to nation states with the concept of economy of scale, - in Network states, we have the concept of economy of scope

      definition - economy of scope - for small group through strong alignment of interests and values, to foster close kinship - then expand to other similarly aligned groups with synergies between groups

  5. Jan 2024
    1. someone a good and useful partner in a game of checkers becausehe’s just or because he’s a checkers player?bBecause he’s a checkers player.

      typical of it being difficult to define things in philosophy... how do you define a just person, how do you define when justice is necessary, etc

    1. A user notices that an unchanged part of the diff already has features that are being implemented in the changes in the MR. The user leaves a comment on the unchanged part of the diff, telling the author that what they're trying to do is already present. Problem: The author cannot see that comment in the Changes tab, because the comment is outside the understood scope of the diff.
  6. Nov 2023
    1. Shopify don’t count the emissions footprint of the products sold by merchants in their actual climate data. No shipping, no manufacturing emissions, nothing (Amazon play a similar trick).

      This an interesting point - shopify can argue they do it to avoid double counting, but that’s not really what scope 3 is designed for

  7. Oct 2023
    1. In addition, PIDs may be local to an individual organization (e.g. identifiers in an internal human resources system), national (e.g. the DAI – Digital Author Identifier, used in the Netherlands), or global (all the examples in the paragraph above).

      PID Scope

  8. Jun 2023
    1. When it comes to thinking, the Zettelkasten solves an important issue which is the problem of scope, which is impossible at the current moment in mindmapping software such as Concepts.

      Mainly, Zettelkasten allows you gain a birds-eye holistic view of a topic, branch, or line of thought, while allowing you to at the same time also gain a microscopic view of an "atomic" idea within that thought-stream, therefore creating virtually infinite zoom-in and zoom-out capability. This is very, very, beneficial to the process of deep thinking and intellectual work.

  9. Apr 2023
  10. Feb 2023
    1. Alphabet Inc.’s renewable energy methodology is a custom calculation and is based on a global approach. The numerator includes all renewable energy procured, regardless of the market in which the renewable energy was consumed. Additional details on Alphabet Inc.’s criteria and methodology can be found in theAchieving Our 100% Renewable Energy Purchasing Goal and Going Beyonddisclosure

      This is basically like buying extra green energy where it's cheap and plentiful (i.e. the Nordics), to cancel out where it's not (i.e. lots of parts of Asia)

  11. Dec 2022
  12. Nov 2022
  13. Sep 2022
    1. This issue is for discussing the use case given in the next section, and the unevaluatedProperties proposal to solve it. If you want to discuss a different use case or a different proposal, you MUST file your own issue to do so. Any comments attempting to revive other lines of discussion from #515, introduce new problems or solutions, or otherwise derail this discussion will be deleted to keep the focus clear. Please file a new issue and link back to this one instead.
  14. Aug 2022
  15. Jun 2022
    1. By dropping or reducing or postponing the least importantparts, we can unblock ourselves and move forward even when timeis scarce.

      When working on a project, to stave off potential procrastination on finishing, one should focus on the minimum viable version and finish that. They can then progressively enhance portions and add on addition pieces which may be beneficial or even nice to have.

      Spending too much time on the things that sound nice or that one "might want to have" in the future will be the death of the thing.

      link to: - you ain't gonna need it - bikeshedding for procrastination

      questions: - Does the misinterpreted-effort hypothesis play a role in creating our procrastination and/or lead to decision fatigue?

  16. Apr 2022
  17. Jan 2022
    1. The RFC2617 model is one-user, one-credentials so the case where the user may have a second set of credentials that could be authorized may be ignored. It neither suggests nor implies that some sort of login page or other non-RFC2617 authentication protocol may or may not help - that is outside the RFC2616 standards and definition.
  18. Nov 2021
  19. Aug 2021
  20. May 2021
  21. Apr 2021
  22. Mar 2021
  23. Feb 2021
    1. Grouped inputs It can be convenient to apply the same options to a bunch of inputs. One common use case is making many inputs optional. Instead of setting default: nil on each one of them, you can use with_options to reduce duplication.

      This is just a general Ruby/Rails tip, nothing specific to active_interaction (except that it demonstrates that it may be useful sometimes, and gives a specific example of when you might use it).

      Still, in my opinion, this doesn't belong in the docs. Partly because I think repeating the default: nil for every item is an acceptable type of duplication, which would be better, clearer (because it's more explicit), simpler, keeps those details closer to the place where they are relevant (imagine if there were 50 fields within a with_options block).

      I also think think that it creates a very arbitrary logical "grouping" within your code, which may cause you to unintentionally override/trump / miss the chance to use a different, more logical/natural/important/useful logical grouping instead. For example, it might be more natural/important/useful to group the fields by the section/fieldset/model that they belong with, even if your only grouping is a comment:

      # User fields
      string :name
      integer :age
      date :birthday, default: nil
      
      # Food preferences
      array :pizza_toppings
      boolean :wants_cake, default: nil
      

      may be a more useful grouping/organization than:

      # Fields that are required
      string :name
      integer :age
      array :pizza_toppings
      
      # Fields that are optional
      with_options default: nil do
        date :birthday
        boolean :wants_cake
      end
      

      Or it might be better to list them strictly in the same order as they appear in your model that you are trying to match. Why? Because then you (or your code reviewer) can more easily compare the lists between the two places to make sure you haven't missed any fields from the model, and quickly be able to identify which ones are missing (hopefully intentionally missing).

      In other words, their "optionalness" seems to me like a pretty incidental property, not a key property worthy of allowing to dictate the organization/order/grouping of your code.

    1. The basic classification of a form object is a class that contains writable attributes, validations and logic to persist the attributes to ActiveRecord objects. These forms can also include other side-effects like background job triggers, emails, and push-notifications etc. The simplest way to understand the concept is to think of them as a representation of a controller action where all of the business logic that happens in that controller action is abstracted into a form object.

      This definition may be a bit too broad. Others (like Reform) define it to have smaller scope — only the part where it persists/validates attributes. The other side effects might be better to put in a different location, like the controller action, or a service/processor object that has a form object.

  24. Dec 2020
    1. Just realised this doesn't actually work. If store is just something exported by the app, there's no way to prevent leakage. Instead, it needs to be tied to rendering, which means we need to use the context API. Sapper needs to provide a top level component that sets the store as context for the rest of the app. You would therefore only be able to access it during initialisation, which means you couldn't do it inside a setTimeout and get someone else's session by accident:
    1. Some devs prefer Svelte’s minimal approach that defers problems to userland, encouraging more innovation, choice, and fragmentation, and other devs prefer a more fully integrated toolkit with a well-supported happy path.

      tag?: what scope of provided features / recommended happy path is needed?

    2. It’s worth mentioning that Svelte limits its scope to being only a UI component framework. Like React, it provides the view layer, but it has more batteries included with its component-scoped CSS and extensible stores for state management. Others like Angular and Vue provide a more all-in-one solution with official routers, opinionated state management, CLIs, and more. Sapper is Svelte’s official app framework that adds routing, server-side rendering, code splitting, and some other essential app features, but it has no opinions about state management and beyond. Some devs prefer Svelte’s minimal approach that defers problems to userland, encouraging more innovation, choice, and fragmentation, and other devs prefer a more fully integrated toolkit with a well-supported happy path.

      tag?: what scope of provided features / recommended happy path is needed?

  25. Nov 2020
  26. Oct 2020
    1. How are ponyfills better than polyfills? A polyfill is code that adds missing functionality by monkey patching an API. Unfortunately, it usually globally patches built-ins, which affects all code running in the environment. This is especially problematic when a polyfill is not fully spec compliant (which in some cases is impossible), as it could cause very hard to debug bugs and inconsistencies. Or when the spec for a new feature changes and your code depends on behavior that a module somewhere else in the dependency tree polyfills differently. In general, you should not modify API's you don't own.
    1. One of the primary tasks of engineers is to minimize complexity. JSX changes such a fundamental part (syntax and semantics of the language) that the complexity bubbles up to everything it touches. Pretty much every pipeline tool I've had to work with has become far more complex than necessary because of JSX. It affects AST parsers, it affects linters, it affects code coverage, it affects build systems. That tons and tons of additional code that I now need to wade through and mentally parse and ignore whenever I need to debug or want to contribute to a library that adds JSX support.
  27. Sep 2020
    1. It's fashionable to dislike CSS. There are lots of reasons why that's the case, but it boils down to this: CSS is unpredictable. If you've never had the experience of tweaking a style rule and accidentally breaking some layout that you thought was completely unrelated — usually when you're trying to ship — then you're either new at this or you're a much better programmer than the rest of us.
    2. It gets worse when you're working on a team. No-one dares touch styles authored by someone else, because it's often unclear what they're doing, what markup they apply to, and what disasters will unfold if you remove them. The consequence of all this is the append-only stylesheet. There's no way of knowing which code can safely be removed, so it's common to undo some existing style with another, more specific style — even on relatively small projects.
    1. In mapbox.js you'll see this line: const key = {};We can use anything as a key — we could do setContext('mapbox', ...) for example. The downside of using a string is that different component libraries might accidentally use the same one; using an object literal means the keys are guaranteed not to conflict in any circumstance (since an object only has referential equality to itself, i.e. {} !== {} whereas "x" === "x"), even when you have multiple different contexts operating across many component layers.
  28. Aug 2020
    1. I honestly don't know what you find unclear about this question. I think you initially misread. I edited out your title change because it wasn't what I'd intended and it misled others. I edited in two more sections to clarify. The last section makes it as clear as I can: A single question provokes 1 of 3 responses (not necessarily answers). To chose between them I need to understand acceptable scope of both question and answers. Yes this topic is a muddy one, that's why I'm asking! I want others to help me clarify the unclear!
  29. Jul 2020
  30. May 2020
  31. Aug 2019
  32. Oct 2018
  33. Feb 2014
    1. I n T h e T r a d e - M a r k C a s e s , t h e C o u r t a d d r e s s e d t h e c o n s t i t u t i o n a l s c o p e o f " w r i t i n g s . " F o r a p a r t i c u l a r w o r k t o b e c l a s s i f i e d " u n d e r t h e h e a d o f w r i t i n g s o f a u t h o r s , " t h e C o u r t d e t e r m i n e d , " o r i g i n a l i t y i s r e q u i r e d . " 1 0 0 U . S . , a t 9 4 . T h e C o u r t e x p l a i n e d t h a t o r i g i n a l i t y r e q u i r e s i n d e p e n d e n t c r e a t i o n p l u s a m o d i c u m o f c r e a t i v i t y : " [ W ] h i l e t h e w o r d w r i t i n g s m a y b e l i b e r a l l y c o n s t r u e d , a s i t h a s b e e n , t o i n c l u d e o r i g i n a l d e s i g n s f o r e n g r a v i n g , p r i n t s , & c . , i t i s o n l y s u c h a s a r e o r i g i n a l , a n d a r e f o u n d e d i n t h e c r e a t i v e p o w e r s o f t h e m i n d . T h e w r i t i n g s w h i c h a r e t o b e p r o t e c t e d a r e t h e f r u i t s o f i n t e l l e c t u a l l a b o r , e m b o d i e d i n t h e f o r m o f b o o k s , p r i n t s , e n g r a v i n g s , a n d t h e l i k e . " I b i d . ( e m p h a s i s i n o r i g i n a l ) .

      In The Trade-Mark Cases the Court addressed the constitutional scope of writings saying for a particular work to be classified "under the head of writings of authors," the Court determined, "originality is required"; independent creation plus a modicum of creativity.