synthesis that integrates and yet transcends previous ways of seeing the world. This is a both/and, not an either/or shift
for - new integrative worldview - integrates and transcends - both / and, not - either / or
synthesis that integrates and yet transcends previous ways of seeing the world. This is a both/and, not an either/or shift
for - new integrative worldview - integrates and transcends - both / and, not - either / or
Booleano.
Los operadores booleanos se pueden expresar tanto en símbolos como en palabras:
Ejemplos: Otros operadores booleanos Comillas “, Paréntesis (), Asteriscos * trabajan conjuntamente AND, OR, NOT. para poder expresarse entre datos en el sistema de programación.
for - article - Medium - Happy andings! - In praise of "and" - Donna Nelham - 2022, May 2022 - and, not or - example
what science does is undermining or kind of challenging everything we believe to be right or all of our preconceptions about the world are challenged and sometimes completely reversed or revolutionised.
for - adjacency - Deep Humanity - physiosphere - symbolosphere - language - science - preconceptions - hyperobjects - scientific model - prediction - YouTube - Beyond the perceptual envelope - Royal Institution - Deep Humanity BEing journeys - And, not or - example adjacency - between - preconceptions - concepts - scientific model - prediction - Deep Humanity - symbolosphere - physiosphere - language - science - adjacency relationship - Paradoxically, science overlays phenomenological reality with a constructed, symbolic layer - From a Deep Humanity perspective, the physiosphere is overlaid with the symbolosphere - The science narrative of - the deposition of animal remains over hundreds of millions of years make up - the cliffs we experience phenomenologically today - assumes the existence of hyperobjects we have no capacity to directly sense - Science is a process that - pays attention to our phenomenological reality - construct a story using specific concepts to explain the observed general class of phenomena in a consistent and repeatable - and most importantly, can predict new observable phenomena using the symbolic model Hence, science is a predictive activity which - begins in phenomenological reality, - the physiosphere - maps to symbols reality in a scientific model - the symbolosphere - makes new symbolic, predictions about phenomenological reality - and finally makes observations ink our phenomenological reality of the symbolically predicted phenomena to validate or refute - This process alternates between the two parallel worlds we seamlessly inhabit, - the physiosphere and - the symbolosphere - and this explains why achieve is - not either constructed OR discovered, but - is both constructed AND discovered
we need to reframe away from climate change and reframe toward ecological crisis or ecological collapse, focus on ecosystems. We need to focus our energy on grassroots organizing and local efforts to restore the health of ecosystems, which does change economics, it does change politics, does change all those things
for -❓- not EITHER / OR but AND - climate crisis - community engagement strategy - futures - backcasting from 2030
❓- not EITHER / OR but AND - not - either top down climate action OR - bottom up climate action, - but both - top down climate action AND - bottom up climate action
When D. T. Suzuki came to this country later, he said he had a great realization contemplating the Japanese expression, “The elbow does not bend backwards.” The idea is that the elbow only bends inward, bends one way. Is that a limitation of the elbow? Is it a defect? That a really good elbow would bend both ways? Is it a design flaw that we’re stuck with? Instead, it’s a matter of seeing the particular irony in what we would think of as a limitation rather, as a definition, a part of what we intrinsically are, and freedom is not a question of being able to do something, to do anything whatsoever, but to fully function within our design and our capacity.
for - quote - The Elbow does not bend backwards - Dasietz Suzuki - contradiction - the finite and infinite in one being - meme - to be or not to be, that is the question - to be AND not to be, that is the answer
quote - The Elbow does not bend backwards - Dasietz Suzuki - Barry Magid - When D. T. Suzuki came to this country later, he said he had a great realization contemplating the Japanese expression, “The elbow does not bend backwards.” - The idea is that the elbow only bends inward, bends one way. Is that a limitation of the elbow? Is it a defect? That a really good elbow would bend both ways? Is it a design flaw that we’re stuck with? Instead, - it’s a matter of seeing the particular irony in - what we would think of as a limitation rather, as a definition, a part of what we intrinsically are, and - freedom is not a question of being able to do something, to do anything whatsoever, - but to fully function within our design and our capacity. - The full freedom of the functioning of the elbow takes place in bending inward, not outward.
comment - the contradiction of our life is that - the infinite and the finite exist in the same mortal coil - this consciousness which is capable of unlimited imagination - is housed in a fragile, time-limited body - Yet all life exists in the concrete form of living / dying individual's housed in bounded, albeit dynamic bodies - Each of us takes on a unique and specific morphological form, determined by the genetic material passed on to us intergenerationally - Each individual belongs to a unique species, a unique replicable template that is unique - And yet, all life derives from the same reality - So each species, and all individuals belonging to each species, have unique bounded bodies - While that universal wisdom articulates itself uniquely in each species and each individual of a species, it is nonetheless a universal wisdom behind it all - So the elbow does not bend backwards in the human - and the wings flutter only one way in birds - and the fins only project one way in fish - etc, etc.... - Can we trace ourselves from the perceived limited - all the way back to the unlimited infinite? - To be or not to be, that is the question - To be AND not to be, that is the answer
And if I need for simple service object without validation? You can use Formalism::Action, a parent of Formalism::Form.
Failure to assemble an appropriate IEP team:
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:
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.
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);
}
}
}
);
methods
object directly in the schema:javascript
animalSchema.methods.findSimilarTypes = function(cb) {
return mongoose.model('Animal').find({ type: this.type }, cb);
};
Schema.method()
helper:javascript
animalSchema.method('findSimilarTypes', function(cb) {
return mongoose.model('Animal').find({ type: this.type }, cb);
});
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.
```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.
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
for: Yuval Noah Harari, Hamas Israel war 2023, global liberal order, abused-abuser cycle, And not Or
summary
it's hard to people to understand that you can be victim and perpetrator at the 00:35:03 same time it's a very simple fact impossible to accept for most people either you're a victim or you're perpetrator there is no other but no usually we are both you know from the level of individuals how we behave in 00:35:17 our family to the level of entire nations we are usually both and and and of course perhaps one issue is that we don't feel like that as individuals we don't feel that we have the full responsibility for our state so there's 00:35:28 a sort of strange problem here too which is that you feel as an individual that you're a victim and you feel distance from your state
for: victim AND perpetrator, situatedness, perspectival knowing, AND, not OR, abused-abuser cycle, individual /collective gestalt, Hamas Israel war 2023
quote
It’s not one or the other. It’s both.
for: conflict, Israel-Palestine conflict
comment
"I didn't fully understand it at the time, but throughout my time as a freshman at Boston College I've realized that I have the power to alter myself for the better and broaden my perspective on life. For most of my high school experience, I was holding to antiquated thoughts that had an impact on the majority of my daily interactions. Throughout my life, growing up as a single child has affected the way am in social interactions. This was evident in high school class discussions, as I did not yet have the confidence to be talkative and participate even up until the spring term of my senior year."
I don't believe the sprockets and sprockets-rails maintainers (actually it's up to the Rails maintainers, see rails/rails#28430) currently consider it broken. (I am not a committer/maintainer on any of those projects). So there is no point in "waiting for someone else to fix" it; that is not going to happen (unless you can change their minds). You just need to figure out the right way to use sprockets 4 with rails as it is.
I would much rather have a "cosine" module than a "trigonometry" module because chances are good I only need a small fraction of the utilities provided by the larger trig module.
Second, I don't agree that there are too many small modules. In fact, I wish every common function existed as its own module. Even the maintainers of utility libraries like Underscore and Lodash have realized the benefits of modularity and allowed you to install individual utilities from their library as separate modules. From where I sit that seems like a smart move. Why should I import the entirety of Underscore just to use one function? Instead I'd rather see more "function suites" where a bunch of utilities are all published separately but under a namespace or some kind of common name prefix to make them easier to find. The way Underscore and Lodash have approached this issue is perfect. It gives consumers of their packages options and flexibility while still letting people like Dave import the whole entire library if that's what they really want to do.