124 Matching Annotations
  1. Jul 2025
    1. For example, let’s say you fetch a list of books on the /books page and a list of albums on /albums page, so both those pages have a LayoutLoad method where the fetches are made. With SvelteKit this will cause the fetch to happen every time the user switches between these two pages, and the writable store will also be recreated every time. If your goal is to prevent refetching content you’ve already fetched before, then the global store is still your best bet.
  2. Jun 2025
    1. we try to understand the large scale um utility of of the of these patterns.

      for - quote - we try to understand the large scale utility of these patterns - Michael Levin - implicit and embodied demonstration - of higher scale intelligence - communicating with - lower scale of intelligence

      quote - we try to understand the large scale utility of these patterns - Michael Levin - This is an implicit demonstration or embodied demonstration of interscale communication - The higher level agent (Michael Levin's consciousness) - is attempting to understand the functioning of his own lower scale intelligence

  3. May 2025
  4. Jan 2025
    1. I'm a cloud, congealed around acentral object, the shape of a pear, which is hard and more real than I am andglows red within its translucent wrapping.

      Her true identity, that is, what differentiates her from other women is "cloud" like now, and what is more real is her central object, her womb, her fertility. Much more real than her entirety.

      Also symbolizes the way men pick women apart into components rather than as a whole.

  5. Dec 2024
    1. research shows that it's not so much about changing the narrative that is important but it is changing our relationship to this narrative so that we can see the narrative for what it is which is really a constellation of thoughts

      for - illusion of self narrative / construction - third pillar - insight - key insight on insight! - not about CHANGING NARRATIVES - but about PENETRATING THE NARRATIVE to understand its essence - - Youtube - Tukdam talk - An Overview Of CHM’s Work On “Well-Being And Tukdam” - Prof. Richard J. Davidson

  6. Nov 2024
  7. Oct 2024
    1. Alone at last, I think. The fact is that I don't want to be alone with him,not on a bed. I'd rather have Serena there too. I'd rather play Scrabble

      Irony in the "Alone at last", as she really hates it. She'd rather have Serena there, in all hypocrisy of her misery, she'd rather go through the ceremony -- in the end none is best, men are men, any sort of rape is uncomfortable for her. The men have not changed.

    Tags

    Annotators

  8. Sep 2024
    1. "What would you like?" he says, still with that lightness, as if it's amoney transaction merely, and a minor one at that: candy, cigarettes."Besides hand lotion, you mean," I say."Besides hand lotion," he agrees."I would like..." I say. "I would like to know.

      This shows the disconnect between the understanding of the severity of the situation. He is still playing with her when she is in fear of her own death, as if it is a simple and equal transaction.

  9. Jul 2024
    1. Like all caubois, she said: theyknow everything there is to know about food, because they can’t hold aknife and fork properly. Gourmet aristocrats with plebian manners. Feedhim in the kitchen.

      To know everything there is to know about oneself (the food) because he does not adopt the non-paradoxical constraints that one uses to define identity. He defies expectations of knowing so much about foods, cheeses and wines -- more than the Italians who have been doing this forever, because he does not stick to custom, to traditional views of identity.

  10. Jun 2024
    1. One day I saw Oliver sharing the same ladder with the gardener, tryingto learn all he could about Anchise’s grafts, which explained why ourapricots were larger, fleshier, juicier than most apricots in the region.

      When the apricots represent Oliver's deepest and most hidden fragments of identity, and Oliver "trying to learn all he could about Anchise's grafts" shows his determination in understanding his contradictory bits of himself, that don't meet his confident, tan caubois mannerisms. Furthermore, the apricots were "larger, fleshier, jucier than most apricots in the region". Indicating his understanding of his identity allowed him to mature into such a beautiful fruit.

  11. May 2024
  12. Dec 2023
    1. I disagree. What is expressed is an attempt to solve X by making something that should maybe be agnostic of time asynchronous. The problem is related to design: time taints code. You have a choice: either you make the surface area of async code grow and grow or you treat it as impure code and you lift pure synchronous logic in an async context. Without more information on the surrounding algorithm, we don't know if the design decision to make SymbolTable async was the best decision and we can't propose an alternative. This question was handled superficially and carelessly by the community.

      superficially and carelessly?

  13. Oct 2023
    1. virtually every sentence of the critique 00:04:20 presents difficulties attempts have been made to provide commentaries comprehensively illuminating uh comprehensively illuminating each individual section of the work 00:04:33 and some of these run to several volumes without getting near its end and then one commentator com noting what it's like to read the critique of pure reason says it is quote 00:04:46 a disagreeable task because the work is dry obscure opposed to all ordinary notions and long-winded as well who said that 00:04:59 kant
      • for: Kant, quote, quote- Kant, Kant - critique of pure reason - difficult to understand

      • quote: on reading the Critique of Pure Reason

        • a disagreeable task because the work is dry obscure opposed to all ordinary notions and long-winded as well
      • author: Immanuel Kant

      • comment

        • Now I don't feel so bad! :D
  14. Aug 2023
  15. Dec 2022
  16. Nov 2022
    1. by using symbols as keys, you will be able to use the implicit conversion of a Mash via the #to_hash method to destructure (or splat) the contents of a Mash out to a block

      Eh? The example below:

      symbol_mash = SymbolizedMash.new(id: 123, name: 'Rey') symbol_mash.each do |key, value| # key is :id, then :name # value is 123, then 'Rey' end

      seems to imply that this is possible (and does an implicit conversion) because it defines to_hash. But that's simply not true, as these 2 examples below prove:

      ``` main > symbol_mash.class_eval { undef :to_hash } => nil

      main > symbol_mash.each {|k,v| p [k,v] } [:id, 123] [:name, "Rey"] => {:id=>123, :name=>Rey} ```

      ``` main > s = 'a' => a

      main > s.class_eval do def to_hash chars.zip(chars).to_h end end => :to_hash

      main > s.to_hash => {a=>a}

      main > s.each Traceback (most recent call last) (filtered by backtrace_cleaner; set Pry.config.clean_backtrace = false to see all frames): 1: (pry):85:in __pry__' NoMethodError: undefined methodeach' for "a":String ```

  17. Sep 2022
    1. To see if you are writing good code, you can question yourself. how long it will take to fully transfer this project to another person? If the answer is uff, I don’t know… a few months… your code is like a magic scroll. most people can run it, but no body understand how it works. Strangely, I’ve seen several places where the IT department consist in dark wizards that craft scrolls to magically do things. The less people that understand your scroll, the more powerfully it is. Just like if life were a video game.
    1. PRs will introduce various mechanisms step by step. Some of these have issues already. A possible breakdown could be: Annotation collection using instance values (links also does this) Defining annotations to which multiple keywords contribute (this is new, see Need more details of annotation collection #530) Defining subschema and keyword processing results to include annotations Processing sequence for keywords that dynamically rely on the results of static keywords The actual definition of unevaluatedProperties An example of unevaluatedProperties
    1. The discussion here can get very fast-paced. I am trying to periodically pause it to allow new folks, or people who don't have quite as much time, to catch up. Please feel free to comment requesting such a pause if you would like to contribute but are having trouble following it all.

      Why is it necessary to pause Can't new person post their question/comment even if it's in reply to comment #10 and the latest comment happens to be comment #56? There's no rule against replying/discussing something that is not the very latest thing to be posted in a discussion!

      Possibly due to lack of a threaded discussion feature in GitHub? I think so.

      Threads would allow replies to "quick person" A to go under their comment, without flooding the top level with comments... thus alowing "new person" B to post a new comment, which in so doing creates a new thread, which can have its own discussion.

  18. Aug 2022
  19. Jul 2022
  20. Apr 2022
  21. Mar 2022
    1. “As a neonatologist, ... prior to COVID, I had maybe attended two to three deliveries in the medical ICU because it’s not common for women of childbearing age in their 20s and 30s to be critically ill and sick,” she said. Now, she said, “I truly cannot remember the last time I was on call at night and did not have to attend a COVID delivery. We’re just seeing a lot more complications in moms who you would expect to be healthy.”

      She is reflecting on her work before COVID, and during. What she is seeing more mothers having complications because of COVID.

    2. Utah Department of Health reports that 81% of the state’s coronavirus deaths were patients who were “high risk,” only 52% of hospitalizations were of people deemed to have risk factors for serious illness.

      UDOH reported: 81% of COVID Deaths = High Risk people 52% of Hospitalizations = At Risk for serious illness.

    3. Now thousands of people have shared their own stories about living through the pandemic with chronic illness — and about coping with remarks from media personalities and even health officials that minimize the human toll of COVID-19 because deaths and hospitalizations disproportionately affect people who are old or have underlying medical conditions.

      Comments made by Media, and Health Officials was minimizing the COVID-19 deaths and illnesses because most or some of those affected were older or had comorbidities.

  22. Jan 2022
    1. There's a problem with 401 Unauthorized, the HTTP status code for authentication errors. And that’s just it: it’s for authentication, not authorization. Receiving a 401 response is the server telling you, “you aren’t authenticated–either not authenticated at all or authenticated incorrectly–but please reauthenticate and try again.” To help you out, it will always include a WWW-Authenticate header that describes how to authenticate.
    2. So, for authorization I use the 403 Forbidden response. It’s permanent, it’s tied to my application logic, and it’s a more concrete response than a 401. Receiving a 403 response is the server telling you, “I’m sorry. I know who you are–I believe who you say you are–but you just don’t have permission to access this resource. Maybe if you ask the system administrator nicely, you’ll get permission. But please don’t bother me again until your predicament changes.”
  23. Dec 2021
    1. (Note that lowering the intermediary fees can have a multiplier effect on creator disposable income. For example, if you make $100K in revenue and have $80K in costs, cutting out a 50% take rate increases your revenue to $200K, multiplying your disposable income 6x, from $20K to $120K.)
  24. Nov 2021
  25. Oct 2021
  26. Sep 2021
  27. Aug 2021
    1. function strictIsDog<T extends Dog extends T ? unknown : never>( // like <T super Dog> candidate: Dog | T // if Dog extends T then Dog | T is T ): candidate is Dog { // compiler recognizes that Dog | T can narrow to T return "bark" in candidate; } if (strictIsDog(animal)) {} // okay if (strictIsDog(dog)) {} // okay if (strictIsDog(mixed)) {} // okay if (strictIsDog(cat)) {} // error! // ~~~ <-- Cat is not assignable to Dog
    1. 要给程序员这样的灵活性,Go必需支持指向分配在堆中对象的指针,我们将这种指针称为内部指针。上文的例子中X.buff字段保存于struct之中,但也可以保留这个内部字段的地址。比如,可以将这个地址传递给I/O子程序。在Java以及许多类似的支持垃圾回收的语音中,不可能构造象这样的内部指针,但在Go中这么做很自然。这样设计的指针会影响可以使用的回收算法,并可能会让算法变得更难写,但经过慎重考虑,我们决定允许内部指针是必要的,因为这对程序员有好处,让大家具有降低对(可能实现起来更困难)回收器的压力的能力。到现在为止,我们的将大致相同的Go和Java程序进行对比的经验表明,使用内部指针能够大大影响arena总计大型、延迟和回收次数。
  28. Jun 2021
  29. May 2021
    1. Darren Dahly. (2021, February 24). @SciBeh One thought is that we generally don’t ‘press’ strangers or even colleagues in face to face conversations, and when we do, it’s usually perceived as pretty aggressive. Not sure why anyone would expect it to work better on twitter. Https://t.co/r94i22mP9Q [Tweet]. @statsepi. https://twitter.com/statsepi/status/1364482411803906048

  30. Apr 2021
    1. Very slow, very cheap shipping via Royal Mail. Royal Mail advertises an ‘online’ international 12 week ’no rush’ service (not trackable). The price of the service is dependant on weight. It may be possible for international shipping to be achieved for around £15 GBP, may be even less! (This is not a typing error).  If you are interested in this service you will need to contact us before the campaign ends.

      Why do we need to contact you before the campaign ends if we want cheap shipping? Why wouldn't we want cheap shipping? What will shipping be if we don't choose that? How do we choose that? Why can't we choose shipping directly after the campaign ends?

    1. Yet, it certainly is important to make the proper choices when picking up style. Similarly to fashion, code style reflects our credo as developers, our values and philosophy. In order to make an informed decision, it’s mandatory to understand the issue at stake well. We all have defined class methods many times, but do we really know how do they work?
  31. Mar 2021
  32. Feb 2021
    1. Defaults names are given to steps without the :id options, but these might be awkward sometimes.

      Why would those default names ever be awkward?

      If you the default name is whatever comes after step:

      step :default_name
      

      then why can't you just change that name to whatever you want?

      To answer my own question: I think you can do that, as long as the name is the 1st argument to step. But below I noticed an example where a Subprocess was the 1st argument instead, and so it needs a name in this case:

      step Subprocess(DeleteAssets), id: :delete_assets
      

      Why are they inconsistent about calling it name or id? Which one is it? I guess it's an id since that's what the key is called, and since there's an Id() helper to reference a task by its id.

    1. @adisos if reform-rails will not match, I suggest to use: https://github.com/orgsync/active_interaction I've switched to it after reform-rails as it was not fully detached from the activerecord, code is a bit hacky and complex to modify, and in overall reform not so flexible as active_interaction. It has multiple params as well: https://github.com/orgsync/active_interaction/blob/master/spec/active_interaction/modules/input_processor_spec.rb#L41

      I'm not sure what he meant by:

      fully detached from the activerecord I didn't think it was tied to ActiveRecord.

      But I definitely agree with:

      code is a bit hacky and complex to modify

  33. Jan 2021
  34. Dec 2020
  35. Nov 2020
  36. Oct 2020
  37. Sep 2020
  38. Aug 2020
    1. As a result, I end up quoting multiple people, sometimes quoting several people back-to-back, before even writing my reply. In those instances it feels like I'm not properly citing those individuals. I feel like it might seem I'm not providing new readers appropriate context for a given quote. It might also be implied that separate quotes are from the same person, leading to mis-attribution.
  39. Jun 2020
  40. May 2020
  41. Mar 2020
  42. Feb 2019
  43. Feb 2018
  44. Jan 2017
  45. May 2015