These build on prior art and existing standards like OAuth, OIDC and payment tokenization —but are used together to remove many steps that might otherwise require a human in the loop.
强调了现有标准和技术的融合使用,这是实现自动化流程的关键,同时也避免了过时的做法。
These build on prior art and existing standards like OAuth, OIDC and payment tokenization —but are used together to remove many steps that might otherwise require a human in the loop.
强调了现有标准和技术的融合使用,这是实现自动化流程的关键,同时也避免了过时的做法。
I'm doing most of this work um in Randa because that's a country where it's relatively relatively easy to um access these populations they're still alive
for - neuroscience - of obedience - study - Rawanda - existing populations of perpetrators and those who refused to participate
Haque et al.26 presented a novel exoskeleton-based por-table gait data collection system that streamlines the place-ment of the sensors and allows them to be fastenedsecurely and stably with consistent alignment thus provid-ing high-accuracy gait measurement with significant usercomfort for prolonged usage
Sensors solutions
In contrast, translationwas controlled by 3 degree-of-freedom (DOF) planar par-allel mechanism. Villa-Villasen ̃or et al.2
3 degree of freedom mechanism
Malcolm et al.14 developed a bi-articular knee–ankle–foot exoskeleton for healthy individuals for performanceenhancement during walkin
Check this also
In another work, KE actuated by a rotary series elasticactuator for gait rehabilitation was developed by Konget al.5
Another Solution to check up
For gait rehabilitation, Beyl et al.4 proposed a kneeexoskeleton (KE) actuated by pneumatic artificial muscles.
Need to check solution for knee exoskeleton by Beyl et. al
A shared car association, every shared car replaces 9 to 13 private cars for the same amount of travel freedom, point to point. You don't lose any freedom like you would in public transport. It's just like a neighborhood shares a dozen cars. 95% of the cars are in the garage at any time.
for - example - efficacy of mutualisation - transportation - cars - SOURCE - Youtube Ma Earth channel interview - Devcon 2024 - Cosmo Local Commoning with Web 3 - Michel Bauwens - 2025, Jan 2 - stats - mutualisation - transportation - cars - 1 car can replace 13 - car is parked most of the time - 10% of existing cars doubles our requirement - SOURCE - Youtube Ma Earth channel interview - Devcon 2024 - Cosmo Local Commoning with Web 3 - Michel Bauwens - 2025, Jan 2
around the AI is um the problem right now as I understand it
for - progress traps - AI - created by mind level that created all our existing problems - AI is not AI but MI - Mineral Intelligence
for - Preserving old, existing buildings is greenest - from - California Forever - intentional community - green debate
from - California Forever - intentional community - green debate - https://hyp.is/DKpS7FQGEe-xvLfZC4U-7Q/www.truthdig.com/articles/californias-urban-dream/
I've found that a lot of um Pioneers who have had brilliant ideas and have fought through and you know sort of um uh spent a lot of energy in their life pushing 00:42:00 some someone with some new idea those people are often the most resistant to other new ideas it's amazing
for - resonates with - existing meme
resonates with - existing meme - yesterday's revolutionaries become today's old guard
comment - Lebenswelt and multimeaningverse
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.
for: COP28 talk - later is too late, Global tipping points report, question - are there maps of feedbacks of positive tipping points?, My Climate Risk, ICICLE, positive tipping points, social tipping points
NOTE
SUMMARY
This video has not been uploaded on youtube yet so there is no transcription and I am manually annotating on this page.
Positive tipping points
SPEAKER PANEL
Global Carbon Budget report summary
0:19:47: Graph of largest emitters
00:20:51: Land Use Emissions
three countries represent 55% of all land use emissions - Brazil - DRC - Indonesia
00:21:55: CDR
00:23:00: Remaining Carbon Budget
Advancing an Inclusive Process for Adaptation Planning and Action
adaptation is underfinanced. The gap is:
-00:29:46: My Climate Risk Regional Hubs - Looking at climate risks from a local perspective. - @Nate, @SoNeC - 00:30:33 ""ICICLE** storyllines - need bottom-up approach (ICICLE - Integrated Climate Livelihood and and Environment storylines)
00:32:58: Global Tipping Points
00:33:46: Five of planetary systems can tip at the current 1.2 Deg C
00:35:39
00:36:00
-00:37:00 - We have accelerating positive feedbacks and if we coordinate policy changes with consumer behavior change and business behavior change to reinforce these positive feedbacks, we can help accelerate change in the other sectors of the global economy responsible for all the other emissions
00:37:30
00:38:10
I'm rather concerned about adding svelte.config.js support to things that already have well established mechanisms for configuration.
Note that you can address this by creating signal handlers in Bash to actually do the forwarding, and returning a proper exit code. On the other hand that's more work, whereas adding Tini is a few lines in your Dockerfile.
McDiarmid, A. D., Tullett, A. M., Whitt, C. M., Vazire, S., Smaldino, P. E., & Stephens, J. E. (2021). Psychologists update their beliefs about effect sizes after replication studies. Nature Human Behaviour, 5(12), 1663–1673. https://doi.org/10.1038/s41562-021-01220-7
The energy sector contains a large number of long‐lived and capital‐intensive assets. Urban infrastructure, pipelines, refineries, coal‐fired power plants, heavy industrial facilities, buildings and large hydro power plants can have technical and economic lifetimes of well over 50 years. If today’s energy infrastructure was to be operated until the end of the typical lifetime in a manner similar to the past, we estimate that this would lead to cumulative energy‐related and industrial process CO2 emissions between 2020 and 2050 of just under 650 Gt CO2. This is around 30% more than the remaining total CO2 budget consistent with limiting global warming to 1.5 °C with a 50% probability (see Chapter 2)
Emissionen durch die Verfeuerung der vorhandenen Assets: 650 Gigatonnen
Das bedeutet eine 30prozentige Überschreitung des CO2-Budgets für 50% Wahrscheinlichkeit des 1,5°-Ziels
I'd love something similar to automatically crawl and index every site I visit. I'm forever losing stuff. I know I saw it but I can't remember where. reply parent chillpenguin () 1 hour ago on I use BrowserParrot for this. Works really well.https://www.browserparrot.com/ reply parent thinkmassive () 2 hours ago on ArchiveBox documents how to automatically archive links from your browser history:https://github.com/ArchiveBox/ArchiveBox/wiki/Usage#Import-l... reply parent mttjj () 5 hours ago on This is Mac only and I have no affiliation other than I like this developer but your request reminded me that he just launched this app: https://andadinosaur.com/launch-history-book reply parent akrymski () 1 hour ago on I use Google for this. It's really annoyingly good at finding previously visited pages. reply parent asselinpaul () 3 hours ago on https://heyday.xyz comes to mind reply parent fudged71 () 2 hours ago on Vortimo
Spinney, L. (2022). Pandemics disable people—The history lesson that policymakers ignore. Nature, 602(7897), 383–385. https://doi.org/10.1038/d41586-022-00414-x
James 💙 Neill - 😷 🇪🇺🇮🇪🇬🇧🔶. (2022, January 23). Of 51,141 deaths due to ischaemic heart diseases 32,872 (64.3%) had pre-existing conditions.💔 Do those 33k heart disease deaths not count? Or is an absence of pre-existing conditions only required for Covid deaths...😡⁉️ Source: ONS England 2019 [Tweet]. @jneill. https://twitter.com/jneill/status/1485327886164844546
Mills, M. C., & Rüttenauer, T. (2021). The effect of mandatory COVID-19 certificates on vaccine uptake: Synthetic-control modelling of six countries. The Lancet Public Health, 0(0). https://doi.org/10.1016/S2468-2667(21)00273-5
Its good to know how to implement it. I would prefer to use a gem myself.
Chu, J. S. G., & Evans, J. A. (2021). Slowed canonical progress in large fields of science. Proceedings of the National Academy of Sciences, 118(41). https://doi.org/10.1073/pnas.2021636118
The VTE widget was originally designed as the back-end for Gnome Terminal but was fortunately designed as a GTK widget so that other terminal emulator applications could leverage it instead of rolling their own. Many popular Linux terminal emulators use this component.
.
curl -o ~/.config/direnv/helpers.sh
In fact, npm is not trying to reinvent the wheel. You can find similarities between all three Workspace implementations.
Rather than write new tooling we decided to take advantage of tooling we had in place for our unit tests. Our unit tests already used FactoryBot, a test data generation library, for building up test datasets for a variety of test scenarios. Plus, we had already built up a nice suite of helpers that we coud re-use. By using tools and libraries already a part of the backend technology’s ecosystem we were able to spend less time building additional tooling. We had less code to maintain because of this and more time to work on solving our customer’s pain points.
Note: as for setting boolean variables: not only are true/false and 0/1 acceptable values, but also T/F and on/off. Thanks, coercible!
But in all this incongruous abundance you'll certanly find the links to expect It's just what is wanted: the tool, which is traditionally used to communicate automatically with interactive programs. And as it always occurs, there is unfortunately a little fault in it: expect needs the programming language TCL to be present. Nevertheless if it doesn't discourage you to install and learn one more, though very powerful language, then you can stop your search, because expect and TCL with or without TK have everything and even more for you to write scripts.
the Guardian. ‘Shield Some and Let Others Carry on? This Covid Theory Is Dangerous, and Foolish | Charlotte Summers’, 29 December 2020. http://www.theguardian.com/commentisfree/2020/dec/29/covid-theory-dangerous-health.
Reopening #162
https://github.com/rails/sprockets/issues/162 was already closed as duplicated (so this just creates another duplicate).
Technically this could be added there.
Oh, I see, it was from so long ago (2015), that it would probably be frowned upon to reopen such an old issue.
Another solution is using the Safe Navigation Operator &. introduced in Ruby 2.3 which is a bit better because this is a language feature rather than an opinionated runtime environment pollution
The assert method is used by all the other assertions. It pushes the second parameter to the list of errors if the first parameter evaluates to false or nil.
Seems like these helper functions could be just as easily used in ActiveRecord models. Therefore, they should be in a separate gem, or at least module, that can be used in both these objects and ActiveRecord objects.
My reasoning for not gemifying ActiveForm is that the custom not-rails-core logic is relatively small
I've utilized as many Rails modules as I can to make maintenance a lot easier as I just have to update Rails and I get the updates for free. By utilizing Rails core modules, it's a really small library - there are only 10 methods in the Base module!
I'd like to know specifically what you were aiming to achieve with this Gem as opposed to simply using https://github.com/apotonick/reform? I am happy to help contribute, but equally if there is a gem out there that already does the job well, I'd like to know why we shouldn't just use that.
I have checked the following close stackoverflow sources : Relation passed to #or must be structurally compatible. Incompatible values: [:references]
referencing similar questions so it won't be marked as duplicate
I've only done components that need to/can be Svelte-ified. For some things, like RTL and layout grid, you can just use the MDC packages.
This is Sass based, and therefore doesn't require Svelte components
Just because we could make Svelte wrapper components for each Material typography [thing], doesn't mean we should.
Compare:
material-ui [react] did make wrapper components for typography.
svelte-material-ui did not.
hyperscript is much simpler to refactor and DRY up your code than with JSX, because, being vanilla javascript, its easier to work with variable assignment, loops and conditionals.
It causes some implementation complexity just by existing.
Hooks embrace JavaScript closures and avoid introducing React-specific APIs where JavaScript already provides a solution.
Templates are prone to unnoticed runtime errors, are hard to test, and are not easy to restructure or decompose.
In contrast, Javascript-made templates can be organised into components with nicely decomposed and DRY code that is more reusable and testable.
In contrast, React apps shun templates and require the developer to create their DOM in Javascript, typically aided with JSX.
It's really useful if your PR relates to an outstanding issue, so please reference it in your PR, or create an explanatory one for discussion. In many cases, features are absent for a reason.
Links are just <a> elements, rather than framework-specific <Link> components. That means, for example, that this link right here, despite being inside a blob of markdown, works with the router as you'd expect
As you can see, it uses Javascript label syntax to tell the compiler where recalculation should be carefully managed. And you thought that no one uses labels any more.
Doshi, P. (2020). Covid-19: Do many people have pre-existing immunity? BMJ, 370. https://doi.org/10.1136/bmj.m3563
You can construct both by setting other properties inside the Promise callbacks, but we have {#await} and I feel like it should be used for this, instead of special casing the logic every time.
In a similar vein to (#33), it is arguably just something that compensates for the lack of power in the template language relative to JavaScript.
Yes, we use CSS. I thought a Svelte mantra was to use the existing language(s). This is fundamental CSS
The complaint is that by choosing less powerful languages, template-based frameworks are then forced to reintroduce uncanny-valley versions of those constructs in order to add back in missing functionality, thereby increasing the mount of stuff people have to learn.
In general, I'm unpersuaded by these arguments (learning curve is determined not just by unfamiliar syntax, but by unfamiliar semantics and APIs as well, and the frameworks in question excel at adding complexity in those areas).
One of the arguments that's frequently deployed in favour of JSX-based frameworks over template-based ones is that JSX allows you to use existing language constructs:
Plomecka, M., Gobbi, S., Neckels, R., Radziński, P., Skórko, B., Lazzeri, S., … Jawaid, A. (2020, May 5). Mental Health Impact of COVID-19: A global study of risk and resilience factors. https://doi.org/10.31234/osf.io/zj6b4
Schraff, D. (2020). Political trust during the Covid-19 pandemic: Rally around the flag or lockdown effects? [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/pu47c
Any top-level statement (i.e. not inside a block or a function) can be made reactive by prefixing it with the $: JS label syntax.
If you've found a problem in Ruby on Rails which is not a security risk, do a search on GitHub under Issues in case it has already been reported. If you are unable to find any open GitHub issues addressing the problem you found, your next step will be to open a new one.
It's funny that in such a complex gem like this, there's only one open issue, exactly about what I came here to post.
Shevlin, M., McBride, O., Murphy, J., Gibson Miller, J., Hartman, T. K., Levita, L., … Bentall, R. (2020, April 18). Anxiety, Depression, Traumatic Stress, and COVID-19 Related Anxiety in the UK General Population During the COVID-19 Pandemic. https://doi.org/10.31234/osf.io/hb6nq
I'd say that "dump" in the CS sense, both as noun and verb, is merely another application of its preexisting meanings even without the vulgar one, particularly the ones related to unloading/releasing contents. (For example, "dump truck".)
For some geeky reason, the computer programming world has long maintained a tradition of using words in new ways, with a studied obliviousness to their prior, rude meanings: for example, 'dump'. 'Falsey' is merely another word in this long, and quite useful, tradition.
ike I said, using the trading view chart is the best thing that you guys could have done. It's not, you know, like I said, don't, don't reinvent the wheel. It's already perfectly round. This one works great.
But I'm also not looking at necessarily reinvent the wheel, but the tools are offering specific applications, do a really good job at what they do.
Um, instead of building it from scratch cause they've done a good job and I believe that have a easier enough api to pull in, uh, those tools into your own