59 Matching Annotations
  1. Aug 2025
    1. 症状がなく糖尿病になっていることに気がついていない方も多くいます。糖尿病では、かなり血糖値が高くなければ症状が現れません。 高血糖における症状は、 喉が渇く、水をよく飲む 尿の回数が増える 体重が減る 疲れやすくなる などです。

      のどが渇くのは、糖の水を引き寄せる性質による

  2. Jul 2025
  3. May 2025
  4. Mar 2025
  5. Jun 2024
    1. It's an interesting position and had me rethinking things a bit, but the way I look at it, the actions themselves are negative; it's their boundary conditions which are different. Take for instance embark/disembark. In pseudo-mathematical terms, I would tend to think they increment or decrement one's embarkedness, with an upper boundary of 1 (aboard), and a lower boundary of 0 (ashore). The non-existence of values >1 (super-aboard) or <0 (anti-aboard) shouldn't affect the relative polarity of the actions themselves. I think. Looking through the rest of the list, there's a variety of different boundary conditions. Prove/disprove would range from 1 to -1 (1=proven, 0=asserted but untested, -1=proven false), entangle/disentangle seems to range from 0 to infinity (because you can always be a little more entangled, can't you?), and please/displease is perhaps wholly unbounded (if we imagine that humanity has an infinite capacity for both suffering and joy).
  6. Apr 2024
    1. Die Konzentration der drei wichtigsten Treibhausgase CO<sub>2</sub>, Methan und NO<sub>2</sub> hat 2023 neue Rekordwerte erreicht. Die Daten der amerikanischen NOAA zeigen, dass sich der Anstieg im Durchschnitt der letzten Jahre nicht verlangsamt hat, auch wenn er in manchen Vorjahren noch steiler verlief. Die CO<sub>2</sub>-Konzentation liegt 50% höher als in der vorindustriellen Zeit und entspricht der vor 4 Millionen Jahren. Die Atmosphäre enthält 160% mehr Methan als vor der Industrialisierung. Außer dem Verbrennen von Kohle, Öl und Gas ist die industrielle Landwirtschaft Hauptursache der Treibhausgas-Konzentration. https://www.theguardian.com/environment/2024/apr/06/record-highs-heat-trapping-gases-climate-crisis

      Bericht: https://research.noaa.gov/2024/04/05/no-sign-of-greenhouse-gases-increases-slowing-in-2023/

  7. Jan 2024
    1. Instance methods Instances of Models are documents. Documents have many of their own built-in instance methods. We may also define our own custom document instance methods. // define a schema const animalSchema = new Schema({ name: String, type: String }, { // Assign a function to the "methods" object of our animalSchema through schema options. // By following this approach, there is no need to create a separate TS type to define the type of the instance functions. methods: { findSimilarTypes(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); } } }); // Or, assign a function to the "methods" object of our animalSchema animalSchema.methods.findSimilarTypes = function(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); }; Now all of our animal instances have a findSimilarTypes method available to them. const Animal = mongoose.model('Animal', animalSchema); const dog = new Animal({ type: 'dog' }); dog.findSimilarTypes((err, dogs) => { console.log(dogs); // woof }); Overwriting a default mongoose document method may lead to unpredictable results. See this for more details. The example above uses the Schema.methods object directly to save an instance method. You can also use the Schema.method() helper as described here. Do not declare methods using ES6 arrow functions (=>). Arrow functions explicitly prevent binding this, so your method will not have access to the document and the above examples will not work.

      Certainly! Let's break down the provided code snippets:

      1. What is it and why is it used?

      In Mongoose, a schema is a blueprint for defining the structure of documents within a collection. When you define a schema, you can also attach methods to it. These methods become instance methods, meaning they are available on the individual documents (instances) created from that schema.

      Instance methods are useful for encapsulating functionality related to a specific document or model instance. They allow you to define custom behavior that can be executed on a specific document. In the given example, the findSimilarTypes method is added to instances of the Animal model, making it easy to find other animals of the same type.

      2. Syntax:

      Using methods object directly in the schema options:

      javascript const animalSchema = new Schema( { name: String, type: String }, { methods: { findSimilarTypes(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); } } } );

      Using methods object directly in the schema:

      javascript animalSchema.methods.findSimilarTypes = function(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); };

      Using Schema.method() helper:

      javascript animalSchema.method('findSimilarTypes', function(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); });

      3. Explanation in Simple Words with Examples:

      Why it's Used:

      Imagine you have a collection of animals in your database, and you want to find other animals of the same type. Instead of writing the same logic repeatedly, you can define a method that can be called on each animal instance to find similar types. This helps in keeping your code DRY (Don't Repeat Yourself) and makes it easier to maintain.

      Example:

      ```javascript const mongoose = require('mongoose'); const { Schema } = mongoose;

      // Define a schema with a custom instance method const animalSchema = new Schema({ name: String, type: String });

      // Add a custom instance method to find similar types animalSchema.methods.findSimilarTypes = function(cb) { return mongoose.model('Animal').find({ type: this.type }, cb); };

      // Create the Animal model using the schema const Animal = mongoose.model('Animal', animalSchema);

      // Create an instance of Animal const dog = new Animal({ type: 'dog', name: 'Buddy' });

      // Use the custom method to find similar types dog.findSimilarTypes((err, similarAnimals) => { console.log(similarAnimals); }); ```

      In this example, findSimilarTypes is a custom instance method added to the Animal schema. When you create an instance of the Animal model (e.g., a dog), you can then call findSimilarTypes on that instance to find other animals with the same type. The method uses the this.type property, which refers to the type of the current animal instance. This allows you to easily reuse the logic for finding similar types across different instances of the Animal model.

      Certainly! Let's go through each part and explain it in simple terms: ### 1. `this` in Mongoose: - **What is `this`?** In JavaScript, `this` refers to the current context or object. In Mongoose, particularly within methods and middleware functions, `this` represents the instance (document) the function is currently operating on. - **Why is it used?** `this` is used to access and modify the properties of the current document. For example, in a Mongoose method, `this` allows you to refer to the fields of the specific document the method is called on. ### 2. Example: Let's use the `userSchema.pre("save", ...)`, which is a Mongoose middleware, as an example: ```javascript userSchema.pre("save", async function (next) { if (!this.isModified("password")) { next(); } else { this.password = await bcrypt.hash(this.password, 10); next(); } }); ``` - **Explanation in Simple Words:** - Imagine you have a system where users can sign up and set their password. - Before saving a new user to the database, you want to ensure that the password is securely encrypted (hashed) using a library like `bcrypt`. - The `userSchema.pre("save", ...)` is a special function that runs automatically before saving a user to the database. - In this function: - `this.isModified("password")`: Checks if the password field of the current user has been changed. - If the password is not modified, it means the user is not updating their password, so it just moves on to the next operation (saving the user). - If the password is modified, it means a new password is set or the existing one is changed. In this case, it uses `bcrypt.hash` to encrypt (hash) the password before saving it to the database. - The use of `this` here is crucial because it allows you to refer to the specific user document that's being saved. It ensures that the correct password is hashed for the current user being processed. In summary, `this` in Mongoose is a way to refer to the current document or instance, and it's commonly used to access and modify the properties of that document, especially in middleware functions like the one demonstrated here for password encryption before saving to the database.

    Tags

    Annotators

    URL

  8. Dec 2023
    1. This describes account linking from the opposite direction than I'm used to: starting with the Google App, which requests your app to share data from your service with Google.

      As it says on https://developers.google.com/identity/account-linking overview:

      The secure OAuth 2.0 protocol lets you safely link a user's Google Account with their account on your platform, thereby granting Google applications and devices access to your services.

    1. A personalized button gives users a quick indication of the session status, both on Google's side and on your website, before they click the button. This is especially helpful to end users who visit your website only occasionally. They may forget whether an account has been created or not, and in which way. A personalized button reminds them that Sign In With Google has been used before. Thus, it helps to prevent unnecessary duplicate account creation on your website.

      first sighting: sign-in: problem: forgetting whether an account has been created or not, and in which way

  9. Nov 2023
    1. As a prevention method, organizations should consider implementing passwordless practices like fingerprints or facial recognition, as well as modern authentication standards like WebAuthn, which remove passwords from the authentication experience. When organizations opt for these authentication methods, they help to mitigate the risk of stolen credentials, and minimize the chance of account takeovers.
  10. Oct 2023
  11. Mar 2023
  12. Nov 2022
    1. Page: Escape Sequences

      I was looking for documentation on escaped characters.

      This was because Auto Hotkey threw an error when I used <%* %> as an option for the text insert script. It said the illegal character was * but really what was happening was that the unquoted text %* % was treated like a variable since % is used to enclose variables in Auto Hotkey. The solution was to escape the percent sign with one left back tick.

  13. Sep 2022
    1. they suggest that the use of symbols to model the world developed rapidly between about 20,000 and 10,000 years ago, and has the effect of giving emphasis to analytic thought as the dominant mode of human consciousness. Rather than seeing symbols as the impetus for human logic, they argue for presymbolic elements of logic in Peirce’s sign categories shared widely by humans and other animals.

      !- explanation : language - instead of arguing for the power of symbols, they argue for the power of presymbolic elements of logic as per Charles Saunder Peirce's sign categories

  14. Mar 2022
    1. S CLEAR THAT spontaneous gestures can support intelligent thinking. There’salso a place for what we might call designed gestures: that is, motions that arecarefully formulated in advance to convey a particular notion. Geologist MicheleCooke’s gestures, inspired by sign language, fall into this category; she verydeliberately uses hand movements to help students understand spatial conceptsthat are difficult to communicate in words.

      There are two potential axes for gestures: spontaneous and intentional. Intentional gestures include examples like sign language, memetic pantomimes, and dance or related animal mimicry gestures used by indigenous cultures for communicating the movement and behavior of animals.

      Intentional gestures can also be specifically designed for pedagogical purposes as well as for mnemonic purposes.

      cross reference to Lynne Kelly example about movement/gesture in indigenous cultures.

    2. Cooke often employs a modified form of sign language with her (hearing)students at UMass. By using her hands, Cooke finds, she can accurately capturethe three-dimensional nature of the phenomena she’s explaining.

      Can gesturing during (second) language learning help dramatically improve the speed and facility of the second language acquisition by adult learners?

      Evidence in language acquisition in children quoted previously in The Extended Mind would indicate yes.

      link this related research

    3. People who are fluent in sign language, as Cooke is, have beenfound to have an enhanced ability to process visual and spatial information. Suchsuperior performance is exhibited by hearing people who know sign language, aswell as by the hearing impaired—suggesting that it is the repeated use of astructured system of meaning-bearing gestures that helps improve spatialthinking.

      Evidence indicates that those who are have experience or fluency in sign language (both hearing and non-hearing) have increased visual-spatial intelligence and reasoning. Practice using gesturing directly improves spatial thinking.

  15. Dec 2021
    1. Examining the dynamics oforganizational development is useful for understanding how alliances withnational intermediaries can strengthen grassroots engagement. Table 2 sum-marizes these dynamics.

      Flagging that something is important. then following with

    Tags

    Annotators

  16. Oct 2021
    1. To do that, Chrome automatically links your Chrome profile to a Google account when you sign in to any Google service on the web. That helps Google deliver a ‘seamless experience’ across all devices by letting you sync your history, bookmarks, passwords, etc., across multiple devices. Meanwhile, privacy-conscious users see this as a major threat to their online privacy and advise users to remove their Google account from Chrome.
    1. Some Chrome users may like the new functionality as it makes it easier for them to sign in or out of Chrome and Google on the Web. Others may dislike it for privacy and user-choice reasons. Think about it, if you sign in to Chrome you are automatically recognized by any Google property on the web as that Google user.
  17. Jul 2021
  18. Mar 2021
    1. any form of activity, conduct, or process that involves signs, including the production of meaning. A sign is anything that communicates a meaning, that is not the sign itself, to the interpreter of the sign. The meaning can be intentional such as a word uttered with a specific meaning, or unintentional, such as a symptom being a sign of a particular medical condition. Signs can communicate through any of the senses, visual, auditory, tactile, olfactory, or taste.
  19. Dec 2020
    1. Used injudiciously in these circumstances, mathematics – and especially mathematical modelling – can serve to obfuscate rather than clarify, or at best add nothing at all to the situation other than the illusion of control.

      We find it very difficult to deal with uncertainty so are comforted by the high Priestesses of our era, vaguely aware of our hunger for the signs, symbols written in the runes descended from antiquity for portents of the future.

  20. Oct 2020
  21. Jun 2020
    1. Heat and work have signs (positive or negative), and the sign of each depends on whether the system we are considering is gaining or losing energy. In this class, if a process makes the system gain energy, qqq and/or www are positive; if the process makes the system lose energy, qqq and/or www are negative. We can put this information into four formal statements: If heat flows into a system, qqq is positive. If heat flows out of a system, qqq is negative If the surroundings do work on the system, www is positive. If the system does work, www is negative.

      Heat and work have signs (positive or negative), and the sign of each depends on whether the system we are considering is gaining or losing energy. In this class, if a process makes the system gain energy, q and/or w are positive; if the process makes the system lose energy, q and/or w are negative. We can put this information into four formal statements:

      • If heat flows into a system, q is positive.
      • If heat flows out of a system, q is negative
      • If the surroundings do work on the system, w is positive.
      • If the system does work, w is negative.
  22. May 2020
  23. touchpoints-demo.app.cloud.gov touchpoints-demo.app.cloud.gov
  24. Apr 2020
  25. Oct 2019
    1. Get the best Acrylic Moulding and Bending Services by Professional Acrylic LLC

      We are one of the best Suppliers for Acrylic Moulding and Bending in Dubai. Our professional and qualified team is very best in doing Moulding and Bending in Acrylic Products. Call our expert to get a free quote.

  26. Feb 2019
  27. Jan 2019
  28. Aug 2018
  29. Oct 2016
  30. Oct 2015
  31. Nov 2013
    1. Truths are illusions which we have forgotten are illusions- they are metaphors that have become worn out and have been drained of sensuous force, coins which have lost their embossing and are now considered as metal and no longer as coins.

      Money was originally precious metals, and then signs for precious metals (paper money), and then signs for the signs for precious metals (debit/credit cards), and is now turning into signs for the signs for the signs for precious metals (apps that represent debit/credit cards). Just as money underwent this transition, so did truth. We now take truth to mean something fixed, but we have just forgotten that truth is a sign for a social illusion.

  32. Oct 2013