POPULARITY
Join David Mafe (Chief Diversity Officer & VP of HR at UCHealth) and Hanna Patterson (SVP, Healthcare & Applied Learning at Guild) as they explore the fusion of diversity, equity, and inclusion with career development, discussing the impact of UCHealth's strategies for addressing workforce challenges and building a sustainable healthcare pipeline.This episode is sponsored by Guild.
The next generation of front-end user interfaces for Oracle Fusion Applications is being built using Visual Builder Studio and Oracle JavaScript Extension Toolkit. However, many of the terms associated with these tools can be confusing. In this episode, Lois Houston and Nikita Abraham are joined by Senior Principal OCI Instructor Joe Greenwald. Together, they take you through the different terminologies, how they relate to each other, and how they can be used to deliver the new Oracle Fusion Applications as well as stand-alone, bespoke visual web applications. Survey: https://customersurveys.oracle.com/ords/surveys/t/oracle-university-gtm/survey?k=focus-group-2-link-share-5 Develop Fusion Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/develop-fusion-applications-using-visual-builder-studio/138392/ Build Visual Applications Using Oracle Visual Builder Studio: https://mylearn.oracle.com/ou/course/build-visual-applications-using-oracle-visual-builder-studio/137749/ Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X (formerly Twitter): https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode. -------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started. 00:26 Nikita: Hello and welcome to the Oracle University Podcast! I'm Nikita Abraham, Team Lead of Editorial Services with Oracle University, and with me is Lois Houston, Director of Innovation Programs. Lois: Hi there! If you've been following along with us, you'll know that we've had some really interesting seasons this year. We covered Autonomous Database, Artificial Intelligence, Visual Builder Studio and Redwood, OCI Container Engine for Kubernetes, and Oracle Database 23ai New Features. Nikita: And we've had some pretty awesome special guests. Do go back and check out those episodes if any of those topics interest you. 01:04 Lois: As we close out the year, we thought this would be a good time to revisit some of our best episodes. Over the next few weeks, you'll be able to listen to four of our most popular episodes of the year. Nikita: Right, this is the best of the best–according to you–our listeners. Lois: Today's episode is #1 of 4 and is a throwback to a discussion with Senior Principal OCI Instructor Joe Greenwald on Visual Builder Studio. Nikita: We asked Joe about Visual Builder Studio and Oracle JavaScript Extension Toolkit, also known as JET. Together, they form the basis of the technology for the next generation of front-end user interfaces for Oracle Fusion Applications, as well as many other Oracle applications, including most Oracle Cloud Infrastructure (OCI) interfaces. 01:48 Lois: We looked at the different terminologies and technologies, how they relate to each other, and how they deliver the new Oracle Fusion Applications and stand-alone, bespoke visual web applications. So, let's dive right in. Nikita: Joe, I'm somewhat thrown by the terminology around Visual Builder, Visual Studio, and JET. Can you help streamline that for us? Lois: Yeah, things that are named the same sometimes refer to different things, and sometimes things with a different name refer to the same thing. 02:18 Joe: Yeah, I know where you're coming from. So, let's start with Visual Builder Studio. It's abbreviated as VBS and can go by a number of different names. Some of the most well-known ones are Visual Builder Studio, VBS, Visual Builder, Visual Builder Stand-Alone, and Visual Builder Cloud Service. Clearly, this can be very confusing. For the purposes of these episodes as well as the training courses I create, I use certain definitions. 02:42 Lois: Can you take us through those? Joe: Absolutely, Lois. Visual Builder Studio refers to a product that comes free with an OCI account and allows you to manage your project-related assets. This includes the project itself, which is a container for all of its assets. You can assign teams to your projects, as well as secure the project and declare roles for the different team members. You manage GIT repositories with full graphical and command-line GIT support, define package, build, and deploy jobs, and create and run continuous integration/continuous deployment graphical and code-managed pipelines for your applications. These can be visual applications, created using the Visual Builder Integrated Development Environment, the IDE, or non-visual apps, such as Java microservices, docker builds, NPM apps, and things like that. And you can define environments, which determine where your build jobs can be deployed. You can also define issues, which allow you to identify, track, and manage things like bugs, defects, and enhancements. And these can be tracked in code review merge requests and build jobs, and be mapped to agile sprints and scrum boards. There's also support for wikis for team collaboration, code snippets, and the management of the repository and the project itself. So, VBS supports code reviews before code is merged into GIT branches for package, build, and deploy jobs using merge requests. 04:00 Nikita: OK, what exactly do you mean by that? Joe: Great. So, for example, you could have developers working in one GIT branch and when they're done, they would push their private code changes into that remote branch. Then, they'd submit a merge request and their changes would be reviewed. Once the changes are approved, their code branch is merged into the main branch and then automatically runs a CI/CD package (continuous integration/continuous deployment) package, build, and deploy job on the code. Also, the CI/CD package, build, and deploy jobs can run against any branches, not just the main branch. So Visual Builder Studio is intended for managing the project and all of its assets. 04:37 Lois: So Joe, what are the different tools used in developing web applications? Joe: Well, Visual Builder, Visual Builder Studio Designer, Visual Builder Designer, Visual Builder Design-Time, Visual Builder Cloud Service, Visual Builder Stand-Alone all kind of get lumped together. You can kinda see why. What I'm referring to here are the tools that we use to build a visual web application composed of HTML5, CSS3, JavaScript, and JSON (JavaScript Object Notation) for metadata. I call this Visual Builder Designer. This is an Integrated Development Environment, it's the “IDE” which runs in your browser. You use a combination of drag and drop, setting properties, and writing and modifying custom and generated code to develop your web applications. You work within a workspace, which is your own private copy of a remote Git branch. When you're ready to start development work, you open an existing workspace or create a new one based on a clone of the remote branch you want to work on. Typically, a new branch would be created for the development work or you would join an existing branch. 05:38 Nikita: What's a workspace, Joe? Is it like my personal laptop and drive? Joe: A workspace is your own private code area that stores any changes you make on the Oracle servers, so your code changes are never lost—even when working in a browser-based, network-based tool. A good analogy is, say I was working at home on my own machine. And I would make a copy of a remote GIT branch and then copy that code down to my local machine, make my code changes, do my testing, etc. and then commit my work—create a logical save point periodically—and then when I'm ready, I'd push that code up into the remote branch so it can be reviewed and merged with the main branch. My local machine is my workspace. However, since this code is hosted up by Oracle on our servers, and the code and the IDE are all running in your browser, the workspace is a simulation of a local work area on your own computer. So, the workspace is a hosted allocation of resources for you that's private. Other people can't see what's going on in your workspace. Your workspace has a clone of the remote branch that you're working with and the changes you make are isolated to your cloned code in your workspace. 06:41 Lois: Ok… the code is actually hosted on the server, so each time you make a change in the browser, the change is written back to the server? Is it possible that you might lose your edits if there's a networking interruption? Joe: I want to emphasize that while I started out not personally being a fan of web-based integrated development environments, I have been using these tools for over three years and in all that time, while I have lost a connection at times—networks are still subject to interruptions—I've never lost any changes that I've made. Ever. 07:11 Nikita: Is there a way to save where you are in your work so that you could go back to it later if you need to? Joe: Yes, Niki, you're asking about commits and savepoints, like in a Git repository or a Git branch. When you reach a logical stopping or development point in your work, you would create a commit or a savepoint. And when you're ready, you would push that committed code in your workspace up to the remote branch where it can be reviewed and then eventually merged, usually with the main Git branch, and then continuous integration/continuous package and deployment build jobs are run. Now, I'm only giving you a high-level overview, but we cover all this and much more in detail with hands-on practices in our Visual Builder developer courses. Right now, I'm just trying to give you a sense of how these different tools are used. 07:52 Lois: Yeah, that makes sense, Joe. It's a lot to cover in a short amount of time. Now, we've discussed the Visual Builder Designer IDE and workspace. But can you tell us more about Visual Builder Cloud Service and stand-alone environments? What are they used for? What features do they provide? Are they the same or different things? Joe: Visual Builder Cloud Service or Visual Builder Stand-Alone, as it's sometimes called, is a service that Oracle hosts on its servers. It provides hosting for the deployed web application source code as well as database tables for business objects that we build and maintain to store your customer data. This data can come from XLS or CSV files, or even your own Oracle database customer table data. A custom REST proxy makes calls to external third-party REST services on your behalf and supports several popular authentication mechanisms. There is also integration with the Identity Cloud Service (IDCS) to manage users and their access to your web apps. Visual Builder Cloud Service is a for-fee product. You pay licensing fees for how much you use because it's a hosted service. Visual Builder Studio, the project asset management aspect I discussed earlier, is free with a standard OCI license. Now, keep in mind these are separate from something like Visual Builder Design Time and the service that's running in Fusion application environments. What I'm talking about now is creating stand-alone, bespoke, custom visual applications. These are applications that are built using industry-standard HTML5, CSS3, JavaScript, and JSON for metadata and are hosted on the Oracle servers. 09:30 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges? With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available for General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come! Visit mylearn.oracle.com to get started. 10:12 Nikita: Welcome back! Joe, you said Visual Builder Cloud Service or Stand-Alone is a for-fee service. Is there a way I can learn about using Visual Builder Designer to build bespoke visual applications without a fee? Joe: Yes. Actually, we've added an option where you can run the Visual Builder Designer and learn how to create web apps without using the app hosting or the business object database that stores your customer data or the REST proxy for authentication or the Identity Cloud Service. So you don't get those features, but you can still learn the fundamentals of developing with Visual Builder Designer. You can call third-party APIs, you can download the source, and run it locally, for example, in a Tomcat server. This is a great and free way to learn how to develop with the Visual Builder Designer. 10:55 Lois: Joe, I want to know more about the kinds of apps you can build in VB Designer and the capabilities that VB Cloud Service provides. Joe: Visual Builder Designer allows you to build custom, bespoke web applications made of interactive webpages; flows of pages for navigation; events that respond when things happen in the app, for example, GUI events like a button is clicked or values are entered into a text field; variables to store the state of the application and the ability to make REST calls, all from your browser. These applications have full access to the Oracle Fusion Applications APIs, given that you have the right security permissions and credentials of course. They can access your customer business data as business objects in our internally hosted database tables or your own customer database tables. They can access third-party APIs, and all these different data sources can appear in the same visual application, on the same page, at the same time. They use the Identity Cloud Service to identify which users can log in and authenticate against the application. And they all use the new Redwood graphical user interface components and page templates, so they have the same look and feel of all Oracle applications. 12:02 Nikita: But what if you're building or extending Oracle Fusion Applications? Don't things change a little bit? Joe: Good point, Niki. Yes. While you still work within Visual Builder Studio, that doesn't change, VBS maintains your project and all your project-related assets, that is still the same. However, in this case, there is no separate hosted Visual Builder Cloud Service or Stand-Alone instance. In this case, Visual Builder is hosted inside of Fusion apps itself as part of the installation. I won't go into the details of how the architecture works, but the Visual Builder instance that you're running your code against is part of Fusion applications and is included in the architecture as well as the billing. All your code changes are maintained and stored within a single container called an extension. And this extension is a Git repository that is created for you, or you can create it yourself, depending on how you choose to work within Visual Builder Studio. You create an extension to hold the source code changes that provide a customization or configuration. This means making a change to an existing page or a set of pages or even adding new pages and flows to your Oracle Fusion Applications. You use Visual Builder Studio and Visual Builder Designer in a similar way as to how you would use them for bespoke stand-alone visual applications. 13:12 Lois: I'm trying to envision how this workflow is used. How is it different from bespoke VB app development? Or is it different at all? Joe: So, recall that the Visual Builder Designer is effectively the Integrated Development Environment, the IDE, where you make your code changes by working with both the raw HTML5, CSS3, and JavaScript code, if need be, or the Page Designer for drag and drop, and setting properties and then Live mode to test your work. You use a version of VB Designer to view and modify your customizations, and the code is stored in a Git repository called an extension. So, in that sense, the work of developing pages and flows and such is the same. You still start by creating or, more typically, joining a project and then either create a new extension from scratch or base it on an existing application, or go directly to the page that you want to edit and, on that page, select from your profile menu to edit in Visual Builder Studio. Now, this is a different lifecycle path from bespoke visual applications. With them, you're not extending an app or modifying individual pages in the same way. You get a choice of which project you want to add your extension to when you're working with Fusion apps and potentially which repository to store your customizations, unless one already exists and then it's assigned automatically to hold your code changes. So you make your changes and edits to the portions of the application that have been opened for extensibility by the development team. This is another difference. Once you make your code changes, the workflow is pretty much the same as for a bespoke visual application: do your development work, commit your changes, push your changes to the remote branch. And then typically, your code is reviewed and if the code passes and is approved, it's merged with the main branch. Then, the package and deploy jobs run to deploy the main code to the production environment or whatever environment you're targeting. And once the package and deploy jobs complete, the code base is updated and users who log in see the changes that you've made. 15:03 Nikita: You mentioned creating apps that combine data from Fusion cloud, applications, customer data, and third-party APIs into one page. Why is it necessary? Why can't you just do all that in one Fusion Applications extension? Joe: When you create extensions, you are working within the Oracle Fusion Applications ecosystem, that's what they actually call it, which includes a defined a set of users who have been predefined and are, therefore, known to Fusion Applications. So, if you're a user and you're not part of that Fusion Apps ecosystem, you can't access the pages. Period. That's how Fusion Apps works to maintain its security and integrity. Secondly, you're working pretty much solely with the Fusion Applications APIs data sources coming directly from Fusion Applications, which are also available to you when you're creating bespoke visual apps. When you're working with Fusion Applications in Visual Builder, you don't have access to these business objects that give you access to your own customer database data through Visual Builder-generated REST APIs. Business objects are available only to bespoke visual applications in the hosted VB Cloud Service instance. So, your data sources are restricted to the Oracle Fusion Applications APIs and some third-party APIs that work within a narrow set of authentication mechanisms currently, although there are plans to expand this in the future. A mashup app that allows you now to access all these data sources while creating apps that leverage the Redwood Component System, so they look and work like Fusion Apps. They're a highly popular option for our partners and customers. 16:28 Lois: So, to review, we have two different approaches. You can create a visual application using the for-fee, hosted Visual Builder Cloud Service/Stand-Alone or the one that comes with Oracle Integration Cloud, or you can use the extension architecture for Fusion applications, where you use the designer and create your extensions, and the code is delivered and deployed to Fusion applications code. You haven't talked about JET yet though, Joe. What is that? Joe: So, JET is an abbreviation. It stands for Oracle JavaScript Extension Toolkit and JET is the underlying technology that makes Visual Builder, visual applications, and Visual Builder Extensions for Fusion Applications possible. Oracle JavaScript Extension Toolkit provides a module-based, open-source toolkit that leverages modern JavaScript, TypeScript, CSS3, and HTML5 to deliver web applications. It's targeted at JavaScript developers working on client-side applications. It is not for backend development. It's a collection of popular, powerful JavaScript libraries and a set of Oracle-contributed JavaScript libraries that make it very simple, easy, and efficient to build front-end applications that can consume and interact with Oracle products and services, especially Oracle Cloud services, but of course it can work with any type of third-party API. 17:44 Nikita: How are JET applications architected, Joe, and how does that relate to Visual Builder pages and flows? Joe: The architecture of JET applications is what's called a single page architecture. We've all seen these. These are where you have a single webpage—think of your index page that provides the header and footer for your webpage—and then the middle portion or the middle content of the page, represented by modules, allow you to navigate from one page or module to another. It also provides the data mapping so that the data elements in the variables and the state of the application, as well as the graphical user interface elements that provide the fields and functionality for the interface for the application, these are all maintained on the client side. If you're working in pure JET, then you work with these modules at the raw JavaScript code level. And there are a lot of JavaScript developers who want to work like this and create their custom applications from the code up, so to speak. However, it also provides the basis for Visual Builder visual applications and Fusion Apps visual extensions in Visual Builder. 18:41 Lois: How does JET support VB Apps? You didn't talk much about having to write a bunch of JavaScript and HTML5, so I got the impression that this is all done for you by VB Designer? Joe: Visual Builder applications are composed of HTML5, CSS3, and JavaScript code that is usually generated by the developer when she drags and drops components on to the page designer canvas or sets properties or creates action chains to respond to events. But there's also a lot of JavaScript object notation (JSON) metadata created at the time that describes the pages, the flows, the navigation, the REST services, the variables, their data types, and other assets needed for the app to function. This JSON metadata is translated at runtime using a large JavaScript extension toolkit library called the Visual Builder Runtime that runs in the browser and real time translates the metadata and other assets in the Visual Builder source code into JET code and assets, which are actually executed at runtime. And it's very quick, very fast, very efficient, and provides a layer of abstraction between the raw JET code and the Visual Builder architecture of pages, flows, action chains for executing code and events to handle things that occur in the user interface, including saving the state in variables that are mapped to GUI components. For example, if you have an Input text component, you need to have a variable to store the value that was entered into that Input text component between page refreshes. The data can move from the Input text component to the variable, and from the variable to that Input text component if it's changed programmatically, for example. So, JET manages binding these data values to variables and the UI components on the page. So, a change to a variable value or a change to the contents of the component causes the others to change automatically. Now, this is only a small part of what JET and the frameworks and libraries it uses do for the applications. JET also provides more complex GUI components like lists and tables, and selection lists, and check boxes, and all the sorts of things you would expect in a modern GUI application. 20:37 Nikita: You mentioned a layer of abstraction between Visual Builder Studio Designer and JET. What's the benefit of working in Visual Builder Designer versus JET itself? Joe: The benefit of Visual Builder is that you work at a higher level of abstraction than having to get down into the more detailed levels of deep JavaScript code, working with modules, data mappings, HTML code, single page architecture navigation, and the related functionalities. You can work at a higher level, a graphical level, where you can drag and drop things onto a design canvas and set properties. The VB architecture insulates you from the more technical bits of JET. Now, this frees the developer to concentrate more on application and page design, implementing logic and business rules, and creating a pleasing workflow and look and feel for the user. This keeps them from having to get caught up in the details of getting this working at the code level. Now if needed, you can write custom JavaScript, HTML5, and CSS3 code, though much less than in a JET app, and all that is part of the VB application source, which becomes part of the code used by JET to execute the application itself. And yet it all works seamlessly together. 21:38 Lois: Joe, I know we have courses in JavaScript, HTML, and CSS. But does a developer getting ready to work in Visual Builder Designer have to go take those courses first or can they start working in VB Designer right away? Joe: Yeah, that question does often comes up: Do I need to learn JET to work with Visual Builder? No, you don't. That's all taken care for you in the products themselves. I don't really think it helps that much to learn JET if you are going to be a VB developer. In some ways, it could even be a bit distracting since some of things you learn to do in JET, you would have to unlearn or not do so much because of what VB does it for you. The things you would have to do manually in code in JET are done for you. This is why we call VB a low code development tool. I mean, you certainly can if you want to, but I would spend more time learning about the different GUI components, page templates, the Visual Builder architecture — events, action chains, and the data provider variables and types. Now, I know JET myself. I started with that before learning Visual Builder, but I use very little of my JET knowledge as a VB developer. Visual Builder Designer provides a nice, abstracted, clean layer of modern visual development on top of JET, while leveraging the power and flexibility of JET and keeping the lower-level details out of my way. 22:49 Nikita: Joe, where can I go to get started with Visual Builder? Joe: Well, for more information, I recommend you take a look at our Develop Fusion Applications course if you're working with Fusion Applications and Visual Builder Studio. The other course is Develop Visual Applications with Visual Builder Studio and that's if you're creating stand-alone bespoke applications. Both these courses are free. We also have a comprehensive course that covers JavaScript, HTML5, and CSS3, and while it's not required that you take that to be successful, it can be helpful down the road. I would also say that some basic knowledge of HTML5, CSS3, and JavaScript will certainly support you and serve you well when working with Visual Builder. You learn more as you go along and you find that you need to create more sophisticated applications. I would also mention that a lot of the look and feel of the applications in Visual Builder visual applications and Fusion apps extensions and customizations come through JET components, JET styles, and JET variables, and CSS variables, so that's something that you would want to pursue at some point. There's a JET cookbook out there. You can search for Oracle JET and look for the JET cookbook and that's a good introduction to all of that. 23:50 Nikita: We hope you enjoyed that conversation. To learn about some of the courses Joe mentioned, visit mylearn.oracle.com to get started. Lois: Before we wrap up, we've got a favor to ask. We've created a short survey to capture your thoughts on the podcast. It'll only take a few minutes of your time. Just click the link in the show notes and share your feedback. We want to make sure we're delivering the best experience possible so don't hesitate to let us know what's on your mind! Thanks for your support. Join us next week for another throwback episode. Until then, this is Lois Houston… Nikita: And Nikita Abraham, signing off! 24:30 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.
Lois Houston and Nikita Abraham continue their deep dive into Oracle Database 23ai backup and recovery strategies with Senior Principal Database & MySQL Instructor Bill Millar. Picking up from Part 1, they explore critical concepts such as instance recovery, checkpoint processes, and the role of redo log files. Bill shares insights into complete and incomplete recovery, flashback technologies, and lots more. Oracle MyLearn: https://mylearn.oracle.com/ou/course/oracle-database-23ai-backup-and-recovery/141127/ Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ Twitter: https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, Radhika Banka, and the OU Studio Team for helping us create this episode. -------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started! 00:26 Nikita: Welcome back to the Oracle University Podcast! I'm Nikita Abraham, Team Lead of Editorial Services with Oracle University, and with me is Lois Houston, Director of Innovation Programs. Lois: Hi everyone! Last week, we had a fantastic chat with Bill Millar, our Senior Principal Database & MySQL Instructor. We dug into the basics of backup and recovery. We touched on everything from a DBA's role in preventing data loss to handling different types of failures, and even some common mistakes that tend to pop up when managing a database. Nikita: Yeah, if you missed that episode, definitely go back and check it out. It's packed with useful info, especially if you're in charge of keeping databases safe. 01:10 Lois: Today, we're picking up where we left off. We're going to ask Bill about instance recovery and recovery strategies. Bill, can you kick things off by explaining what instance recovery is? Bill: You can understand instant recovery by becoming familiar with the checkpoint process, the redo log files, and the role of the log writer with the redo log files. Automatically instance or crash recovery. What is it doing? What are the phases of instance recovery? How we possibly can tune that instance recovery. We can use the mean time to recovery advisor that can help us determine how we might tune the instance recovery. 01:51 Nikita: OK, so let's go through some of these concepts and procedures you mentioned. What is the checkpoint process responsible for exactly? Bill: The checkpoint process itself, it's responsible for updating the data file headers with checkpoint information. When a checkpoint is taken, it is going to write into the controlfiles. It tells the DB writer to write. DB writer writes to the data files, and the checkpoint is also annotated in the data files. So updating controlfiles with that checkpoint information also, controlfiles and database files. It signals that DB writer at full check points again, hey, it's time to write. So that way, it has the latest data written to the data files. The controlfile and datafiles, those are in sync with that. 02:40 Lois: Bill, what about the log writer process and the redo log files? Bill: With the log writer process and the redo log files, the redo log files record the changes to the database himself. It should be multiplexed. 02:53 Nikita: What do you mean by that? Bill: More than one redo log group. Now, the redo log groups, it is recommended that they should be multiplexed. Each group member should be on a different disk or in a different disk group if you're using ASM. 03:10 Nikita: And why is that, Bill? Bill: Because if I lose one, if I lose one redo log group, one member, I can continue to operate with just the one. If I only have one redo log group member and the system comes around and tries to write to it, then my system is going to come to a halt. So the log writer is going to write to those redo logs whenever somebody does a commit. When that redo log buffer is 1/3 full or every three seconds and before DB writer writes. So those are the four mechanism that tells log writer to write from that log buffer to the redo log files. And it'll also write, when we do a shut down, all the buffers will be flushed. And so that way, everything will be in sync when the system is shut down. 04:01 Lois: What are the different modes of operation for a database, Bill? And how do these modes impact the recovery capabilities of the database? Bill: So we have two different modes we can operate in. One is called NOARCHIVELOG mode. It is the default. ARCHIVELOG mode, highly encouraged. But not every environment has to be in ARCHIVELOG mode. 04:21 Nikita: So with ARCHIVELOG mode… Bill: Closed database. You have to close it, recover to the last backup. That's as far as I can go. Actually, I could, depending on what happens, I might be able to apply some redo. Suitable for training and test environments or for data warehouses, we don't have a lot of frequent changes. It's mainly bulk loading data at night and querying during the day. So it might be appropriate for that. Because ARCHIVELOG mode, it is a little overhead. Yes. So with that database, it goes down while it's open. The system, when it comes up, it can recover to the last committed transaction. And this is usually the mode we want to operate in for production environments. So we have that data in the buffer cache. We have that redo being buffered. We have the undo tablespace, keeping track of what the data was before a change. The redo keeps track of what was the change. And if we're in ARCHIVELOG mode, as we switch from one redo log to another, we will generate what's referred to as archived log files, and that's what allows us to do a complete recovery. 05:33 Lois: What happens in the case of automatic instance recovery? Bill: For an automatic instance recovery or crash recovery, our system went down unexpectedly. Because it did not do a clean shutdown, the buffers were not flushed. Everything was not synchronized. So the datafile, controlfile, everything is out of sync. 05:53 Nikita: So, how do the files get synchronized then? Bill: It uses the redo log groups to synchronize the files. It's going to roll forward. It rolls forward the changes that were made. So due to different distinct operations. Roll forward applies committed and uncommitted data. And the redo does not keep track of what was committed and uncommitted. It'll keep track of, hey, I had this transaction, hey, here's a commit for that transaction. But hey, I have a transaction. That was never uncommitted. That's the job of the undo. But rolls forward all those changes. And then anything that did not actually receive a commit, it will roll back the uncommitted data, return to the original state. And that is the job of the undo tablespace. 06:37 Lois: Bill, is it possible to tune instance recovery for better performance? Bill: You can try to tune this instance recovery. Tuning it is touchy. Be careful because you can cause more harm than what you think you might be doing good. The instance recovery, what we're doing, we're trying to-- the transactions between checkpoints. When was the last checkpoint? Because the items between the checkpoints, that's what has to be reapplied. So the last checkpoint to the last redo log, what is that time frame there between those? Well, what we're going to do, we're going to try to control that. We're going to try to control the difference between the checkpoint and the end of the redo log. There is a mean-time recovery advisor. You specify the desired times in seconds or minutes that how often you want that checkpoint to occur. There is a parameter, FAST_START_MTTR parameter that you can set. The default value is zero saying, hey, I'm going to let the system take care of it. And the maximum you can set it is to one hour. 07:46 Nikita: And why 1 hour? Bill: The reason being, if I set that to one hour and I have a lot of activity, how long is it going to take? How many transactions can happen within that hour? Yeah, I'm not doing a checkpoint as often, so I'm eliminating that workload. But if it has to recover, how long is it going to take? If I set it too small, the system says, hey, right now, it's going to take me 19 seconds based off statistics. If I said, OK, I want it in five seconds. So what does that mean? Every five seconds, I'm saying do a checkpoint. So what is it doing? OK, time to do a checkpoint. OK, time to go ahead and OK, DB writer write. OK, log writer write. OK, let me update the datafiles and the controlfiles. So you're just thrashing your system. So be careful if you decide to try to manually tune it. And when you go out and look at this mean time to recover, and even if you do it through the command line, you'll see that, that value is most likely going to change throughout the day, depending on the workload that you have. 08:46 Lois: How does the process of restoring and recovering data typically work? Bill: So when we restore, we're restoring our datafiles. All the datafiles, tablespace, controlfiles, archived redo log, server parameter file. Then when we recover, it involves depending on the backup that we use and other factors in there, it is going to apply the redo. So automatically done by RMAN. So I tell it, this is what I want to do. Hey, I want to restore a database. OK, RMAN says, all right, what backup are you going to use? What is it I need to restore? And then we tell it to recover. OK, I know what I need to use to recover. So RMAN can do the work for you. So when we restore and recover due to a manual process and there's different methods that we can use, and depending on the failure, we'll drive what type of restore and recovery we might perform. 09:40 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges? With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available in General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come! Visit mylearn.oracle.com to get started. 10:22 Nikita: Welcome back! Can you talk about the different types of recovery scopes, Bill? How do they compare? Bill: Recovery can have two kinds of scope. All right. One is the complete recovery. We are getting the database back to the current time of the crash with no loss of data. We're going to again bring everything back to the present. Incomplete or point-in-time recovery. We're going to take a database or maybe a tablespace or even a table back to a point-in-time in the past. So from the time that we select to take it to recover, everything that was done after that is null and void, is gone missing. That's why it's called incomplete recovery, because it's not complete. 11:09 Lois: What are the steps that take place during complete recovery? Bill: We restore the datafiles. Changes are applied. We're applying the redo. The datafiles contained committed and uncommitted transactions. The undo is applied. Anything that did not receive an actual commit will take back to the original value. And we have our datafiles recovered. 11:33 Nikita: And what about point-in-time recovery? Bill: Point-in-time recovery, very similar. We're going to restore the datafiles from as far back as necessary. Changes are applied. So the data files are going to contain the committed and uncommitted up to that point-in-time. Database is open, that redo, that undo, anything that did not actually receive a commit. The undo is applied. The point-in-time recovered is complete. We're not applying all the redo, all the changes, only up to the time that we specify. 12:08 Lois: Are there any features that can make point-in-time recovery quicker? Bill: We also have the ability to use flashback database. It is an optional feature. And it can be a quick way to do that point-in-time recovery. It is an alternative to that database point-in-time recovery we just looked at. Faster. No restore is required. It's going to rewind the database. It does require some configuration in the environment. We do have to set up in order to use flashback database. 12:41 Nikita: I want to talk about Oracle's data protection solutions, particularly when it comes to backup and recovery or disaster recovery. Bill: So for physical data protection-- backup and recovery objective. Yep, that works for both physical and logical. My recovery time, hours to days. Possibly minutes to hours for the logical. And Oracle solution, we have the Recovery Manager that's out of the box, RMAN. Oracle Secure Backup, that is Oracle's media management library system backing up to tape. The logical protection, yes, flashback technologies can help me take care of that very easily. For disaster recovery, physical data protection, recovery time objective, seconds to minutes. We're not going to accomplish that with RMAN. You're going to want to use our Data Guard with the Active Data Guard feature to be able to switch over to a standby database within seconds of a failure. 13:41 Lois: Why would someone choose to use flashback technologies for recovery, Bill? Bill: With the flashback technologies, we can use it for viewing data as past dates. What did it look like? We can wind the database back and forth in time. Assist users in an error analysis and recovery, because we have different technologies. This flashback query, version query, transaction query, those allow me to view what was the value of a row at a time. I can even see what were the changes to a row over a period of time? I can also view the query that caused that change. For error recovery, I can back out a transaction. I can take a table back to a non-current time. I can also flashback a table that was dropped. And I can also take an entire database by using flashback. So the different recovery options I might have with the flashback technology. 14:44 Lois: Thank you so much, Bill. These last two episodes have been so insightful, right Niki? Nikita: I couldn't agree more, Lois! If you want to know more about backup and recovery configuration and other concepts, visit mylearn.oracle.com and search for the Oracle Database 23ai: Backup and Recovery course. Our upcoming episode is a very special one, where we'll be discussing Oracle AI in Fusion Cloud Human Capital Management. So, watch out for that! Until next week, this is Nikita Abraham… Lois: And Lois Houston, signing off! 15:16 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.
Evaluation of recent experiences offers an opportunity to move ahead with clarity.
https://youtu.be/URe8kgTc63E?si=hT64xXwnAe--k56x
Join Lois Houston and Nikita Abraham, along with Senior Principal Database & Security Instructor Ron Soltani, as they discuss how the new Automatic SQL Plan Management feature in Oracle Database 23ai improves performance consistency and simplifies management. Then, Senior Principal Database & MySQL Instructor Bill Millar shares insights into two new features: one that enhances SecureFiles LOB Write Performance, improving read and write speeds, and another that increases the column limit in a table to 4,096, making it easier to handle complex data. Oracle MyLearn: https://mylearn.oracle.com/ou/course/oracle-database-23ai-new-features-for-administrators/137192/207062 Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X: https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode. -------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started! 00:26 Nikita: Welcome to the Oracle University Podcast! I'm Nikita Abraham, Principal Technical Editor with Oracle University, and joining me is Lois Houston, Director of Innovation Programs. Lois: Hi there! Last week, we looked at the Oracle Database 23ai enhancements that have been made to Hybrid Columnar Compression and Fast Ingest. In today's episode, we'll talk about the 23ai new feature for Automatic SQL Plan Management with Ron Soltani, a Senior Principal Database & Security Instructor with Oracle University. 01:01 Nikita: And later on, we'll be joined by Bill Millar, another Senior Principal Database & MySQL Instructor, who will tell us about the 23ai automatic feature that enhances SecureFiles LOB Write Performance. We'll also get him to talk about the Wide Columns update. So, let's get started. Hi Ron! What have been the common challenges with SQL plans and database performance? Ron: One of the problems that we have always had, if you remember, was when data changes, database setting configuration, parameter changes, SQL that were operating very well could now behave badly using the SQL plan that were associated to them. And remember, the same SQL plan generally Oracle likes to continuously reuse. So the SQL plans were put in the baseline in the past, and we could have those SQL plan baseline, which are a set of approved plans to be used for a SQL from the SQL history stored in AWR, then could be used for the optimizer to choose from. However, which plan to choose and which one would be the best one to use, this is what the problem has been in managing the SQL plan baselines, and a lot of the operation would have been done manually. 02:22 Lois: And what have we done to overcome this? Ron: So now this new system will going to perform all of those operations automatically for us. Now it can search the Automatic Workload Repository. It can find SQL plans for a particular SQL statement, then look for any alternative plans that may available in alternate sources like SQL tuning sets. And then validate those plans and see if those plans are going to be good and to be used as SQL plan baseline for executing SQL statement by the optimizer. 03:00 Nikita: So we now have the Automatic SQL Plan Management Evolve Advisor to help manage operations automatically, right? Can you tell us a little more about it? How does it ensure optimal performance? Ron: This is an automatic advisor that is created that can go look for different plans and validate the plans by examining them, making sure that they are not causing any regression compared to the previous operation, and then evolve that plan into a good baseline. This simplifies management of the baseline repository for a SQL statement. So as data changes, as parameters changes, optimizer could come up with different type of plans that are set within this baseline that has been validated to be good baseline for each situational operation. So this way you reduce a lot of hard parsing operations. 04:00 Lois: And how does the SQL Evolve Advisor work, Ron? Ron: First, it will check the AWR to find what are the top SQLs that has been found. Then it will look to see if these top SQLs who did not perform well with the plan that they have, that's why they're top SQL, have other alternative plans that are stored in the SQL plan history, in AWR, or available in any other sources. Then if it finds any additional plans, it will go ahead and add all of those plans into the plan history. So in the plan history, now you have accumulation of all the plans available in AWR and anything that has been brought from other sources. Then it will test every one of those plans and validate that by use of the plan, the SQL statement will not deprivate and get slower. The performance is either similar or actually better. So normally, there is a percentage that the SQL should improve. So we will then validate these baselines. And finally, once the baselines or those plans have been validated, they will be accepted, and then they will be added as SQL plan baselines. They will remain in the statement history, in the AWR, and will be available for optimizer for the future use. 05:28 Nikita: What are the benefits of this? Ron: Number one is Autonomous Database. As you know, they want to automate all management, including management of the SQL execution due to changes that are happening for the application, for the data, or the database and its environment. It totally eliminates any manual intervention for management of the statement, and it can transparently repair any statement that had been affected by a major change. 06:00 Lois: What sort of problems does this feature solve for us? Ron: Of course, this is a performance consistency. We want to make sure that every statement performed to its best performance and any specific changes that may impact those SQL statements would be taken into an account, and a better plan, if available, would then be available for use. It also improves the application performance level, therefore database service level will get much improvement. And the SQL execution plans will be automatically managed behind the scene by expanding these baselines, by managing all of these baseline history and all of that that is managed by this automatic SQL plan management environment automatically. 06:50 Nikita: And when do we use this? Ron: If there is a change in a database environment, like you add SGA, the change into the shared pool, change in the size of the buffer cache or any type of storage effects. So all of those can actually affect the SQL execution. Now all of those changes, including data changes, can cause a SQL plan to not behave very well or behave as well as it was doing before. Therefore, if particular plans do not perform as well as they did before, that affects the performance of the application. This also affects the performance of the database and the instance. 07:35 Lois: So, how do we use this environment? Ron: Well, best news that I have for you in that is that there is nothing manual needs to be done. All we need to do is, number one, make sure that we enable foreground automatic SQL plan management that we done through the package for the DBMS SPM for SQL plan management. You will use the package with the configure option, and you enable the auto SPM evolve task, and you set it to auto. Once this is done, now the SQL evolve plan management and advisor are enabled, and they will then monitor your statements, review all of the top SQLs as they are found with all of the ADDM operation, and then do their work in looking for better plans and being able to maintain the SQL plan baselines we talked about. Now for you to be able to view, monitor, and see how these operations are going, if it is enabled, you can take a look at the DBA SQL plan baseline's view. There are many, many columns in that particular baseline, and there are also columns that has been added that tell you where is the plan generated from, if a plan is approved, and any other user interaction with the plan or settings can then be verified using that DBA SQL plan baseline view. 09:13 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges? With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available for General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come! Visit mylearn.oracle.com to get started. 09:54 Nikita: Welcome back! Let's bring Bill into the conversation. Hi Bill! Can you tell us about the 23ai automatic feature that enhances SecureFiles LOB Write Performance? Bill: The key here is that it is automatic and transparent. There's no parameters set. Nothing to configure in table, no hints, and nothing that you have to do with these improvements. It is tightly integrated with SecureFiles LOB infrastructure. So now, multiple LOBs can be handled in a single transaction and can be buffered simultaneously. This will help with mixed workloads, switching between the LOBs that are writing in a single transaction. The PGA will adaptively resize based off the size for these large writes for the LOBs if you're using the No Cache option. Remember, no cache is going to bypass the buffer cache and does direct reads and writes from the PGA. JSON type will be transformed into the OSON Oracle data type. It is an optimized native binary storage format for JSON data. 11:15 Lois: Ok. So, going forward, there will be better read and write performance for LOBs. Bill: Multiple LOBs in a single transaction can be buffered simultaneously, improving mixed workloads. We just talked about the PGA. Automatically, the buffer is automatically resized. And the improved JSON support. The reason it will recognize, hey, this is a JSON data type. But traditionally, JSON data types were small. So they were small to medium size. So the range from 32k to 32 meg was considered small to medium whereas LOBs were designed for data types larger than 100 meg. So by recognizing this a JSON data type, it can take advantage of the LOB architecture. Other enhancements will also include the acceleration of compressed LOBs, the pen and compression caching, and improves the poor performance of your reads and writes to compressed LOBs. It's faster than previously. 12:24 Nikita: Bill, what do you think about the recent increase in the column limit? Previously, the limit was 1000 columns per table, which sometimes posed issues when migrating from other systems that allowed more than 1,000 columns, right? Bill: Maybe because of workload requirements, the whole machine learning, the internet of things workloads, IOTs can have hundreds of thousands of attributes, dimensional attribute columns for that. And even our very own blockchain tables reserves up to 40 hidden virtual columns, so that takes away from the total amount. Virtual columns count towards the column limits and some applications as they drop columns, what it does, it just converts them to unused, and it still applies towards the limit the number of columns that you can have to that limit. There were workarounds. However, they were most likely not the best way to do it, like column switching, table splitting for that. But big data really use cases, really saw where files have or required more than 1,000 columns. 13:42 Lois: So, now that we can have 4,096 columns in a table, I'm sure it's made handling complex data a lot easier. Bill: So by increasing this, since other systems do support higher column limits, it can-- the increase can make migration from other systems easier and possibly even a little bit more attractive while it can make applications a little bit simpler because the 1,000 column limit was not always optimal for analytics. Where 1,000 might have been plenty for OLTP type environments, but not for the analytics, especially when it comes to machine learning and those internet of things that we talked about, where the previous workarounds, like splitting the tables, really caused more performance issue than anything else. So we want to avoid those suboptimal workarounds. And the nice thing is there's no change to the SQL. So once you have that-- well, if we were doing SQL, if we had tables that were split and we're trying to do things that is actually going to help improve that SQL, now, we don't have multiple objects that we're dealing with. 14:57 Nikita: How do we actually go about increasing the column limit to 4,096? Bill: You do have to have the compatibility set to 23c. Why? Because it's a new feature. There is a new initialization parameter called Max columns, and you do set that. There's two different ways, two different values. We can set it to standard or we can set it to extended. It is dynamic. When it's set to standard, it's only 1,000. When we set it to extended, it's going to allow the 4,096. It is modifiable at the PDB level. However, it will inherit what's at the root level, if it's not explicitly set at a PDB. It can't alter it in a session for that. And multiple instances of the RAC environment must use the same value. Now one thing, notice that it cannot be set to standard if I created a table that had more than 1,000 columns. One thing that might get you, when you drop a table that has more 1,000 columns and you try to set it back to standard, it might tell you, hey, you have tables that have more than 1,000 columns. Don't forget your recycle bin unless you did a drop table purge. 16:09 Lois: Are there any performance considerations to keep in mind, Bill? Bill: There's really no DML or query performance degradation for the tables. However, it might require, as you would expect, the increase in memory when we have the new column limits. It might require additional shared pool, additional SGA with the additional columns, more buffer cache as we're bringing blocks in. So that's shared pool along with the PGA. And also we can add in buffer cache in there, because that increased column count is going to be increase in the total PGA memory usage. And those are kind of expected for that. But the big advantage is it gives us the ability to eliminate some of these suboptimal workarounds that we had in the past. 17:02 Nikita: Ok! We covered a lot today so thank you Bill and Ron. Lois: To learn more about what we discussed today, visit mylearn.oracle.com and search for the Oracle Database 23ai New Features for Administrators course. Join us next week for a discussion on some more Oracle Database 23ai new features. Until then, this is Lois Houston… Nikita: And Nikita Abraham signing off! 17:27 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.
Date: 9/08/24 Join Hanif Khan for Friday's show from 4-6pm where we will be discussing: ‘UK Riots' UK Riots The UK is witnessing a troubling rise in far-right riots, driven by economic discontent and anti-immigrant sentiment. How are these extremists affecting your community, and what steps can we take to restore safety and unity? Join us and share your thoughts Guests include: Dr David Crepaz‑Keay - Head of Research & Applied Learning at the Mental Health Foundation Producers: Hanif Khan Qayyum Rashid Iffat Mirza and Faiza Mirza
We all know that success in the classroom relies on powerful and innovative technology. That's where CTL comes in. For over 35 years, CTL has manufactured and serviced award-winning cloud computing solutions that today empower schools in more than 55 countries. From Chromebooks to Chromebox and Google Meet, CTL offers a complete range of solutions to keep students, teachers, and administration both learning and productive. CTL works side-by-side with you, increasing IT efficiency with customized configurations and comprehensive lifecycle services. And, recently, CTL achieved B Corporation™ certification for their commitment to sustainability and social responsibility. If you're looking for a true partner to help innovate your next ChromeOS success, visit CTL at CTL.net. In this episode, I chat the importance of phonics instruction in the classroom. The pendulum has swung in the other direction and there is no longer a focus on the direct teaching of phonics. Anna and I discuss how important it is to teach our students how to sound words out. This is a great conversation recorded at ISTE Live 2024 in Denver, Colorado. Check it out and put into practice what we preach. Buen provecho! Connect With Gabriel Carrillo EdTech Bites Website: https://edtechbites.com EdTech Bites Twitter: https://twitter.com/edtechbites EdTech Bites Instagram: https://instagram.com/edtechbites EdTech Bites Threads: https://www.threads.net/@edtechbites EdTech Bites Facebook Page: https://facebook.com/edtechbites EdTech Bites YouTube Channel: https://www.youtube.com/@edtechbites About Anna Boyd Anna Boyd is a 6th Grade ELA teacher in South Carolina. Originally from Alabama, Anna graduated in 2017 from Huntingdon College in Montgomery, Alabama. In 2019 she relocated to South Carolina where she currently teaches 6th grade ELA. Anna has worked with students in grades K-8. Anna will complete her Masters in Applied Learning and Instruction with a literacy concentration in summer 2024, and plans to pursue her doctorate in Educational Leadership Policy and Instruction in Fall 2024! Connect With Anna Boyd Anna On Twitter: https://x.com/annaboyd017 Anna On Instagram: https://www.instagram.com/boydowelovelearning_ Anna On Facebook: https://www.facebook.com/anna.boyd.982?mibextid=LQQJ4d Anna On TikTok: https://www.tiktok.com/@MissBoyd3 My Book Is Officially Out! My first book “Cooking Up Experiences In The Classroom: Focus On Experiences, Not Just Lessons” is officially out! A HUGE shout out to Lumio for helping sponsor this book. I'm super excited about this project. It's filled with ideas on how to make memorable experiences for your students. In addition, each chapter also lays out a specific recipe mentioned in that chapter along with a video tutorial on how to prepare that dish. Make sure you get your copy and cook up some experiences for your students and loved ones! Click Here To Purchase Your Copy On Amazon
-We are concluding this study of 'bad examples' from the Old Testament and considering the practical admonitions for us today.- - Pastor Ken Endean--Watch this Sunday evening's message from 1 Corinthians 10 entitled -Applied Learning-, the conclusion of our series -Learning from Bad Examples.-
-We are concluding this study of 'bad examples' from the Old Testament and considering the practical admonitions for us today.- - Pastor Ken Endean--Watch this Sunday evening's message from 1 Corinthians 10 entitled -Applied Learning-, the conclusion of our series -Learning from Bad Examples.-
A new MP3 sermon from Tri-City Baptist Church Ministries is now available on SermonAudio with the following details: Title: Applied Learning Subtitle: Learning From Bad Examples Speaker: Pastor Ken Endean Broadcaster: Tri-City Baptist Church Ministries Event: Sunday Service Date: 5/19/2024 Bible: 1 Corinthians 10 Length: 36 min.
"We are concluding this study of 'bad examples' from the Old Testament and considering the practical admonitions for us today." ~ Pastor Ken EndeanWatch this Sunday evening's message from 1 Corinthians 10 entitled "Applied Learning", the conclusion of our series "Learning from Bad Examples."
Through my own journey from acquiring knowledge to applying it meaningfully, this episode tell you about how to become an 'implementationalist', where every theory learned becomes a lived practice . I describe the stages of applied learning, from the initial spark of awareness to the resilience required in the face of challenges, all while sharing practical strategies for organizing your life and thoughts for lasting change.I talk about how to use applied learning for self-regulation and body awareness. With guidance and reflection, learn how to interpret your body's signals as insights into personal growth, and how prayer can serve as a powerful tool for seeking wisdom, courage, and the fortitude to apply your knowledge every day. ----------------------------------------------------------------------------------------------------If this podcast has benefited you, imagine the value of a one-on-one meeting with me! Click below to schedule your FREE consultation. Discover solutions with no obligation.https://www.islamiclifecoachschool.com/appointments
The next generation of front-end user interfaces for Oracle Fusion Applications is being built using Visual Builder Studio and Oracle JavaScript Extension Toolkit. However, many of the terms associated with these tools can be confusing. In this episode, Lois Houston and Nikita Abraham are joined by Senior Principal OCI Instructor Joe Greenwald. Together, they take you through the different terminologies, how they relate to each other, and how they can be used to deliver the new Oracle Fusion Applications as well as stand-alone, bespoke visual web applications. Develop Fusion Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/develop-fusion-applications-using-visual-builder-studio/122614/ Build Visual Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/build-visual-applications-using-oracle-visual-builder-studio/110035/ Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X (formerly Twitter): https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode. --------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started. 00:26 Lois: Hello and welcome to the Oracle University Podcast. I'm Lois Houston, Director of Innovation Programs with Oracle University, and with me is Nikita Abraham, Principal Technical Editor. Nikita: Hi everyone! Today, we're starting a new season on building the next generation of Oracle Cloud Apps with Visual Builder Studio. 00:45 Lois: And I'm so excited that we have someone really special to take us through the next few episodes. Joe Greenwald is joining us. Joe is a Senior Principal OCI Instructor with Oracle University. He joined Oracle in 1992 with an extensive background in CASE tools. Since then, he has used and taught all of Oracle's software development tools, including Oracle Forms, APEX, JDeveloper ADF, as well as all the Fusion Middleware courses. Currently, Joe is responsible for the Visual Builder Studio and Redwood development courses, including extending Fusion Applications with Visual Builder. 01:22 Nikita: In today's episode, we're going to ask Joe about Visual Builder Studio and Oracle JavaScript Extension Toolkit, also known as JET. Together, they form the basis of the technology for the next generation of front-end user interfaces for Oracle Fusion Applications, as well as many other Oracle applications, including most Oracle Cloud Infrastructure (OCI) interfaces. Lois: We'll look at the different terminologies and technologies, how they relate to each other, and how they deliver the new Oracle Fusion applications and stand-alone, bespoke visual web applications. Hi Joe! Thanks for being with us today. 01:57 Joe: Hi Lois! Hi Niki! I'm glad to be here. Nikita: Joe, I'm somewhat thrown by the terminology around Visual Builder, Visual Studio, and JET. Can you help streamline that for us? Lois: Yeah, things that are named the same sometimes refer to different things, and sometimes things with a different name refer to the same thing. 02:15 Joe: Yeah, I know where you're coming from. So, let's start with Visual Builder Studio. It's abbreviated as VBS and can go by a number of different names. Some of the most well-known ones are Visual Builder Studio, VBS, Visual Builder, Visual Builder Stand-Alone, and Visual Builder Cloud Service. Clearly, this can be very confusing. For the purposes of these episodes as well as the training courses I create, I use certain definitions. 02:39 Lois: Can you take us through those? Joe: Absolutely, Lois. Visual Builder Studio refers to a product that comes free with an OCI account and allows you to manage your project-related assets. This includes the project itself, which is a container for all of its assets. You can assign teams to your projects, as well as secure the project and declare roles for the different team members. You manage GIT repositories with full graphical and command-line GIT support, define package, build, and deploy jobs, and create and run continuous integration/continuous deployment graphical and code-managed pipelines for your applications. These can be visual applications, created using the Visual Builder Integrated Development Environment, the IDE, or non-visual apps, such as Java microservices, docker builds, NPM apps, and things like that. And you can define environments, which determine where your build jobs can be deployed. You can also define issues, which allow you to identify, track, and manage things like bugs, defects, and enhancements. And these can be tracked in code review merge requests and build jobs, and be mapped to agile sprints and scrum boards. There's also support for wikis for team collaboration, code snippets, and the management of the repository and the project itself. So, VBS supports code reviews before code is merged into GIT branches for package, build, and deploy jobs using merge requests. 03:57 Nikita: OK, what exactly do you mean by that? Joe: Great. So, for example, you could have developers working in one GIT branch and when they're done, they would push their private code changes into that remote branch. Then, they'd submit a merge request and their changes would be reviewed. Once the changes are approved, their code branch is merged into the main branch and then automatically runs a CI/CD package (continuous integration/continuous deployment) package, build, and deploy job on the code. Also, the CI/CD package, build, and deploy jobs can run against any branches, not just the main branch. So Visual Builder Studio is intended for managing the project and all of its assets. 04:37 Lois: So Joe, what are the different tools used in developing web applications? Joe: Well, Visual Builder, Visual Builder Studio Designer, Visual Builder Designer, Visual Builder Design-Time, Visual Builder Cloud Service, Visual Builder Stand-Alone all kind of get lumped together. You can kinda see why. What I'm referring to here are the tools that we use to build a visual web application composed of HTML5, CSS3, JavaScript, and JSON (JavaScript Object Notation) for metadata. I call this Visual Builder Designer. This is an Integrated Development Environment, it's the “IDE” which runs in your browser. You use a combination of drag and drop, setting properties, and writing and modifying custom and generated code to develop your web applications. You work within a workspace, which is your own private copy of a remote Git branch. When you're ready to start development work, you open an existing workspace or create a new one based on a clone of the remote branch you want to work on. Typically, a new branch would be created for the development work or you would join an existing branch. 05:35 Nikita: What's a workspace, Joe? Is it like my personal laptop and drive? Joe: A workspace is your own private code area that stores any changes you make on the Oracle servers, so your code changes are never lost—even when working in a browser-based, network-based tool. A good analogy is, say I was working at home on my own machine. And I would make a copy of a remote GIT branch and then copy that code down to my local machine, make my code changes, do my testing, etc. and then commit my work—create a logical save point periodically—and then when I'm ready, I'd push that code up into the remote branch so it can be reviewed and merged with the main branch. My local machine is my workspace. However, since this code is hosted up by Oracle on our servers, and the code and the IDE are all running in your browser, the workspace is a simulation of a local work area on your own computer. So, the workspace is a hosted allocation of resources for you that's private. Other people can't see what's going on in your workspace. Your workspace has a clone of the remote branch that you're working with and the changes you make are isolated to your cloned code in your workspace. 06:38 Lois: Ok… the code is actually hosted on the server, so each time you make a change in the browser, the change is written back to the server? Is it possible that you might lose your edits if there's a networking interruption? Joe: I want to emphasize that while I started out not personally being a fan of web-based integrated development environments, I have been using these tools for over three years and in all that time, while I have lost a connection at times—networks are still subject to interruptions—I've never lost any changes that I've made. Ever. 07:08 Nikita: Is there a way to save where you are in your work so that you could go back to it later if you need to? Joe: Yes, Niki, you're asking about commits and savepoints, like in a Git repository or a Git branch. When you reach a logical stopping or development point in your work, you would create a commit or a savepoint. And when you're ready, you would push that committed code in your workspace up to the remote branch where it can be reviewed and then eventually merged, usually with the main Git branch, and then continuous integration/continuous package and deployment build jobs are run. Now, I'm only giving you a high-level overview, but we cover all this and much more in detail with hands-on practices in our Visual Builder developer courses. Right now, I'm just trying to give you a sense of how these different tools are used. 07:49 Lois: Yes, that makes sense, Joe. It's a lot to cover in a short amount of time. Now, we've discussed the Visual Builder Designer IDE and workspace. But can you tell us more about Visual Builder Cloud Service and stand-alone environments? What are they used for? What features do they provide? Are they the same or different things? Joe: Visual Builder Cloud Service or Visual Builder Stand-Alone, as it's sometimes called, is a service that Oracle hosts on its servers. It provides hosting for the deployed web application source code as well as database tables for business objects that we build and maintain to store your customer data. This data can come from XLS or CSV files, or even your own Oracle database customer table data. A custom REST proxy makes calls to external third-party REST services on your behalf and supports several popular authentication mechanisms. There is also integration with the Identity Cloud Service (IDCS) to manage users and their access to your web apps. 08:47 Joe: Visual Builder Cloud Service is a for-fee product. You pay licensing fees for how much you use because it's a hosted service. Visual Builder Studio, the project asset management aspect I discussed earlier, is free with a standard OCI license. Now, keep in mind these are separate from something like Visual Builder Design Time and the service that's running in Fusion application environments. What I'm talking about now is creating standalone, bespoke, custom visual applications. These are applications that are built using industry-standard HTML5, CSS3, JavaScript, and JSON for metadata and are hosted on the Oracle servers. 09:27 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges? With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available for General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come! Visit mylearn.oracle.com to get started. 10:09 Nikita: Welcome back! Joe, you said Visual Builder Cloud Service or Stand-Alone is a for-fee service. Is there a way I can learn about using Visual Builder Designer to build bespoke visual applications without a fee? Joe: Yes. Actually, we've added an option where you can run the Visual Builder Designer and learn how to create web apps without using the app hosting or the business object database that stores your customer data or the REST proxy for authentication or the Identity Cloud Service. So you don't get those features, but you can still learn the fundamentals of developing with Visual Builder Designer. You can call third-party APIs, you can download the source, and run it locally, for example, in a Tomcat server. This is a great and free way to learn how to develop with the Visual Builder Designer. 10:52 Lois: Joe, I want to know more about the kinds of apps you can build in VB Designer and the capabilities that VB Cloud Service provides. Joe: Visual Builder Designer allows you to build custom, bespoke web applications made of interactive webpages; flows of pages for navigation; events that respond when things happen in the app, for example, GUI events like a button is clicked or values are entered into a text field; variables to store state and the ability to make REST calls, all from your browser. These applications have full access to the Oracle Fusion Applications APIs, given that you have the right security permissions and credentials of course. They can access your customer business data as business objects in our internally hosted database tables or your own customer database tables. They can access third-party APIs, and all these different data sources can appear in the same visual application, on the same page, at the same time. They use the identity cloud service to identify which users can log in and authenticate against the application. And they all use the new Redwood graphical user interface components and page templates, so they have the same look and feel of all Oracle applications. 11:59 Nikita: But what if you're building or extending Oracle Fusion Applications? Don't things change a little bit? Joe: Good point, Niki. Yes. While you still work within Visual Builder Studio, that doesn't change, VBS maintains your project and all your project-related assets, that is still the same. However, in this case, there is no separate hosted Visual Builder Cloud Service or Stand-Alone instance. In this case, Visual Builder is hosted inside of Fusion apps itself as part of the installation. I won't go into the details of how the architecture works, but the Visual Builder instance that you're running your code against is part of Fusion applications and is included in the architecture as well as the billing. All your code changes are maintained and stored within a single container called an extension. And this extension is a Git repository that is created for you, or you can create it yourself, depending on how you choose to work within Visual Builder Studio. You create an extension to hold the source code changes that provide a customization or configuration. This means making a change to an existing page or a set of pages or even adding new pages and flows to your Oracle Fusion Applications. You use Visual Builder Studio and Visual Builder Designer in a similar way as to how you would use them for bespoke stand-alone visual applications. 13:10 Lois: I'm trying to envision how this workflow is used. How is it different from bespoke VB app development? Or is it different at all? Joe: So, recall that the Visual Builder Designer is effectively the Integrated Development Environment, the IDE, where you make your code changes by working with both the raw HTML5, CSS3, and JavaScript code, if need be, or the Page Designer for drag and drop, and setting properties and then Live mode to test your work. You use a version of VB Designer to view and modify your customizations, and the code is stored in a Git repository called an extension. So, in that sense, the work of developing pages and flows and such is the same. You still start by creating or, more typically, joining a project and then either create a new extension from scratch or base it on an existing application, or go directly to the page that you want to edit and, on that page, select from your profile menu to edit in Visual Builder Studio. Now, this is a different lifecycle path from bespoke visual applications. With them, you're not extending an app or modifying individual pages in the same way. 14:11 Joe: You get a choice of which project you want to add your extension to when you're working with Fusion apps and potentially which repository to store your customizations, unless one already exists and then it's assigned automatically to hold your code changes. So you make your changes and edits to the portions of the application that have been opened for extensibility by the development team. This is another difference. Once you make your code changes, the workflow is pretty much the same as for a bespoke visual application: do your development work, commit your changes, push your changes to the remote branch. And then typically, your code is reviewed and if the code passes and is approved, it's merged with the main branch. Then, the package and deploy jobs run to deploy the main code to the production environment or whatever environment you're targeting. And once the package and deploy jobs complete, the code base is updated and users who log in see the changes that you've made. 15:00 Nikita: You mentioned creating apps that combine data from Fusion cloud, applications, customer data, and third-party APIs into one page. Why is it necessary? Why can't you just do all that in one Fusion Applications extension? Joe: When you create extensions, you are working within the Oracle Fusion Applications ecosystem, that's what they actually call it, which includes a defined a set of users who have been predefined and are, therefore, known to Fusion Applications. So, if you're a user and you're not part of that Fusion Apps ecosystem, you can't access the pages. Period. That's how Fusion Apps works to maintain its security and integrity. Secondly, you're working pretty much solely with the Fusion Applications APIs data sources coming directly from Fusion Applications, which are also available to you when you're creating bespoke visual apps. When you're working with Fusion Applications in Visual Builder, you don't have access to these business objects that give you access to your own customer database data through Visual Builder-generated REST APIs. Business objects are available only to bespoke visual applications in the hosted VB Cloud Service instance. So, your data sources are restricted to the Oracle Fusion Applications APIs and some third-party APIs that work within a narrow set of authentication mechanisms currently, although there are plans to expand this in the future. A mashup app that allows you now to access all these data sources while creating apps that leverage the Redwood Component System, so they look and work like Fusion Apps. They're a highly popular option for our partners and customers. 16:25 Lois: So, to review, we have two different approaches. You can create a visual application using the for-fee, hosted Visual Builder Cloud Service/Stand-Alone or the one that comes with Oracle Integration Cloud, or you can use the extension architecture for Fusion applications, where you use the designer and create your extensions, and the code is delivered and deployed to Fusion applications code. You haven't talked about JET yet though, Joe. What is that? Joe: So, JET is an abbreviation. It stands for Oracle JavaScript Extension Toolkit and JET is the underlying technology that makes Visual Builder, visual applications, and Visual Builder Extensions for Fusion Applications possible. Oracle JavaScript Extension Toolkit provides a module-based, open-source toolkit that leverages modern JavaScript, TypeScript, CSS3, and HTML5 to deliver web applications. It's targeted at JavaScript developers working on client-side applications. It is not for backend development. It's a collection of popular, powerful JavaScript libraries and a set of Oracle-contributed JavaScript libraries that make it very simple, easy, and efficient to build front-end applications that can consume and interact with Oracle products and services, especially Oracle Cloud services, but of course it can work with any type of third-party API. 17:42 Nikita: How are JET applications architected, Joe, and how does that relate to Visual Builder pages and flows? Joe: The architecture of JET applications is what's called a single page architecture. We've all seen these. These are where you have a single web page—think of your index page that provides the header and footer for your web page—and then the middle portion or the middle content of the page, represented by modules, allow you to navigate from one page or module to another. It also provides the data mapping so that the data elements in the variables and the state of the application, as well as the graphical user interface elements that provide the fields and functionality for the interface for the application, these are all maintained on the client side. If you're working in pure JET, then you work with these modules at the raw JavaScript code level. And there are a lot of JavaScript developers who want to work like this and create their custom applications from the code up, so to speak. However, it also provides the basis for Visual Builder visual applications and Fusion Apps visual extensions in Visual Builder. 18:38 Lois: How does JET support VB Apps? You didn't talk much about having to write a bunch of JavaScript and HTML5 so I got the impression that this is all done for you by VB Designer? Joe: Visual Builder applications are composed of HTML5, CSS3, and JavaScript code that is usually generated by the developer when she drags and drops components on to the page designer canvas or sets properties or creates action chains to respond to events. But there's also a lot of JavaScript object notation (JSON) metadata created at the time that describes the pages, the flows, the navigation, the REST services, the variables, their data types, and other assets needed for the app to function. This JSON metadata is translated at runtime using a large JavaScript extension toolkit library called the Visual Builder Runtime that runs in the browser and real time translates the metadata and other assets in the Visual Builder source code into JET code and assets, which are actually executed at runtime. And it's very quick, very fast, very efficient, and provides a layer of abstraction between the raw JET code and the Visual Builder architecture of pages, flows, action chains for executing code and events to handle things that occur in the user interface, including saving the state in variables that are mapped to GUI components. For example, if you have an Input text component, you need to have a variable to store the value that was entered into that Input text component between page refreshes. The data can move from the Input text component to the variable, and from the variable to that Input text component if it's changed programmatically, for example. So, JET manages binding these data values to variables and the UI components on the page. So, a change to a variable value or a change to the contents of the component causes the others to change automatically. Now, this is only a small part of what JET and the frameworks and libraries it uses do for the applications. JET also provides more complex GUI components like lists and tables, and selection lists, and check boxes, and all the sorts of things you would expect in a modern GUI application. 20:34 Nikita: You mentioned a layer of abstraction between Visual Builder Studio Designer and JET. What's the benefit of working in Visual Builder Designer versus JET itself? Joe: The benefit of Visual Builder is that you work at a higher level of abstraction than having to get down into the more detailed levels of deep JavaScript code, working with modules, data mappings, HTML code, single page architecture navigation, and the related functionalities. You can work at a higher level, a graphical level, where you can drag and drop things onto a design canvas and set properties. The VB architecture insulates you from the more technical bits of JET. Now, this frees the developer to concentrate more on application and page design, implementing logic and business rules, and creating a pleasing workflow and look and feel for the user. This keeps them from having to get caught up in the details of getting this working at the code level. Now if needed, you can write custom JavaScript, HTML5, and CSS3 code, though much less than in a JET app, and all that is part of the VB application source, which becomes part of the code used by JET to execute the application itself. And yet it all works seamlessly together. 21:35 Lois: Joe, I know we have courses in JavaScript, HTML, and CSS. But does a developer getting ready to work in Visual Builder Designer have to go take those courses first or can they start working in VB Designer right away? Joe: Yeah, that question does often comes up: Do I need to learn JET to work with Visual Builder? No, you don't. That's all taken care for you in the products themselves. I don't really think it helps that much to learn JET if you are going to be a VB developer. In some ways, it could even be a bit distracting since some of things you learn to do in JET, you would have to unlearn or not do so much because of what VB does it for you. The things you would have to do manually in code in JET are done for you. This is why we call VB a low code development tool. I mean, you certainly can if you want to, but I would spend more time learning about the different GUI components, page templates, the Visual Builder architecture — events, action chains, and the data provider variables and types. Now, I know JET myself. I started with that before learning Visual Builder, but I use very little of my JET knowledge as a VB developer. Visual Builder Designer provides a nice, abstracted, clean layer of modern visual development on top of JET, while leveraging the power and flexibility of JET and keeping the lower-level details out of my way. 22:46 Nikita: Joe, where can I go to get started with Visual Builder? Joe: Well, for more information, I recommend you take a look at our Develop Fusion Applications course if you're working with Fusion Applications and Visual Builder Studio. The other course is Develop Visual Applications with Visual Builder Studio and that's if you're creating stand-alone bespoke applications. Both these courses are free. We also have a comprehensive course that covers JavaScript, HTML5, and CSS3, and while it's not required that you take that to be successful, it can be helpful down the road. I would say that some basic knowledge of HTML5, CSS3, and JavaScript will certainly support you and serve you well when working with Visual Builder. You learn more as you go along and you find that you need to create more sophisticated applications. I would also mention that a lot of the look and feel of the applications in Visual Builder visual applications and Fusion apps extensions and customizations come through JET components, JET styles, and JET variables, and CSS variables, so that's something that you would want to pursue at some point. There's a JET cookbook out there. You can search for Oracle JET and look for the JET cookbook and that's a good introduction to all of that. 23:47 Lois: Joe, thank you so much for joining us today. We're really looking forward to having you back next week to discuss extending Oracle Fusion Applications with Visual Builder Studio. Joe: Thanks for having me. Nikita: And if you want to learn about some of the courses Joe mentioned, visit mylearn.oracle.com to get started. Until next time, this is Nikita Abraham… Lois: And Lois Houston signing off! 24:09 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.
On today's episode of the Illumination by Modern Campus podcast, podcast host Shauna Cox was joined by Doug Harrison to discuss the importance of applied learning models and creating a transformative experience for learners.
The need for a manufacturing workforce equipped with practical education and real-world experiences has never been more crucial. Horizon Science Academy in Des Moines is breaking new ground in early STEM education. With applied learning, technology, and personalized learning, students are getting a leg up in learning skills that build careers that are critical to today's economy. With an emphasis on family and community engagement, their partnerships with local Iowa manufacturers, community leaders, economic developers, and even the families of the students are getting involved to create a culture of empowerment and support. A tuition-free public charter school, students with a Des Moines zip code are invited to explore enrollment. Full show details are at https://iowapodcast.com/emily-reiman-manufacturing *** You just got a free box of teeth whitening strips from Brady Dental Care! Sign up as a new patient to get your free kit. https://bradydentalcare.com/hello
On this episode of Healthcare Market Matrix, host Jessica Head is back for another episode in her Applied Learning series. Jessica is joined by Kyle Numann, design and development director at Ratio, for a conversation about how marketers and their teams can build digital platforms designed for growth and scale. Together, Jessica and Kyle cover the importance of making data-driven solutions when introducing a brand, the power of the buyer matrix, and designing for diverse populations. Show Notes (1:18) Introducing Kyle Numann (3:16) Making Data-Driven Solutions When Introducing a Brand Digitally (6:27) The Buyer Matrix (9:38) Designing for Diverse Populations (12:41) Closing Thoughts Subscribe to Ratio's Insights Squared newsletter: https://goratio.com/newsletter
This one was worth the wait! With PS on vacation and for a completely new perspective, DD's sidekick for this episode was the one and only Peta Cox. Vicky Halsey was the guest of honor and she did not disappoint. Vicky is the VP of Applied Learning at Blanchard the global leader in developing leaders that inspire performance. Vicky's passion for Situational Leadership (SLII) is evident and infectious. SLII, the most widely used leadership training program in the world, teaches leaders how to build meaningful connections with coworkers that create exponential impact. When this happens, employees are more productive and engaged. And their organizations excel. DON"T MISS OUT ON THIS!! Jack Welch was quoted. Music by PINK!!
Hillary Miller has been an educator for over 20 years. Hillary has worked in PK-12 education in most capacities as a teacher and administrator. With a strength-based focus, she has spent her career finding ways to meet the needs of individual and small groups of students, as well as building positive school cultures. Over the past few years, Hillary has supported school leaders as a consultant across the US to create more positive school cultures. This work focuses mostly on schools with alternative programs in marginalized communities.In 2020, Hillary co-founded Solving Fun, a company focused on building creativity, critical thinking, and collaboration for kids ages 7-12 through puzzles, activities, and games. Hillary holds a BS in Applied Learning and Development from the University of Texas at Austin, and a Masters in Educational Administration from Texas State University. In addition to her consulting work, Solving Fun, and spending time with her family, she is currently pursuing a PhD in Education at Auburn University.Join us for this insightful conversation about meeting students' unmet needs, building strong school cultures and the importance of taking risks and making mistakes.IN THIS EPISODE, WE DISCUSS: How Hillary's educational journey has evolved and the work she is currently doing. Hillary's work with game designer Marcy Tivol to create Solving Fun. How the puzzles, games, and activities from Solving Fun help to promote engagement and collaboration in classrooms. Figuring out the unmet needs of students in order to provide alternative forms of learning. Practical tips for better supporting students with their academic, social emotional, and sensory needs. How to build strong school cultures to support a shift in education. The importance of taking risks and making mistakes as an educator. Staying focused on goals as an educational community. RESOURCES AND LINKS MENTIONED IN THIS EPISODE: Connect with Hillary and Solving Fun on Facebook, X, Instagram, and LinkedIn. Send Hillary an email at hillary@solvingfun.com or hillarymiller@gmail.com Check out www.solvingfun.com for puzzles, activities, and games focused on perseverance and creative problem solving. Check out UP Academy's Project Literacy Curriculum at projectup.us. Get your copy of Rebel Educator: Create Classrooms Where Impact and Imagination Meet Learn more about Rebel Educator, explore our professional development opportunities for educators and students, and check out our project library. Visit us at UP Academy to learn more about our personalized and inclusive learning environment. Connect with Tanya and UP Academy on LinkedIn, Facebook, and Instagram and learn more about her journey here. Enjoying the show? Leave us a rating and review and help more people find us!bit.ly/RebelEducatorApplePodcastsWe'd love it if you could take a few minutes to fill out this survey to let us know how we can bring you the best possible content: forms.gle/JcKHf9DHTZnYUmQr6 Interested in being on the Rebel Educator podcast? Fill out this form and we'll reach out to you if we think you'd be a great fit for an upcoming episode. https://forms.gle/CZJXLQDdevPh22ZN7Want to learn more about opening your own UP Academy? Check out the Rebel Educator Accelerator:www.rebeleducator.com/courses/the-acceleratorMORE ABOUT THE REBEL EDUCATOR PODCAST:In each episode of the Rebel Educator podcast, I deconstruct world-class educators, students, and thought leaders in education to extract the tactics, tools, and routines that you can use as teachers and parents. Join me as we discuss how to shift the classroom, the learning environment, the mindset, and the pedagogy, to resist tradition, reignite wonder, and re-imagine the future of education.This podcast is dedicated to all of the educators who work thankless hours to make our next generation the best it can be. It was designed to begin conversations on how we can redesign education for the future of work and the success of our students. It is meant for teachers, students, administrators, homeschoolers and anyone who interacts with and teaches youth.
Wouldn't it be great if you could practice your Oracle Cloud Apps implementation in a safe, controlled lab environment? Well, now you can! Join Lois Houston and Nikita Abraham, along with Bill Lawson, as they discuss the new Applied Learning for Fusion Cloud Applications Implementation projects, which provide practical use cases and business scenarios that you can work through to apply the concepts you've learned and expand your skills. Oracle MyLearn: https://mylearn.oracle.com/ Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ Twitter: https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, Kris-Ann Nansen, Radhika Banka, Sujatha Kalahasthi Raju, and the OU Studio Team for helping us create this episode. -------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started. 00:26 Nikita: Hello and welcome to the Oracle University Podcast. I'm Nikita Abraham, Principal Technical Editor with Oracle University, and with me is Lois Houston, Director of Innovation Programs. Lois: Hello everyone! In our last episode, we spoke about HCM business processes and learned about the Talent Life Cycle. Today, we're going to take a look at some related training that's just launched in our Cloud Learning Subscriptions. This new training was developed based on requests from our customers and partners. You asked, and we listened. 00:58 Nikita: We're joined by Senior Director of Cloud Applications Product Management, Bill Lawson, who you've heard from before, and he will be telling us all about this exciting new program. Lois: Bill, we're so happy you're back with us today. So, as I mentioned, this new program was a direct result of customer and partner feedback. Can you tell us a little bit more about how that happened and what this new training is all about? 01:20 Bill: I'm happy to be back as well, Lois. And very excited to share details about the Applied Learning for Fusion Cloud Application Implementation projects that are now available. And you're correct. This was in direct response to requests we received from our customers and partners. As you're aware, we hold quarterly feedback sessions with some of our strategic partners and customers, and one thing we heard was the need to have some practical applications of concepts learned in our implementation courses. 01:46 Bill: So, we got our subject matter experts on the task and challenged them with creating some real-world scenarios that students can work through in our hands-on lab practice environments. In these scenarios, students will work their way through examples of some of the decisions and configurations that they and customers might need to go through in an implementation of Oracle Cloud Applications. It's a great way to expand your skills and apply the concepts you've learned in implementation classes in a safe, controlled lab environment. Then, you can take that back to your workplace and apply that knowledge in your own implementation projects. 02:19 Nikita: Wow, that's really cool, Bill. And how exciting that we're taking feedback directly from our customers and developing the training that they are asking for. Bill: Yes, Niki, it is. And we're planning to continue that listening program in our Oracle University Learning Community. We've launched an Idea Incubator and we're looking forward to hearing from our members about their content ideas and suggestions. Who knows what new types of courses will come out of that? 02:43 Lois: It's another great reason to join the Community for sure. Bill: Indeed, it is. Nikita: Ok, Bill, back to the Applied Learning for Fusion Cloud Application Implementations program. Who is this training best suited for? Bill: Well, Niki, it's really aimed at those people who are going to be actively involved in an Oracle Cloud Apps implementation. So, your solution consultants, implementers, administrators, project teams, etc. etc. 03:07 Nikita: And can you give us an example of what one of these projects looks like? Bill: I sure can, Niki. One of the new Applied Learning Implementation projects is centered around Fusion Enterprise Structures & General Ledger in the ERP space. In the project scenario, we follow a fictional company, which is a startup that has decided to implement Oracle Fusion Cloud Financials to streamline their business processes while taking advantage of the latest functionality Oracle Cloud Applications has to offer. The case study outlines the business requirements of the company and then provides a challenge to the learner. The student must determine how these requirements would be met within the application, complete the setup and configuration, and validate that they've done it correctly. 03:48 Lois: That's really neat. So essentially, it's mimicking a business scenario that you may come upon in a conference room pilot during an implementation and would have to configure using Fusion Applications. Bill: Right, Lois. Providing a practical business scenario based on the customers' requirements for the student to configure a solution in a safe practice environment. The student will be prepared to tackle the scenario based on the foundation of knowledge they've gained when they completed the implementation learning path training in the learning subscription or during their previous implementation experience. 04:22 Have an idea for a new course or learning opportunity? We'd love to hear it! Visit the Oracle University Learning Community and share your thoughts with us. Your suggestion could find a place in future development projects. If you're already an Oracle MyLearn user, go to MyLearn to join the community. You will need to log in first. If you've not yet accessed Oracle MyLearn, visit mylearn.oracle.com and create an account to get started. 04:51 Nikita: Welcome back. Ok, Bill, so the students do this setup. How do they know it was done correctly? What if they get stumped and don't know what to do? Bill: If they're completely stumped, then it's probably a good indication that they need to revisit the training and check that they understand the core concepts. But once they've completed the challenge, there will be a solution video in which our SME will walk through one of the possible solutions. Bear in mind, there may be more than one solution that is possible. We will show one possibility, but learners may opt for a different route when they approach the challenge. And that's ok. We want people to be able to explore the options and learn while they're doing so. 05:28 Lois: And all of this is done within MyLearn and the lab environments provided to our learning subscribers, right? Bill: That's correct, Lois. This content is available to our MyLearn subscribers. The projects are included as part of the Cloud Applications Implementation training. So, if you go to mylearn.oracle.com and search by the phrase “Applied Learning,” you will find all the applicable learning. You can also search by “Implementer” to see the Implementation training that is available. Applied learning projects will be part of this implementation training. The content is available on a paid subscription basis only, but very well worth the investment if you're in the middle of an Oracle Cloud Apps implementation. If you already have a subscription, you can dive right in and give one of our projects a try. 06:12 Nikita: Bill, where are these Applied Learning scenarios found? Is it only for General Ledger? Bill: No, Niki, it's not. We've got Applied Learning projects available for 10 of our most popular product areas, such as General Ledger, Payables, Receivables, Project Management, Accounting Hub, Global Human Resources, Talent Management, Recruiting, Inventory, and Procurement. Lois: So, we're covering all the bases here – ERP, SCM, HCM… Bill: Exactly. 06:42 Lois: Is there anything else we should know about the Applied Learning program? Bill: Well funny you should ask, Lois, because one of the unique things we're doing with this new program is we're offering the opportunity to engage with other people who are completing the project via a discussion in the Oracle University Learning Community. Lois: You knew that was a loaded question, right? Bill: Haha, I sure did. You're the champion of our Community. So, in the Community, people can ask questions, share their solutions, and more. It's a great way to expand the learning experience and see how other people approached those same scenarios based on their knowledge and experience. 07:13 Nikita: And if people have ideas for other Applied Learning scenarios, what should they do? Bill: They can always suggest those in the Idea Incubator in the Community, Niki. Lois: Yep. The Community has a lot of great things to offer. If you're not a member, you should join today by accessing it via mylearn.oracle.com. 07:29 Nikita: Thank you so much, Bill, for coming back to talk to us about the Applied Learning program. I really think it's such a great new resource for our learners. Bill: I'm always happy to be here with you ladies. Thank you for having me. Lois: Thanks Bill. Ok, next week we've got another great topic lined up. If you followed along with some of the announcements at Oracle Cloud World, you'll know that we launched a new certification and training path centered around Artificial Intelligence. Next week, we'll be talking with Rohit Rahi to learn more about this free training that is available, in an episode we're calling AI for Everyone. You won't want to miss that. 08:03 Nikita: And if you want to learn more about these Applied Learning projects, visit mylearn.oracle.com. Lois: Right, Niki. So that's all for today. Until next time, this is Lois Houston… Nikita: And Nikita Abraham, signing off! 08:15 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.
How much can e-learning help in the medical service? Quite a lot, actually! In this episode, Graeme and Stefan sit down with Eric Peotto, a digital learning consultant who's passionate about evidence-informed practice (find his website here). How does Eric use VR in his role with NHS Blood and Transplant? How did Eric shift from the classroom to online learning? And what do Canadians call beanies? All this – and more – within.
In this episode, I chat with my friend Nicole Papaioannou Lugara about working with others (clients, SMEs, teammates, and stakeholders) and about learning with others through social learning. Nicole Papaioannou Lugara, PhD, is the founder of Your Instructional Designer, a learning and people development agency committed to accelerating startups through enhanced operational efficiency and collaboration via our social learning solutions. An entrepreneur at heart, she is also co-founder of the eLearning Freelancer Bootcamp, Learn Getaway retreats for women entrepreneurs, and Recovery Education and Applied Learning, a platform for parents of children with substance use disorder. She is working hard to learn how to Her mission is to make learning that matters.https://www.yourinstructionaldesigner.comhttps://www.linkedin.com/in/nicolepapaioannouphdhttps://www.instagram.com/yourinstructionaldesignerNicole's suggestion for creating social learning experiences:Contagious by Jonah BergerThanks for listening to the BLOC! Connect with me on LinkedIn: https://www.linkedin.com/in/heidiekirby/Or check out what I'm working on over at https://www.getusefulstuff.com/
Transcript: Joe Krebs 0:10 Agile FM . Radio for the Agile community. www agile.fm. Welcome to another episode of agile FM today I have Katie Anderson with me. She has a web address not as easy ... Katie Anderson.com No! It's www.KBJAanderson.com. Just want to highlight that if you're starting googling her, she's an internationally recognized leadership coach, consultant, professional speaker, best known for inspiring individuals and organizations to lead with intentions. She has written a book, learning to lead, leading to learn that was published in 2020. We want to talk about some of those topics today. In this episode, we're gonna talk about maybe Australia, Japan, UK, United States, topics like that. But first and foremost, welcome to the podcast, Katie.Katie Anderson 1:07 Thanks, Joe. I'm so really excited to be here and to have this conversation with you.Joe Krebs 1:11 That is awesome. There's, let's let's kick it off with a fun fact. Because I was doing a little research on your website, that is KBJAnderson.com. And I did some research and you started your business in July 23 of 2013. And exactly in that week, the first agile FM podcast came out.Katie Anderson 1:31 Oh, wow. Well, we're, we're fated to talk together with the great beginnings of a podcast andJoe Krebs 1:39 yeah, I would have thought almost 10 years congratulations to that. Oh, thankKatie Anderson 1:44 and who would have thought I had no intentions previously of starting my own business. But looking back, it's not a surprise when I sort of see how the things in my past actually connected it to lead to where I am today.Joe Krebs 1:59 Right. So very diverse background I noticed by two you started working, you know, if I please correct me if I'm wrong here. Planet Hollywood or something like that was? Oh, yeah, it's good. Yeah.Katie Anderson 2:12 I was well, that my I would consider that pre my professional career starting. But yes, in the year and a half after I graduated from university, I moved to London, and was Katie from California, as one of the servers at Planet Hollywood. Now this is back in the late 1990s, when Planet Hollywood was like, you know, the place to go. So it was it was a fun, fun experience and a great kind of bridge between finished graduating from Stanford University. And moving on to my the first part of my career in academia. So, yes, I never thought I was going to be an entrepreneur. So starting as an academic, but it all came together full circle,Joe Krebs 2:53 right. And that was before 2013 way before starting point that we can say, you know, England, London, check for his country already wide covered, you lived in a country and there were other countries on your journey as well, Australia, but Japan had a huge impact too.Unknown Speaker 3:11 So prior, so I've lived in I think I six countries outside of the US. So in high school, and in university, I did exchange student programs in the Dominican Republic and in Spain, then moved to London after university. And I was a winner of a Fulbright scholarship. And that's what took me down to Australia to do my master's degree in public health policy. And I stayed there for four years. And that's when I made one big career shift from academia actually into consulting, still in the healthcare space, and then returned to the US. And that's where I got my introduction to lean and continuous improvement and operations and all of the things that now I've shifted into my my later career and then moving to Japan as well. So...Joe Krebs 3:58 it's all of those things you just touched on speaks for your diversity and it's things we have experienced that obviously have an impact on one of the things you all bring together. Right. I think that's that's what this is why when you're pulling from different kind of areas and life and professional experiences, even better, Japan, I think, had a big impact on you.Katie Anderson 4:20 He has always had, yeah, a big impact but and Japan has had a tremendous impact on me from it was almost eight years ago at the time of this recording that my family moved to Tokyo for my husband's job he actually works in works in IT and we went out there for almost two years, and has just been an incredible part of my personal and professional life since then became the basis for my book "learning to lead, leading to learn" lessons from Toyota leader Isao Yoshino Tino and a lifetime of continuous learning. And the this Japan study tours that I run, leading tape leaders and practitioners from around the world to go learn in Japan on an immersive week long trip. Right? So I'm excited to be going back to Japan and 2023. So we're post pandemic are moving through the pandemic.Joe Krebs 5:14 of course, that obviously had an impact on that as well. Right. helped me build this this connection, obviously is Isao Yoshino if I pronounced that correctly. Well, thank you. Yeah. So he, his part indirectly part of the book, because these are stories, where do you have extracted and learning from, from him, but it's so fascinating about him that you decided I want to write a book about him or about him, but you know, in the context of him from a leadership perspective, learn and extract from him.Katie Anderson 5:48 Yeah, so that mean, he is the subject of my book, we became the what what I thought was a once in a lifetime opportunity to spend the day with a Toyota leader in Japan turned into one of the most profound and connected, you know, adult relationships in my life. And he played some really important behind the scenes roles at Toyota, in the 70s 80s, and 90s, as it was really transitioning to this real learning culture, that was more people centered as well. So leading, and being part of teams that were like almost you consider the internal consulting team, some huge leadership transformation, efforts, re-training, 1000 plus of Toyota senior managers on really what it means to be a leader to create learning in organizations and achieve goals, sort of the foundation of so much of what we know, that might be considered Kata, or a A3 thinking as well. And then part of the joint venture between Toyota and General Motors when Japan was sorry, when Toyota was expanding overseas known as numi, he was in charge of the leadership development program for the training program for the American workers to come out are the American managers to come to Japan to learn the Toyota way. So really prove that you can translate this thinking across cultures, that it's these principles like work, it's just how we embody them, and how we support the development of other people, so and so much more. But I as I dug into my learning from him, and realized how much history there hadn't been captured, and just his wisdom, his own personal journey, I realized this, this needed to be brought to the world. So it's been one of my life's great privileges.Joe Krebs 7:37 Yeah, so we had the opportunity to speak more, spend more time with you. Isao I would assume that not just one one day,Katie Anderson 7:45 oh, my gosh, yes, I so I, we, he I'm recording this in my office, it's also our guestroom he stayed at my house multiple times, we, I would, when I was living in Japan, we would spend, I would jump on the Shinkansen the bullet train, almost every month, every other month, spend the day with him started writing, I was writing a blog at the time, being a lean practitioner living in Japan was a really, you know, unique opportunity, and was writing about our conversations and people were really taken with it. When I moved back to the US. In 2016, we continued our partnership, and just this idea of writing a book came to be and as you know, the concept of a book, a great idea turns into something different and it became a much larger project to once we started with purposeful interviews, but it we've I this book is the culmination of 1000s of hours of conversation, which I'm so grateful to have learned from and having the one on one interaction, but also to be able to synthesize them and put them in a really, hopefully enjoyable read, but a really helpful and useful book for for practitioners lean, agile, you know, just enthusiast about learning and leadership around the world.Joe Krebs 8:59 Right. So I just wanted to make sure right, because you know, and that anybody walks away from this podcast has actually spent a day with no, no, no. Emerging with almost 400 pages.Katie Anderson 9:11 years. And we. So I had, you know, a lot of material from previous years of conversations and writing blog posts and working partnering together. But we when we said yes to like we said, Well, yeah, let's do this book idea together. And it actually wasn't intended to be using all of his stories, it was had a different form and shape. And I talked about that in the introduction how it morphed as you learn. But through the purposeful interviews over the course of a year, it became clear that so much needed to be so much more needed to be shared in a different way.Joe Krebs 9:47 Just curious, I mean, I would assume the conversation was in English.Katie Anderson 9:51 Yes. So Mr. Yoshino spent 14 years of his career in the United States. And actually, as you discover in the book, you know, his lifelong dream was to live in the US Since he studied English from an early age, and this is quite unusual, actually, you know, he was born at around the time of the end of the Second World War. And so, you know, the US and Japan relations were, you know, they're a little different than they are now. So his English is quite fluent, and which has been great that he to through the pandemic, even though we had planned to have all these in person events, he's now able to connect with different leadership teams and help them have conversations and talk about things as well.Joe Krebs 10:30 Do you think like, even though it's not necessarily the mother tongue that something? You know, was it harder to catch something that might have gotten lost in translation, just from like, Japanese culture at Toyota's perspective, translating into English was without any kind of difficulties, just like from a language perspective. I mean, there's always ways to, you know, I say it differently, but it's not the same, necessarily right?Katie Anderson 10:57 So I would say not as much between Mr. Yoshino and myself in terms of the book, as it relates to principles from Toyota. And what we know is lean or the Toyota way didn't, whatever you might want to call it. There have been some lost in translation moments. And particularly, and I highlight this at the end of the book about the internal document that Toyota put together in 2001, to really sort of summarize their culture and what the Toyota way really means. There were two elements that I really consider lost in translation that have really, I think, impacted how people think about what is emerged as lean or agile and a little bit more focused, why we've ended up being more focused on tools perhaps, than the real essence, which is around learning and people. The first is that the Japanese, the way the Japanese words are written, respect for people, we only have one word for respect. And one sort of the one way of looking at the people but the the way the kanji symbols are written in Japan, there's a there's a nuance in those words, and it's respect for humanity or respect for your humaneness, which, to me, has a much more enriched meaning than just respect for people, which you might be able to think of as, like, Oh, I'm respecting you just because of your title. And the second element, which I think is real, a real miss actually on Toyota is part because they were the ones who translated it this way, was that the the way they the pillar of the Toyota way that they translated just as continuous improvement, actually is made up of two Japanese words, one, which is Kaizen, which we know is where we are commonly know as continuous improvement or improvement. There's that was Kaizen and wisdom "chie". And we're totally missing the word wisdom from this concept, and to me, wisdom is like that generational knowledge. It's information that we're putting into place, and it's much richer and so are the missing the word wisdom, to me, really just make sort of continuous improvement. Okay, yeah, we want to make incremental changes and improve all the time. Wisdom has a sense of gravitas, and generations and connectedness that so that that part to me is lost in translation, as it relates to my conversations with Mr. Yoshino? I don't know. I don't think so.Joe Krebs 13:27 Well, so your so your book, what's what's really standing out is in a very short period of time since 2020, when the book came out tons of reviews, and not only reviews, five star reviews. I mean, it's just very, very remarkable have to say, usually, I don't pay so much attention to that I had people on the show here with a few stars, you know, and on an on an Amazon page. But that really stands out, I have to say and what I want to say those those guests were great guests, great topics. It's just like, you know what the public thinks about it. But it's, that's tremendous, in terms of what people would like to learn from you here, and it's let's focus a little bit on the book. Why because it's I think, what's what's in there is about "Learning to lead, Leading to learn". So it's a great wordplay. Well, I love it to add, but it's it's also something where he just mentioned about continuous learning. Right? Well, I would like to go as in terms of leading is some people, at least when I started my career, they were hired, you know, because they brought a certain knowledge to the job description when they were hired to say, like, we need exactly that knowledge to come in. Right? Especially on the leadership side, right? Like, I need that leadership to come in. I need somebody who has that knowledge. So you're basically brought in for what you knew at that time. Your book is all about going forward, right? You're coming in and continue your learning journey. I don't think that you know, that's obviously what we're talking about 20,30 years ago, he might have been different and maybe it was me isolated, but it just felt like that. That didn't beginning you were hired for something because of your knowledge at that time, I think that is a concept. So how do we, you know, how would you tell the listeners here to a listening to this episode here right now, the approach at Toyota, what you have learned and what you experienced over the years since since you wrote the book in the years before?Katie Anderson 15:17 Yeah, absolutely. And this is really what I see as the secret to Toyota and why they've been so successful, and why so many companies and leaders around the world are really trying to emulate what they've done either through applying lean or agile or kata, you know, all of these things that sort of had its genesis through these, through Toyota really be applied in different contexts. The one of the, the framework that I talked about leadership is this comes out of this comment that Mr. Yoshino made one of the first times I met him, and it really summarized to me the simplicity of what leaders need to do. And it's actually inherent in the kata framework as well, or A3 thinking, whatever all the tools you want to talk about from, from Toyota leaders set the direction. So where do we need to go? And you know, what's that challenge the target we need to achieve, then provide support. So that's the coaching the development, the cultivating other people's expertise, and figuring out how to get there. And then the third part is about developing yourself as a leader. And that third element is often missed when we think about leadership. Yeah, okay. Leaders need to set the strategy with the goals, where do we need to go? Okay, yes, they need to provide support to their people, what does that look like? But this realization that we also need to be always developing and improving ourselves, both from our knowledge perspective, but also from our behaviors, and our skills and abilities to be clear on strategy and direction? And then really, what does it mean to provide support? And you highlighted what I think is one of the biggest gaps that I've observed in leaders around the world. And was also, you know, when I, when I realized for myself as a, as a manager and leader within an organization, a challenge as well, is it we have cultivated deep expertise and knowledge, and we are hired often for that technical ability that we have developed. And that's great when we're in individual contributor role, or there's a problem that specifically or strategic initiative that needs to be solved, though, when we have people development responsibility, which usually comes with being a manager or a team leader, or however the structure is, you also need to be stepping away into how do you cultivate that expertise for other people and let them learn and develop those capabilities. And so we have to navigate this leadership continuum between being an expert and developing the expertise or coaching the expertise of others. And that can be a really hard shift for us to make and something that we're like invisible to sometimes. So we're jumping in with all the answers and trying to give people our all our ideas, which is great, because we feel helpful, but it actually is missing out on that secret sauce, which is cultivating learning across the organization.Joe Krebs 18:10 And it's not only the learning for team members or team or a group I work with, it's also my own learning. Right? So that's also, butKatie Anderson 18:20 absolutely, and so you're learning. And I call this this chain of learning, like we're learning through working on a needed gold or also learning through the interaction about how to be more effective and how to do that differently.Joe Krebs 18:35 Yeah, I always think like, if you hire somebody, you know exactly through like a checklist of skills and expertise you're looking for. And let's say you have that perfect match, check, check, check, check, right, and you got more than that person would be bored coming on the job, right? Because it's like that is, you know, what's the learning path here? So you got to provide that, for a person, at least that's how I'm triggered was like, what's, what's next? How can I evolve? What is the to learn and, and that platform, that environment has to be there for somebody to flourish? Right?Katie Anderson 19:03 Absolutely. We, I mean, we know this innately as human beings, right, we always need a little bit of challenge and a little bit of something new or making progress. I mean, that's very rewarding. And when we don't have that we do feel disengaged, or, you know, unsatisfied. And so that's part of the, you know, manager or leaders responsibility, too, is making sure people have enough challenge that's stretching them but enough support that they feel like, you know, they're not like doing it all alone. At that same time, and that's where that learning zone, that sweet spot of the learning zone comes in.Joe Krebs 19:40 I just saw recently like, I think it was a McKinsey statistic it was all about like leadership and the introduction of agile, the impact on leadership, and it was like a significant percentage of people freed up time to actually focus on strategy right in a in an organization because there was so caught up in a day to day activities working like on very tactical items. Because there was so blocked and an agility created a kind of space for them. So...Katie Anderson 20:13 yeah, absolutely. And one of the unintended consequences of us kind of jumping in to participate in problem solving or taking, telling people, all of our ideas is we end up actually taking on the burden of having the responsibility for doing those things. So we don't have time and space to do anything else. And so actually, to be more effective, it's how do we how do we know which are like, our problems to solve? And where is it really our teams and our people? And what does it mean to show up differently to provide that support and that help that's needed without taking over all the all the activity? So that's the great leadership challenge, right?Joe Krebs 20:52 Here we go. That's a good one. It's let's let's explore this a little bit, because obviously, Isao Yoshina is from Toyota. So how would you respond? I'm just curious, put you on the spot here. But how would you respond to somebody who would say like, oh, that's all great. You talked to him, and you wrote a book, and it's about Toyota, and it's maybe lean? But what if, you know, somebody says, I work in a financial institution? We're not building cars or something like that? How would the topic? I feel like I know the answer, but I just want to make from you, how would a topic like this apply to you know, something more generic out there was somebody in a totally different industry might not even for profit, it could be nonprofit? Anything like that? How would you know somebody benefit from this?Katie Anderson 21:40 Well, I first and foremost, I started off in healthcare and working in large hospital and healthcare systems using the same principles to guide improvement. And I now work with industry agnostic, really, you know, I work with IT functions I work with, large, you know, biotech, pharmaceutical companies, I work with knowledge workers, you know, all across the board, what I think is really important is we have focused far too long on sort of the visual artifacts or the process side. Now, it's really important to improve the process, of course of how work is done, and how value is created for any organization's customers. The principles of all of this thinking can be applied to whatever industry. So what is your purpose, your organization's purpose? What is the value that you deliver? Or create either a product or service for your customer? How are you do that doing that in the most effective and high quality way? How are you engaging people's thinking and problem solving at the right level each and every day? How do they know where they need to go set the direction? How are you in creating that active engaged workforce? And how are you improving yourself as well. So I think, if we focus too much on like, Oh, I'm in a different industry, they this can't work, we're actually missing the whole point. Because the the way it will manifest will be different, actually different across any organization, even if you're in the same industry. So this is why Toyota never cared about if people went in and saw their, you know, went to the manufacturing shop floor and observed things because they knew they're missing. The thing that's really the secret, which is underlying everything is that they're creating, learning, looking at how they're developing people, engaging people each and every day, they were just solving the problems they needed to solve. Your problems are going to be different. So that I mean, that's my really my response. And I heard that so much when we were getting started in healthcare to oh, we do we provide health care for people, you know, we're not You're not a manufacturing line? Well, actually, there's a lot of similarity, if you look across, like looking at value and how we create value.Joe Krebs 23:53 Yeah, but it's interesting, right? As you just said, like very transparent on the on the floor, right? Build how we build things and take a look at it. We're very transparent in this. But even with the secret sauce, it's not easy to build that, that that map, like, we can still do that, because now we have the tools, why we can say, we have a better understanding of what's behind it, right. But we're still, we're still struggling to identify opportunities within organizations to try something like this. I mean, I'm just myself, you know, as we talked about before, the Kata is what I'm very passionate about the same thing, as like, you know, is this one comes from Toyota, it's extracted from Toyota with that map or apply to something else, and I see the synergies, but even with the secret sauce, it's not easy.Katie Anderson 24:41 No, I mean, that that's the that's the challenge, right? Like, actually, these concepts are very simple. And they really make a lot of sense if you just take a step back, but it's not easy to put into place. And that challenges all of us to think in a different way. I mean, I think in my own business, as well, like, I'm well into all of these principles, but to apply them in my own work requires me to, like put real effort into that and to like, oh, how am I making the invisible visible? How I how do I have clarity on where we need to go? All of those things? Yes.Joe Krebs 25:16 Yeah. So maybe there's also the answer. I'm just, I'm just gonna ask you because the book itself has the little add on. It's this workbook.Katie Anderson 25:25 Hmm. Yes.Joe Krebs 25:26 It's not a coffee table book.Katie Anderson 25:28 No, it's reflect and learn. I mean, it's beautiful coffee table book. But no, it's for Applied Learning, applied learning.Joe Krebs 25:37 Exactly. So how would you like and obviously, that's why I said coffee table book. It's not a coffee table book. It's a workbook, right? Because we do want to use a copy and we want to work in it. So how would you like the learner work through some of those things you're describing in your book? What's the style with a book? How would you envision that? Is that a start to end read? Is that a chapter by chapter and then possibly exercises? Is that something you go along with as a professional? Is that something you prepare for something? How would you like to see the reader or the professional use that and consume the work?Katie Anderson 26:13 So the book is really, you can choose to use the book however you want? The the way I wrote the book is about Mr. Yoshino's, chronological learning journey. And so it is you could you could go into one of the case studies and just read that what I think is really helpful is it shows like a real human perspective of how like someone starting at the beginning of, you know, actually, there's some backstory of his own person, how he got to starting at Toyota, but as a new college graduate, and, and experiences he had at Toyota about learning what it actually means to lead in this way, what does it mean to be a manager, what it means to be a leader, and then starting to apply them across different assignments that he had at different parts in his career, some which were great successes, and the last, you know, actually, an innovative new, you know, product for Toyota was a huge failure that cost the company $13 million. And he was responsible for that. So, you know, I think it's the human human story. And the feedback I get from those almost 255 star reviews on Amazon, is people really love this. It's a real story. And it's really human anatomy course, you can jump in at any point. And I have reflection questions at the end of each section of the book, to help people think about it. So I wrote the book, the workbook as a companion to really take some more of the concepts that I help leaders and practitioners learn about what does it mean to have intention? Who do you want to be? What are the actions aligned with that? What impact do you really want to have? And then some more some of the questions plus more questions to reflect on some space about that some different exercises to go through to really bring to life some of the stories in the principles that are talked about in the book, but how does that relate to me? You are you rather than the reader, the the learner? And then have what are you what action? Are you going to take on that? So you can use that as an individual, I also bring this into the leadership development programs I do with companies around the world. And as a core part of the learning experience, and if done as part of different cohorts of one, like small group learning I've had as well.Joe Krebs 28:28 Yeah. Well, I used to be a super well connected with the Lean community, as we know, obviously from from your background, you have worked with Agile-lists around the world. What would be your advice for agile leaders, from your experience from your, you know, seeing in workshops, and I'm sure there were some agile leaders that came across your work or read your books or give your feedback? What would you like to tell them in terms of mapping your book to the Agile community and possibly a focus on leadership and learning?Katie Anderson 29:01 Yeah, absolutely. And, you know, I've had different agile leaders and practitioners join me in Japan and have been part of my workshops and learning so people also in the IT space, and in many, many, many knowledge workers as well. And, you know, I gotta go back to what I we were just talking about that the these principles go beyond and actually, do you know, any, you know, I guess, categorization of approach that you've you would you want to call it agile, do you want to call it lean? Do you want to call it you know, continuous improvement, Kaizen, all of these things are built upon these foundational principles about what it means to achieve results, how we get there, how we resolve problems, how we develop people to solve problems and how we improve ourselves as well. And so when we can get back to those fundamentals, we can apply them in any aspect of our work. Regardless of you know what that's looking like and it can help us think differently about our processes. And of course, then we can bring in the different frameworks and approaches and apply this, the, our leadership behaviors to make those more effective. And so I would say, take this, take this step back to really think about what is your purpose in your as a human being first and foremost? And then how does it apply to your role or function and what you're trying to accomplish the impact you want to have? And then thinking about how are you best going to get there? And and how you can align your actions with having that impact that you want? And then how do you take the other frameworks and tools in within your sphere of work and make that happen? So that's, that would be my recommendation. And just sort of, and I'm not trying to take you away from saying, like, we all have different approaches have a great impact applied in the right context. But this is really fundamentally about how you're a real human story. And also, what does it really mean to be a leader and be a humble leader and a humble learner? And in a way, that's not what I appreciated so much about and I continue to appreciate that Mr. Yoshino, he's almost 79, by the way, and we're actually talking later today at the time of this recording, as it he was willing to share not just the success stories, but the challenges and his personal failures, too. And I think that that's really important for us to realize, and to, you know, it's easy to look back and only see the successes, but to hear about people's challenges also validates our own challenges and our own struggle, and that the journey to success is paved with setbacks. And this is, you know, learning is inherent about having, you know, not getting things right, but what are you learning, and I'm obsessed with these dolls called Daruma dolls, I have this huge collection. And I give them out everywhere. In fact, you know, Rich Sheridan has a derma doll for me, in our shared mutual friend, and they represent the Japanese proverb fall down seven times get up eight. So when you have a goal, you fill in the dolls left eye, and it's like a little paper, well, they can be giant too. But it's a paper mache doll that's waited at the bottom. So it's like a weeble wobble and always write itself back up. And to me, this is this great sort of encompassing conte, like visualization of a goal, the reminder of the persistence and patience, we have to have an end, just a reminder to have the inherent struggle, and the setbacks that happened towards achieving the goal. But if we can keep learning, keep getting up and keep moving forward. We'll eventually get there, even if the outcome of our goal looks different than we thought at the beginning.Joe Krebs 32:44 It's also tangible, right? Because you see, and it makes the goal tangible, right? Yeah. To these. Here we go.Katie Anderson 32:57 You can really knock it down, and we'll keep getting back up. So keep going.Joe Krebs 33:01 Yeah, our listeners cannot see this. But that was a Daruma at all. And we can we can put a link into that.Katie Anderson 33:09 Yes, either. Exactly. I'm usually I'm often holding a Dermatol. So you'll see many. And actually I gave Larry Culp, the CEO of General Electric, a larger during muddle when we were on stage together. In October of 2022. We were he loved my book recommended it to all GE employees across the company, which was, you know, amazing. And then I had the opportunity to have a fireside chat in front of 1000 people at the Association for manufacturing excellence. And when we talked about this concept of struggle, and learning and also, you know, the things we have to unlearn as leaders to get there. So I gave him a daruma doll, because I'm sure he has. I know he has some big goals out there. But he said the same thing. He had to unlearn everything that he was trained in business school about what it meant to be a leader. Not maybe everything but we have to get out of do what I call break the telling habit get out of this mindset that we are supposed to have all the answers. We have a lot of good answers. But are they the right answers? And so anyway, it was really, it was really wonderful. And, and awesome to hear directly from Larry and have the chance to talk with him. And really see, you know, I put him like with Rich Sheridan, these leaders who are really embodying these concepts that we're trying to develop in organizations, about what it means to really be an effective leader and an inspirational one toJoe Krebs 34:35 I don't even want to ask you a question. It was such a wonderful, wonderful end you just close it out so nicely, that I don't even want to go and ask you another question. But this is this was really awesome. I want to I want to thank you for your time. We can we can tell from your schedule that you're very busy. I'm happy you spent some time here with the listeners on agile FM that are out there and say that was very interesting. I might be They might pick up book, I might visit your website that is KBJAnderson.com. And there is ways to find you speak ways to engage, ways to find a path to your book or anything like that. And I'm super thrilled you had time to share your story here a little bit with us your story, right? I think that is great.Katie Anderson 35:20 Thank you, Joe. Thanks for inviting me here. And I'd love to hear from your listeners about what's one takeaway that they had from this conversation. And definitely reach out to me on LinkedIn as well. If you're interested in how to break your telling habit, I also have a free downloadable guide on my websites that's KBJAnderson/telling-habit so you can go there. Alright, Thanks, Joe.Joe Krebs 35:48 Thank you for listening to Agile FM, the radio for the Agile community. I'm your host Joe Krebs. If you're interested in more programming and additional podcasts, please go to www agile.fm. Talk to you soon.
With only five years of experience in the field of education, Sahur shares wisdom beyond her years in both teaching and leadership. Sahur has a calm confidence that will surely reignite your passion for teaching. As an ending to our summer series, this interview is just what you need to start your school year off right! You can read the article she talks about in the podcast https://www.schoolrubric.org/the-pandemics-impact-on-literacy-in-k-5-schools/ (here.) https://alwaysalesson.com/wp-content/uploads/2022/08/Intervie-4.png ()Quotables You don't necessarily need the years, just go about it in your own way and be excellent at what you do. Focus on being present on the day to day things you are working on. When I'm present I can realize the needs around me. Really great teachers come with a passion. Believe in the work that you're doing. If you're just committed to figuring it out in this life, you're going to be okay. About Sahur Sahur Augsteen is a Campus Instructional Coach with five years of experience in education. Prior to becoming an instructional coach, she was an educator in Dallas, Texas. She graduated from the University of Texas at Austin with her Bachelor's degree in Applied Learning and Development (Hook 'em!), before going on to earn her Master's in Urban Educational Leadership from Southern Methodist University. Coming from a family of educators, she feels that teaching is her calling! Sahur is an instructional leader who truly believes in the power of education and has seen how a dedicated teacher can change the trajectory of a student's life. Sahur loves to cheer others on! So much so that it is what she can be seen doing while coaching and supporting educators daily. Fostering relationships, being a servant leader and working alongside educators to help them polish their skills and talent is what bring her the most joy. She believe in continuously growing and dedicating herself to excellence. As a teacher, she was awarded Teacher of the Year her third and final year of being in the classroom. She has also been a mentor to first-year teachers and never misses the chance to make new staff on campus feel welcomed and supported! Outside of school, she loves to stay involved at church, spend time with family, drink coffee and work out. She can be found by the lake fishing or reading on any summer day. She always finds value in the small moments and looks for ways to spread kindness and love toward everyone she meets. Connect with Sahur: IG https://www.instagram.com/thattexasteacher/?hl=en (@thattexasteacher) Twitterhttps://twitter.com/MsAugsteen ( https://twitter.com/MsAugsteen) Website https://sahuraugsteen.wixsite.com/website/growing-our-garden (https://sahuraugsteen.wixsite.com/website/growing-our-garden) Come Chat on Clubhouse! Instructional Coaching Clubhttp://www.clubhouse.com/club/instructionalcoaching (- www.clubhouse.com/club/instructionalcoaching) Join the Always A Lesson Newsletter Join http://eepurl.com/lJKNn (here) and grab a freebie! Connect with Gretchen Email: gretchen@alwaysalesson.com Blog: https://alwaysalesson.com/blog/ (Always A Lesson) Facebook: https://www.facebook.com/AlwaysALesson/ (Always A Lesson) Twitter: https://twitter.com/gschultek/ (@gschultek) Instagram: https://www.instagram.com/always.a.lesson/ (Always.A.Lesson) Linkedin: https://www.linkedin.com/in/GretchenSchultekBridgers/ (Gretchen Schultek Bridgers) Book: https://alwaysalesson.com/product/elementary-educ-101-what-they-didnt-teach-you-in-college/ (Elementary EDUC 101: What They Didn't Teach You in College) Leave a Rating and Review: This helps my show remain active in order to continue to help other educators remain empowered in a career that has a long-lasting effect on our future. https://itunes.apple.com/us/podcast/always-lessons-empowering/id1006433135?mt=2...
Living With AI Podcast: Challenges of Living with Artificial Intelligence
This 'Projects Episode' discusses a few TAShub projects grouped around the theme of whether we can trust machines to care for us.Project: Trustworthy light-based robotic devices for autonomous wound healing Sabine Hauert – Project Lead Contact Reader of Swarm Engineering, University of Bristol Project: COTADS Michael Boniface – Project Lead Contact, Director of the University of Southampton, IT Innovation Centre Project: Trustworthy Autonomous systems to support healthcare experiences Nils Jäeger – Co-Lead Contact, Assistant Professor in Digital Technology and Architecture, University of Nottingham Industry Partner: Dr David Crepaz Keay, Head of Applied Learning, the Mental Health FoundationPodcast Host: Sean RileyThe UKRI Trustworthy Autonomous Systems (TAS) Hub WebsitePodcast Host: Sean Riley The UKRI Trustworthy Autonomous Systems (TAS) Hub Website
The Maslow Academy of Applied Learning is expanding with a new site in Colorado Outdoors. Maslow, an early childhood center, will move into the space, which will allow them to add about 70 new child care spots. Support the show: https://www.montrosepress.com/site/forms/subscription_services/ See omnystudio.com/listener for privacy information.
Dr. Joyner currently serves as the Director of Health Care Education and Innovation and the Executive Director of the Center for Experiential and Applied Learning (CEAL). CEAL serves as an institutional training center for students, (MD, PA, CRNA, Graduate), residents, faculty, nurses, allied health, community schools, and K-12 education. The Center specializes in simulation, ultrasound, human tissue services, instructional design industry and professional education, and standardized patients holding over a 1,000 training sessions per year. Learn more about CEAL at https://school.wakehealth.edu/CEAL
Welcome to the PBL Playbook, brought to you by Magnify Learning – where we put teachers back in their sweet spot. Make sure you follow us on Twitter: @magnifylearning, @askgiebs, @MissB103, #PBLPlaybook.In this special episode of the PBL Blitz series, Andrea interviews a familiar voice: Josh is the special guest on this Blitz episode to discuss PBL vs. PrBL (Problem Based Learning) and the authentic application of learning on a smaller scale. Especially in the math classroom, PrBL gives teachers and students an opportunity to engage with standards in an authentic application that is not quite the extent of a full PBL. The need for this could be because of the way standards flow or fit together, or maybe it is a first step for a newer facilitator of classroom PBL to start to integrate the strategies of PBL into the classroom. No matter the purpose, PrBL is a great way to incorporate the “Spirit of PBL” into the classroom on a small scale for engaging and authentic learning opportunities. Enjoy this special PBL Blitz episode!Music from https://attaboyonline.com/home#music"Waking Up" by Attaboy (https://attaboyonline.com/home#music)
No one became successful from learning all by itself. Discover the powerful secret you can use to accelerate your success.
Join Tahir Khalid and Talib Man for Monday's show where we will be discussing: Lockdown/ Hajj Lockdown lifted Lockdown has officially been lifted - does that mean we revert back to previous traits? Join us as we discuss the positive things lockdown has taught us and how people are feeling now restrictions are lifted. Hajj: The Sacred Journey As Muslims gather for the final day of Hajj ahead of #EidulAdha we take a look at this sacred pilgrimage all believers are commanded to take if physically and financially able. Join us as we answer your questions about the #Hajj. Guests include: Julian Birkinshaw (Professor of strategy and entrepreneurship) Dr David Crepaz-Keay (Head of Applied Learning and the Mental Health Foundation) Shagufta Anjum Dr Tariq Bajwa (GP, Presenter at Voice of Islam, Hajji) Produced by: Kafia Ahmad, Munahil Nasir and Zainab Fatima.
Everyone says knowledge is power. How do you qualify knowledge? More importantly, how do you qualify learning? --- This episode is sponsored by · Anchor: The easiest way to make a podcast. https://anchor.fm/app Support this podcast: https://anchor.fm/geminigems/support
Season 3, Episode 6 (029) Today I am joined by the wonderful Maddie Cole, a VCAL (Victorian Certificate of Applied Learning) educator who is passionate about her role and championing for her students in order to succeed. She shares: * her "why" for doing her role * her journey into education * life lessons and why VCAL is important * Self-care practices * Quick Fire Five Maddie can be found on instagram @vcalteacher
In this episode of Mediator Musings Mediation Institute Director of Applied Learning, Ken Speakman chats with Venia Dimos, a dispute resolution specialist. From a background as a lawyer Venita has built her conflict inteligence to the level that she is a sought after speaker, working with Mediation Institute to develop a unique conflict coaching program and writing several books. Listen to find out more about Venita and her approach.
Send us a textWelcome to the PBL Playbook, brought to you by Magnify Learning – where we put teachers back in their sweet spot. Make sure you follow us on Twitter: @magnifylearning, @askgiebs, @MissB103, #PBLPlaybook.In this episode, Josh and Andrea continue their series about the 6 A's of PBL project design, where each episode will focus on one of the A's and its importance to the PBL framework. This episode, they get a chance to talk to Laura Burbrink, who is a UDL Coach in Columbus, IN, has taught PBL at the elementary level, and has had four children of her own go through the PBL Pathway in Columbus. Laura discusses the fifth A of this series: Applied Learning. She identifies what Applied Learning looks like in a PBL, and how to integrate this idea in such a way that seamlessly fits with the project and content. She mentioned several of the other A's of PBL project design, hitting home that none of these components work in isolation. Enjoy the fifth installment of the 6 A's deep dive series, and stay tuned for more great content coming from the PBL Playbook every month!Music from https://attaboyonline.com/home#music"Waking Up" by Attaboy (https://attaboyonline.com/home#music)
Welcome to the PBL Playbook, brought to you by Magnify Learning – where we put teachers back in their sweet spot. Make sure you follow us on Twitter: @magnifylearning, @askgiebs, @MissB103, #PBLPlaybook.In this episode, Josh and Andrea continue their series about the 6 A's of PBL project design, where each episode will focus on one of the A's and its importance to the PBL framework. This episode, they get a chance to talk to Laura Burbrink, who is a UDL Coach in Columbus, IN, has taught PBL at the elementary level, and has had four children of her own go through the PBL Pathway in Columbus. Laura discusses the fifth A of this series: Applied Learning. She identifies what Applied Learning looks like in a PBL, and how to integrate this idea in such a way that seamlessly fits with the project and content. She mentioned several of the other A's of PBL project design, hitting home that none of these components work in isolation. Enjoy the fifth installment of the 6 A's deep dive series, and stay tuned for more great content coming from the PBL Playbook every month!Music from https://attaboyonline.com/home#music"Waking Up" by Attaboy (https://attaboyonline.com/home#music)
In this episode of Mediator Musings Director of Mediation Institute, Joanne Law and Director of Applied Learning, Ken Speakman talk about how you, we and everyone form maps of our world to help us to navigate our way through life. As with any map, they can get out of date or be poorly drawn in the first place and that can definitely lead to us getting lost. In mediation, our role is to help our clients to verbalise and explain their maps of the world (which make up their expectations about others) so that misunderstandings can be resolved.
In this episode of Mediator Musings Mediation Institute Director Joanne Law and Director of Applied Learning talk about the concept of perceptions and it's relevance to us as mediators and dispute resolution professionals.
Good morning and welcome to Montrose Fresh, the new podcast from The Montrose Daily Press. Today is WednesdayDecember 2nd, and we're here to bring you the local news, events, announcements, jobs, and more that matter to us here in Western Colorado. Today, our focus is on the mobile crisis service recently launched by the Center for Mental Health. Today's episode is brought to you by Elevate Internet. Whether it's for your home or your business they offer the best speeds at the best price. Right now, if you refer a friend you can get $25 off! Give them a call for more information at 844-386-8744 or visit them at www.elevateinternet.com. Before we begin, we'd like to recognize two Montrose High School Football players who have been playing together long before they joined the team. Brothers Austin and Blake Griffin, a junior and a freshman at Montrose High, have squared off since their younger years, racing against one another at home. These competitive sprints have translated to game action so far during the 2020 high school football season. The Griffin brothers, running backs for the Montrose Indians, experienced a rarity among siblings in the same program: playing together and scoring in the same game. Now, our feature story. People in need of immediate mental health care can't always access the Center for Mental Health's resources, particularly if they're in rural areas. Enter the center's new mobile crisis response team. The Colorado Office of Behavioral Health recently had a town hall with the Health Management Associates, or HMA - an independent research and consulting firm. HMA's Robyn Odendahl shared some really interesting insight, she pointed out that individuals in rural communities may have been more likely to visit an emergency department for behavioral health because they didn't have access to potentially more appropriate levels of care. The Center for Mental Health's new mobile crisis program is one more tool to help meet urgent mental health needs of individuals in these rural areas. Trained professionals are sent out to de-escalate situations and stabilize the involved individual. The team conducts a crisis evaluation and then connects the patient to a clinician for an in-person or telehealth assessment. The team can then transport the patient to the crisis center, hospital or other facility, plus make a followup care plan. People in crisis can call for help themselves; others can also call on behalf of someone else. The crisis team that receives the calls will evaluate the requests and then dispatch someone to help. Although the function is similar to the co-responder model, the new mobile crisis team is different — professionals still deploy to a person in need, but the idea is to avoid having to use law enforcement. The center also uses established guidelines to really make sure that professionals can safely respond without law enforcement support. The service is available 24/7 to people of all ages and regardless of insurance or ability to pay, thanks to some state investment. Next, here are a few other things going on in Montrose that you should know about. The man accused of biting off the fingertip of a police chief while resisting arrest has been formally charged with multiple counts of assault. / El Pomar Trustees approved grant allocations to 20 nonprofit organizations in the San Juan region. Recipients included several Montrose organizations including Maslow Academy of Applied Learning and the Black Canyon Boys & Girls Club / The Colorado Department of Transportation has completed installing a remote avalanche control system on Lizard Head Pass, Colorado 145. And finally, before we go we'd like to take a moment to remember the life of Robert Abbott. Shortly after graduating from high school Bob was drafted by the Army, where he was stationed in occupied Germany and was a tank mechanic. After the war he met and married the love of his life, Joan - becoming father to three kids, Alan, Ella and Tony. Bob and Joan ran a business together for over 25 years before retiring to Montrose. He enjoyed photography, fishing and roaming the mountains of Western Colorado. Thank you for taking a moment today to remember and celebrate Bob's life. That's all for today, thank you for listening! For more information on any of these stories visit us at montrosepress.com. And don't forget to check out our sponsor, Elevate Internet. Visit them at elevateinternet.com to learn more. For more than 137 years, The Montrose Daily Press has been dedicated to shining a light on all the issues that matter to our community. Go to montrosepress.com to subscribe for just $1.99 per week for our digital edition. You'll get unlimited access to every story, feature, and special section. Thank you and remember to tune in again next time on montrosepress.com or wherever you listen to podcasts. Support the show: https://www.montrosepress.com/site/forms/subscription_services/ See omnystudio.com/listener for privacy information.
Steve Joordens is a Professor of Psychology at the University of Toronto. He's also the Director of the Advanced Learning Technologies Lab at U of T where he researches the application of research findings to real life learning interventions. Steve joins Mike in a free-flowing conversation about the challenges and opportunities with online learning in these very confusing times. Steve shares his perspectives on how best to navigate the rapid shift to online and recommends we look to experts in learning science and digital instruction to help navigate the massive shifts we're experiencing. We talk feedback, scaling online solutions, and emphasize the importance of developing social emotional and interpersonal skills to train students to be ready to land their first jobs.
In this episode, we talked with Jake Mosley, Director of Student Engagement and 2 of our current students, John Davis and Alex Foye, both Class of 2021, about the applied learning opportunities in the program. Besides our Leadership Fellows and Non Profit Board Fellows programs, our students engage on real world projects with Atlanta- and Athens-area corporations, small businesses and local non-profits. In the last 3 years, they have completed about 70+ projects. In addition, students complete at least 50 hours of community service while in the program. Applied learning opportunities are an essential component of the curriculum because students apply what they have learned and gain experience that positions them competitively for internships and full-time jobs. And in some cases, they are a way our students give back to the local community. Listen to the slides and audio together.Connect with Admissions by signing up for a 1-on-1 appointment, register for any of our virtual events or reach out to an MBA Ambassador directly to learn more about the student experience. Learn more about the Georgia MBA and find us on Instagram, Twitter, Facebook and Blogspot, and check out our YouTube playlist.
Matt and Courtney return from their election-induced stress times with the introduction of the Profile of a Successful Distance Learner, developed this fall by the Maine Curriculum Leaders Association. They discuss how it is a document to be used to start conversations with teachers, learners, stakeholders, etc, and how it is NOT something to just hand out and call it good.You can find the document at https://www.mainecla.org/blog/mcla-profile-of-a-successful-distance-learner. It is definitely something we could all use as we head into the winter months.
Matt and Courtney made it through election day, but it's obviously still going. Just a few minutes of therapy from us about what to do next..... Hang in there.
Matt and Courtney return with a conversation around student attendance, some things that have been happening since March and into the fall, and how to go plaid.
Matt and Courtney are back with a mailbag! Post your own questions in our parking lot at plearnmc.com. Today's question: How do we set a reasonable bar for competency work when trying to hold students accountable in a "new normal" world?
Josh and Will talk with media literacy expert Tara Susman-Peña who works for a global nonprofit organization, called IREX, that is committed to global development and education. Tara brings her expertise in disinformation and the guys, especially Will, gets to nerd out a little with a person who understands the dangers that disinformation plays in our society. It's a fun, and very enlightening conversation that you will not want to miss.Bio:Tara Susman-Peña is a senior technical expert in IREX's Center for Applied Learning and Impact and in the Information & Media practice.Tara provides technical expertise on media literacy, media development, and research across the IREX portfolio. Tara specializes in the role of media, information, and innovation in governance, development, and resilience. Her experience includes strategic planning, learning, human-centered research and design, impact, evaluation, and international development policy. Previously, she was a lecturer at the Elliott School of International Affairs, George Washington University. Previously, Tara worked in audience research at NPR, and in commercial market research and communications strategy. She has lived in Havana, Cuba, and is fluent in Spanish. Tara has an MA in sociocultural anthropology from Columbia University and a BA in religious studies from Yale University.Support the show (https://www.buymeacoffee.com/faithpolitics)
Matt and Courtney return after a week off with a plea - use the damn moment! Education is different these days, we all know that. So this is the perfect time for us to make the system do what we want it to do - encourage learner agency; be standards-based, proficiency-based, or even competency-based; project-based across content areas; etc, etc. This is the time!Read Kelly Young's article here, and follow Education Reimagined on Twitter.
What is the Mental Health Foundation Podcast? This is the Mental Health Foundation podcast. A series which brings to you a range of mental health topics, real life stories, expert comments, and mental health tips. Bethan Buswell is your producer and host. She has her own lived experience of mental health problems and with this podcast she and the Mental Health Foundation want to raise awareness, get people talking and provide support and hope. **Remember to rate, like, review and subscribe** !Before we introduce the episode, we want to remind you that government advice designed to keep us safe during the Covid-19 outbreak is under constant review and will be different depending on where you live. Please remember to keep up to date via reputable sources. On today’s episode Bethan talks to you about the coronavirus pandemic and its effect on our mental health. We recorded this episode in early September 2020 when for many of us, we had been seeing a gradual easing of lockdown, children heading back to school, students back to uni and some people heading back to work. For some people this brought longed-for opportunities. But for many, even the happy, much anticipated changes were difficult for our mental health. And lastly, we are still far from knowing what the pandemic means for our society moving forward... So, on the show we want to explore these big themes – and Bethan has some great guests to help her tackle them. Firstly, she will be speaking to, Suba, a junior doctor who has been working in the Emergency Department of an NHS hospital in London during the coronavirus outbreak. Then Dr David Crepaz-Keay, who is the Head of Applied Learning at the Foundation. He will talk us through what has been happening with mental health in the UK during the coronavirus pandemic. Lastly, we finish with Bethan and Linda Liao, Digital Manager at the Mental Health Foundation sharing some tips on how we can look after our mental health during these uncertain times... Enjoy the show! Coronavirus and mental health hub We have created a coronavirus and mental health hub filled with advice on how to look after your mental health during the coronavirus outbreak. Find out more here: mentalhealth.org.uk/coronavirus Who’s on the show today? Bethan Buswell: Producer & host, Digital Engagement Officer at the Foundation Suba: Guest, Junior Doctor Podcast: Bio: mentalhealth.org.uk/about-us/people/bethan-buswell David Crepaz-Keay: Guest, Head of Applied Learning, at the Foundation Bio: https://www.mentalhealth.org.uk/about-us/people/dr-david-crepaz-keay Linda Liao: Guest, Digital Manager, at the Foundation Podcast editor: Tim Butcher, filmmaker, podcast editor, writer, and producer Website: timbutcher.co.uk/ Podcast episode links: https://www.mentalhealth.org.uk/coronavirus https://www.mentalhealth.org.uk/our-work/research/coronavirus-mental-health-pandemic/ Find out more about the Mental Health Foundation: Website: mentalhealth.org.uk Instagram: instagram.com/mentalhealthfoundation Facebook: facebook.com/mentalhealthfoundation Twitter: twitter.com/mentalhealth Get in touch with us: online@mentalhealth.org.uk Our podcast is also available on iTunes: https://podcasts.apple.com/za/podcast/mental-health-foundation-podcast/id665005881 **Remember to rate, like, review and subscribe** Helplines If you are feeling like ending your life, please call 999 or go to A&E and ask for the contact of the nearest crisis resolution team. These are teams of mental health care professionals who work with people in severe distress. If you need someone to talk to then Samaritans are available on 116 123 (UK) for free, 24/7. They are there to talk to, listen and they won't judge or tell you what to do. C.A.L.M.: National helpline for men to talk about any troubles they are feeling. Call 0800 58 58 58. If you’re experiencing a personal crisis, are unable to cope and need support. Text Shout to 85258.
What is the Mental Health Foundation Podcast? This is the Mental Health Foundation podcast. A series which brings to you a range of mental health topics, real life stories, expert comments, and mental health tips.Bethan Buswell is your producer and host. She has her own lived experience of mental health problems and with this podcast she and the Mental Health Foundation want to raise awareness, get people talking and provide support and hope.**Remember to rate, like, review and subscribe**Before we introduce the episode, we want to remind you that government advice designed to keep us safe during the Covid-19 outbreak is under constant review and will be different depending on where you live. Please remember to keep up to date via reputable sources. On today's episode Bethan talks to you about the coronavirus pandemic and its effect on our mental health. We recorded this episode in early September 2020 when for many of us, we had been seeing a gradual easing of lockdown, children heading back to school, students back to uni and some people heading back to work. For some people this brought longed-for opportunities. But for many, even the happy, much anticipated changes were difficult for our mental health. And lastly, we are still far from knowing what the pandemic means for our society moving forward... So, on the show we want to explore these big themes – and Bethan has some great guests to help her tackle them. Firstly, she will be speaking to, Suba, a junior doctor who has been working in the Emergency Department of an NHS hospital in London during the coronavirus outbreak. Then Dr David Crepaz-Keay, who is the Head of Applied Learning at the Foundation. He will talk us through what has been happening with mental health in the UK during the coronavirus pandemic. Lastly, we finish with Bethan and Linda Liao, Digital Manager at the Mental Health Foundation sharing some tips on how we can look after our mental health during these uncertain times... Enjoy the show! We have created a coronavirus and mental health hub filled with advice on how to look after your mental health during the coronavirus outbreak. Find out more here: mentalhealth.org.uk/coronavirusWho's on the show today?Bethan Buswell: Producer & host, Digital Engagement Officer at the FoundationSuba: Guest, Junior DoctorDavid Crepaz-Keay: Guest, Head of Applied Learning, at the FoundationBio: https://www.mentalhealth.org.uk/about-us/people/dr-david-crepaz-keayLinda Liao: Guest, Digital Manager, at the FoundationPodcast editor: Tim Butcher, filmmaker, podcast editor, writer, and producerWebsite: timbutcher.co.uk/Podcast episodePodcast links:https://www.mentalhealth.org.uk/coronavirushttps://www.mentalhealth.org.uk/our-work/research/coronavirus-mental-health-pandemic/Find out more about the Mental Health Foundation:Website: mentalhealth.org.ukInstagram: instagram.com/mentalhealthfoundationFacebook: facebook.com/mentalhealthfoundationTwitter: twitter.com/mentalhealthGet in touch with us: online@mentalhealth.org.uk**Remember to rate, like, review and subscribe**Helplines:If you are feeling like ending your life, please call 999 or go to A&E and ask for the contact of the nearest crisis resolution team. These are teams of mental health care professionals who work with people in severe distress.If you need someone to talk to then Samaritans are available on 116 123 (UK) for free, 24/7. They are there to talk to and listen.
Matt and Courtney return with some talk about what a portrait of a distance learner looks like in this time of COVID, and what about schools keeping the hybrid model after the pandemic ends?