- Jun 2024
-
languagelog.ldc.upenn.edu languagelog.ldc.upenn.edu
-
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).
-
- Apr 2024
-
www.theguardian.com www.theguardian.com
-
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/
-
- Jan 2024
-
mongoosejs.com mongoosejs.com
-
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 theAnimal
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 theAnimal
schema. When you create an instance of theAnimal
model (e.g., a dog), you can then callfindSimilarTypes
on that instance to find other animals with the same type. The method uses thethis.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 theAnimal
model.
Tags
Annotators
URL
-
-
support.google.com support.google.com
-
Instead, look for the option to "Sign in with Google," which is a safer way to sync your mail to other apps. Learn about Sign in with Google.
Tags
Annotators
URL
-
- Dec 2023
-
developers.google.com developers.google.com
-
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.
-
-
developers.google.com developers.google.com
-
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
-
- Nov 2023
-
developers.google.com developers.google.com
-
Sign in with Google for Web doesn't support silent sign in, in which case a credential is returned without any UI displayed. End users always see some UI, manual or automatic sign in, when a login credential is returned from Google to the relying party. This improves user privacy and control.
-
-
support.apple.com support.apple.com
Tags
Annotators
URL
-
-
www.okta.com www.okta.com
-
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.
-
-
www.okta.com www.okta.com
-
Improved blank slate experiences: After a user signs in using a social media account, site owners have the ability to auto-suggest or auto-populate their settings with information held in their social account. This lets organizations create a first impression of convenience and encourage further use of their apps and site.
-
- Oct 2023
-
en.wikipedia.org en.wikipedia.org
- Mar 2023
-
fidoalliance.org fidoalliance.org
-
Passkeys Accelerating the Availability of Simpler, Stronger Passwordless Sign-Ins
-
- Nov 2022
-
www.autohotkey.com www.autohotkey.com
-
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.
-
- Sep 2022
-
rowman.com rowman.com
-
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
-
- Mar 2022
-
-
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.
-
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
-
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.
-
Children can typically understand and act on a request to point to theirnose, for example, a full six months before they are able to form the spokenword “nose.”
Many children are also able to begin using sign language for their needs prior to being able to use spoken language as well.
-
- Dec 2021
-
Local file Local file
-
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
-
- Oct 2021
-
-
We will also show you how to de-link your Chrome profile from your Google account(s) by stopping Chrome from syncing with Google in the first place. This will help keep your Chrome profile separate from your Google account and enhance your online privacy.
-
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.
-
As mentioned already, Chrome automatically signs you in to your Google account every time you sign into a Google service, like Gmail, YouTube, Google Photos, etc. It also links your current Chrome profile to that account. While Google says that it does so to offer a ‘seamless experience’, it is a privacy nightmare for many users.
-
-
www.ghacks.net www.ghacks.net
-
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.
-
-
www.uclhospitals.brc.nihr.ac.uk www.uclhospitals.brc.nihr.ac.uk
-
Pavord, S., Scully, M., Hunt, B. J., Lester, W., Bagot, C., Craven, B., Rampotas, A., Ambler, G., & Makris, M. (2021). Clinical Features of Vaccine-Induced Immune Thrombocytopenia and Thrombosis. New England Journal of Medicine, NEJMoa2109908. https://doi.org/10.1056/NEJMoa2109908
-
- Jul 2021
-
www.nature.com www.nature.com
-
Al-Aly, Z., Xie, Y., & Bowe, B. (2021). High-dimensional characterization of post-acute sequelae of COVID-19. Nature, 594(7862), 259–264. https://doi.org/10.1038/s41586-021-03553-9
-
- Mar 2021
-
en.wikipedia.org en.wikipedia.org
-
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.
Tags
Annotators
URL
-
- Dec 2020
-
-
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.
-
- Oct 2020
-
www.pnas.org www.pnas.org
-
Bosco-Lauth, A. M., Hartwig, A. E., Porter, S. M., Gordy, P. W., Nehring, M., Byas, A. D., VandeWoude, S., Ragan, I. K., Maison, R. M., & Bowen, R. A. (2020). Experimental infection of domestic dogs and cats with SARS-CoV-2: Pathogenesis, transmission, and response to reexposure in cats. Proceedings of the National Academy of Sciences. https://doi.org/10.1073/pnas.2013102117
-
- Jun 2020
-
chem.libretexts.org chem.libretexts.org
-
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.
Tags
Annotators
URL
-
- May 2020
-
en.wikipedia.org en.wikipedia.org
Tags
Annotators
URL
-
-
touchpoints-demo.app.cloud.gov touchpoints-demo.app.cloud.gov
-
Touchpoints uses Login.gov to handle user accounts. Once you authenticate with Login.gov, you will be signed in and redirected back to Touchpoints.
Tags
Annotators
URL
-
- Apr 2020
-
github.com github.com
-
developers.google.com developers.google.com
-
docs.google.com docs.google.com
-
github.com github.com
-
I need that model created despite being invalid, so it actually works in my favor (I have an after-signup profile creation process users through
-
- Oct 2019
-
hypothes.is hypothes.is
-
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.
-
Professional Acrylic LLC | Acrylic Moulding and Bending Dubai
To find the best suppliers in Dubai which are good in Acrylic Fabrication, Acrylic Engraving, Acrylic Moulding and Acrylic Stand Suppliers in Dubai? Call our expert now to get a free quote.
-
- Feb 2019
-
static1.squarespace.com static1.squarespace.com
-
but we have ample proof, that this did not arise from a principle of neces-sity, but conveniency
What would Siegert have to say about this?
-
our ideas; and this is the utmost extent or their power. Did nothing pass in the mind of man, but ideas;
As opposed to a sign (e.g. smoke is a sign of fire)
-
-
static1.squarespace.com static1.squarespace.com
-
deas, says Locke, arc the signs of real things
Signs Vs. Symbols.
-
- Jan 2019
-
static1.squarespace.com static1.squarespace.com
-
power of words to represent preexistingthings
Sign vs. Symbol distinction -- crucial in understanding language.
-
- Aug 2018
-
international.kk.dk international.kk.dk
-
NemID is a digital signature and an all in one login for public and private services on the Internet.
NemID - Digital Single Sign On for Citizens
-
- Oct 2016
-
www.statuspage.io www.statuspage.io
-
Which single sign-on services do you integrate with? Technically, single sign-on can work with any IDP that is SAML 2.0 compliant -- this includes services like Okta, Ping Identity, OneLogin, and Bitium.
single sign-on
-
- Oct 2015
-
web.hypothes.is web.hypothes.is
-
cross-website user identities
aka SSO?
Tags
Annotators
URL
-
- Nov 2013
-
caseyboyle.net caseyboyle.net
-
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.
Tags
Annotators
URL
-
-
caseyboyle.net caseyboyle.net
-
"If signs are infallible," he says, "they are not arguments, because where they exist there is no room for question; even if they are doubtful, they are not arguments because they themselves need the support of arguments."
Signs vs. arguments
Tags
Annotators
URL
-
- Oct 2013
-
rhetoric.eserver.org rhetoric.eserver.org
-
Now the propositions of Rhetoric are Complete Proofs, Probabilities, and Signs.
From chapter 2.
-
-
rhetoric.eserver.org rhetoric.eserver.org
-
the materials of enthymemes are Probabilities and Signs
-
-
rhetoric.eserver.org rhetoric.eserver.org
-
The premisses from which enthymemes are formed are "probabilities" and "signs"
-