Video by via Dailymotion Source Welcome to RentAAA, your go-to solution for managing your rental business! Here’s how to get started: 1. Download the RentAAA app and sign up by verifying your email with OTP. 2. Complete onboarding by adding business details and selecting your plan. Simplify Your Rentals with RentAAA and Maximize Your Profits!…
Author: Michael G
Poluição da água: O plano de ação da UE para recuperar os nossos rios, lagos e mares
Video by via Dailymotion Source As águas da Europa têm vindo a ficar mais poluídas ao longo de décadas, principalmente devido à má gestão da agricultura, da indústria e do tratamento de águas residuais. Neste curso intensivo, analisamos as estatísticas alarmantes e exploramos as medidas que a UE está a tomar. Go to Source
La gritona Bergerot trata de acorralar a Ayuso y le sale el tiro por la culata: “¡No os vota nadie!”
La líder de Más Madrid, la heredera de la pistolera Mónica García, se presentó en la Asamblea de Madrid con la clásica pregunta genérica.
En este caso le cuestionó a Isabel Díaz Ayuso por las medidas que tenía en mente para mejorar la salud mental de los madrileños.
La presidenta, hábil como nadie, respondió con contundencia asegurando que cualquier medida salvo la de afiliarse a un sindicato o a una asociación feminista.
Woman stunned after bear opens her car door and climbs into passenger seat
Annalyn Chia, 29, was vacationing with her friends in the Great Smoky Mountains in Townsend, Tennessee, USA when she witnessed a bear trying to gain access to her car.
The video shows the bear poking its head from out of the car whilst Annalyn can be heard instructing her friend to “get some pots and pans” to scare the bear away.
Annalyn, who works as an executive assistant in Chicago, Illinois, USA, said: “Shortly after arriving at our Airbnb cabin, several of us witnessed the bear attempt to open the door of the black car first.
“Since it was locked, It moved to my car, which was unlocked and proceeded to climb into the passenger side of the vehicle.
“The bear eventually left after we triggered the car alarm.”
How To Import And Export Pages From A WordPress Site To Another Site For Free And Quickly: Itay…
https://itayverchik.com/export-import-pages/
In this guide, I show you how to import and export pages from a WordPress site to another site for free and quickly.
To Sign Up For The Keywords Tracking System:
https://say-v.com/
Join now the community of Webmasters and SEO Marketers completely free:
https://www.facebook.com/groups/itayverchik
To purchase Elementor Pro, the world’s best WordPress page designer:
https://trk.elementor.com/2500
Don’t Have A Web Hosting Account Yet Or Are You Just Not Satisfied With Your Existing Hosting?
Get A 25% Discount For Cloudways Web Hosting For The First 3 Months:
https://platform.cloudways.com/signup?id=314159&coupon=VERCHIK
Join us for the Moodle Academy webinar “Active Flipped Learning” on Tuesday 25th June, 10:00 UTC
We invite you to register for the Moodle Academy free webinar “Active Flipped Learning”, on Tuesday 25 June, 10:00-11:00 UTC. At this webinar we will welcome Matthew Seren Smith, Learning Technologist at UCL.
During the session you will learn how you can achieve very high levels of student engagement with the active flipped learning approach. Active flipped learning involves setting pre-class, interactive learning activities including videos, text and Moodle quizzes to capture student responses and help students engage with the learning material before class. It provides the teacher with valuable insights into the gaps in student knowledge, which is then used to formulate the in-class teaching content for the next class.
This webinar is part of the course ‘Moodle Academy webinars‘. You have to be enrolled in this free course to register and join the webinar.
Drupal Core News: New community initiative: Frontend bundler
Adapted from: https://www.sitback.com.au/insights/article/working-with-javascript-in-d…
As far as I understand it, community initiatives exist because enough people say they’re interested and start working towards the initiative’s goals.
So I thought I would try starting an initiative to solve a problem I see pop up fairly regularly:
- https://www.drupal.org/project/drupal/issues/2873160
- https://www.drupal.org/project/drupal/issues/3198417
- https://drupal.slack.com/archives/C1BMUQ9U6/p1709942944844569
- https://drupal.slack.com/archives/C392CHBEW/p1686752209783039?thread_ts=1686733842.704469&cid=C392CHBEW
- and so on.
Basically: why isn’t there a standard way to install javascript dependencies?
Some modules have tried asset-packagist, but there are myriad problems with that:
- https://drupal.slack.com/archives/C1BMUQ9U6/p1709966024383969?thread_ts=1709942944.844569&cid=C1BMUQ9U6
- https://drupal.slack.com/archives/C392CHBEW/p1709810122839269
I had a whinge about it in #australia-nz: https://drupal.slack.com/archives/C45SW3FLM/p1712295645835869 and took up larowlan’s generous offer to try to get a new initiative this off the ground.
He introduced me to Théodore (@nod_) the frontend framework manager and we three had a short discussion around suitable directions to take. This initiative would not be happening without their help and guidance, thank you so much Lee and Théodore 🙇♂️
We explored the idea of using import-maps to let the browser handle module imports and agreed that the cascading downloads would be an unacceptable performance burden on non-admin pages.
The result of that meeting was the idea of trying out publishing Drupal modules on npm, or at least an npm-like repository, since @larowlan mentioned that GitLab can provide one. I got started and wrote some scripts for gathering package names and putting them in a central package.json to be downloaded by npm/yarn/whatever.
Then @larowlan pointed out https://github.com/php-forge/foxy which I had seen, but didn’t really understand the power of. What I didn’t understand was that you could define a package.json file inside a composer package, make a couple of tweaks to composer.json and without publishing any kind of npm package, foxy would find it and treat it like one.
Cue a couple of weeks of messing around with foxy, composer and vite, and I have created a working prototype for compiling multiple Drupal modules (including custom modules if desired) in a project, and routing the library system to the new entry points:
https://github.com/darvanen/drupal-js
It requires a few things:
Any module that wants to opt in:
-
Adds php-forge/foxy to require or require-dev in composer.json.
-
Adds a module-name.foxy.yml file to represent the library state when using foxy.
Site builders:
-
Have one or more modules that use foxy in their project
-
Require and enable drupal/foxy
-
Add a provided vite.config.js to their project (could this be done by the foxy module?)
-
Set up a way to run vite build (or their own implementation):
-
post-install/update commands
-
pipeline?
-
manually?
-
—
This is where you come in
The prototype is just a starting point. I want us to come together to define a new way of working with JavaScript in Drupal that everyone can and will want to use, similar to how drupal-composer/drupal-project pioneered effective usage of composer and was eventually adopted by core. I intend to keep working on this but I want it to be driven by the community, hence the initiative.
Things you can do right now:
-
Spread the word, recruit more people to the initiative, especially if they maintain a module with JS dependencies.
-
Try out the prototype and give feedback – no change is too big to explore.
-
Join the #frontend-bundler-initiative channel to chat about ways forward – bikeshedding is welcome here, we used to call that brainstorming 😉
-
If you have a module with JS dependencies: speak up to have your module included in the prototype, or make a PR.
-
Contribute to the foxy module to get it to import css/image/asset dependencies from the vite manifest
So what do you say, are you in?- come join me in the channel!