Month: August 2024
Simplify development with Dev Container templates for Azure SQL Database
What are Dev Containers?
A development container essentially packages up your project’s development environment using the Development Container Specification (devcontainer.json). This specification enriches your container with metadata and content necessary to enable development from inside a container.
Workspace files are mounted from the local file system or copied or cloned into the container. Extensions are installed and run inside the container, where they have full access to the tools, platform, and file system. This means that you can seamlessly switch your entire development environment just by connecting to a different container.
Dev Container Templates are source files packaged together that encode configuration for a complete development environment, while Dev Container Features allow us to add runtimes, tools, and libraries inside a container. As a result, all this put together ensures a consistent and reproducible development environment from any tool that supports the Development Container Specification.
When you open your project in the dev container, your code will just work without downloading anything on your local machine. Furthermore, the best part is that when connected to a dev container, your developer experience is exactly the same as if you opened the project locally in VS Code.
Introducing Dev Container Templates for Azure SQL Database
We are excited to introduce new Dev Container templates specifically designed for Azure SQL Database. These templates support multiple programming languages, including .NET 8, .NET Aspire, Python, and Node.js, making it easier for developers to get started quickly and focus on building their applications.
Dev Containers streamline the development process by providing an out-of-the-box environment configured for Azure SQL Database. This eliminates the need for developers to spend time searching for and setting up VS Code extensions to interact with their database and preferred programming language. With these templates, you can dive straight into coding, boosting productivity and reducing setup friction.
Included with the templates is a pre-built demo database called Library, which serves as a practical example to help developers get started quickly. While these Dev Containers use the Azure SQL Edge container image, which offers a surface area close to Azure SQL Database, using SQL Database Projects ensures that your database code remains compatible with Azure SQL Database. With this demo project, you can easily use the dacpac artifact created by SQL Database Projects and deploy it to Azure SQL Database using the Azure SQL Action for GitHub Actions. This process streamlines your workflow and ensures seamless integration with your production environment.
Whether working locally or in the cloud, dev containers ensure consistency across development environments, making it easier to collaborate and maintain high standards across your team. With the inclusion of essential tools like SQLCMD, SqlPackage, Azure Command-Line Interface (CLI) and Azure Developer CLI (AZD), these templates offer a comprehensive solution for enhancing your development workflow with Azure SQL Database.
Benefits of Using Dev Containers
Dev Containers ensure a consistent and seamless experience, promoting smooth collaboration across teams and workflows, and facilitating an easy transition to Azure environments. Key benefits include:
Preconfigured environments: These come with all necessary tools and dependencies.
Consistency: Maintain uniformity across different development setups.
Simplified setup: Reduce time spent on configuration.
Enhanced collaboration: Improve teamwork within development teams.
Seamless transition to Azure: Leverage the scalability and reliability of Azure SQL Database for production deployments.
Accelerated time-to-market: Streamline development workflows and integrate seamlessly with existing toolsets, giving businesses a competitive edge.
Cost-efficient development: Reduce dependencies on cloud resources during the development and testing phases.
By using dev containers, developers can avoid the hassle of setting up and configuring their local development environment manually.
Prerequisites
Before you begin, make sure you have the following tools installed on your local machine:
Git: For version control
Docker: Required for running containers
Visual Studio Code: The primary IDE to use Dev Containers
Dev Containers extension for Visual Studio Code: Enables working with Dev Containers
To set up your environment, follow these steps:
First, ensure you have Git installed for version control.
Then, install Docker, which is necessary for running containers.
After that, download and install Visual Studio Code, as it will be your primary IDE for using Dev Containers.
Lastly, add the Dev Containers extension to Visual Studio Code to enable seamless containerized development.
Setting up the Dev Container template for Azure SQL Database
Creating a Dev Container
Select the Add configuration file to workspace option if you want to add the dev container configuration file to your current local repository. Alternatively, choose the Add configuration file to user data folder option. For this qiuckstart, select the Add configuration file to workspace option.
Visual Studio Code prompts you to select a Dev Container template. The available templates are based on the tools and dependencies required for the specific development environment. Select Show All Definitions to view all available templates.
Next, select the desired Dev Container template for Azure SQL Database by typing Azure SQL into the command palette. This action displays a list of available templates designed for Azure SQL Database development.
Building the Container
Upon selection, Visual Studio Code automatically generates the necessary configuration files tailored to the chosen template. These files include settings for the development environment, extensions to install, and Docker configuration details. They’re stored in a .devcontainer folder within your project directory, ensuring a consistent and reproducible development environment.
Following the configuration file generation, Visual Studio Code prompts you to transition your project into the newly created Dev Container environment. You can do it by selecting Reopen in Container. This step is crucial as it moves your development inside the container, applying the predefined environment settings for Azure SQL development.
If you haven’t already, you can also initiate this transition manually at any time using the Dev Containers extension. Use the Reopen in Container command from the command palette or select on the blue icon at the bottom left corner of Visual Studio Code and select Reopen in Container.
This action initiates the setup process, where Visual Studio Code generates the necessary configuration files and builds the development container based on the selected template. The process ensures that your development environment is precisely configured for Azure SQL Database development.
Exploring and verifying the Dev Container
After you build the dev container, start exploring and verifying the setup. Open a terminal within Visual Studio Code to check that all necessary tools are installed and working correctly.
As an optional step, you can also run predefined tasks directly from the command palette, streamlining your development workflow and allowing you to focus on writing code.
For more detailed information about specific templates, visit Azure SQL Database Dev Container templates.
Conclusion
Dev Containers for Azure SQL Database offer a powerful and efficient way to streamline your development process. By providing a consistent, portable environment, they help you focus on writing code and building features rather than configuring your setup. We encourage you to explore these templates and see how they can enhance your development workflow for Azure SQL Database.
Looking ahead, we will delve into more advanced topics like integrating Azure services with Dev Containers to further optimize your development process. Stay tuned for more insights and practical guides to help you get the most out of Azure SQL Database and Dev Containers.
More about Dev Container templates for Azure SQL Datatabase.
Microsoft Tech Community – Latest Blogs –Read More
How i get a graph that i attached here with this matlab code?
function HTP()
clc
clear all format long % hybrid Carreau
% Define constants
J1 = 0.1;
J2 = 0.1;
J3 = 0.1;
J4 = 0.1;
JS = 0.1;
z = 0.1;
S = 0.1;
GC = 0.1;
Gr = 0.1;
H = 0.1;
a = 0.1;
m = 1;
G = 0.5;
phi = 0.1;
% Define time vector
t = linspace(0, 5, 100); % 100 points between 0 and 5
%t= 1;
% Calculate u1 and u2
u1 = exp(-t) – 1;
% Compute u2 with corrected parentheses and mathematical operations
exp_t = exp(t); % Compute exp(t) once for efficiency
term1 = -33 / J1 * (1 – exp_t – z / 3 * S);
term2 = 2 * GC * J3 + 2 * Gr * J2;
term3 = (2 * J4 * H * a^2) / (1 + m^2);
term4 = 3 * G * exp_t + 6 * exp_t / ((1 – phi)^2.5);
term5 = 2 * GC * JS * exp_t + 2 * Gr * J2 * exp_t;
u2 = (term1 + term2 – term3 – term4 – term5 + term3 * (exp_t – m + m * exp_t)) / (6 * a);
% Compute u
y = 1; % Define y as 1 or another constant value; adjust as needed
u = u1 * y + u2 * y.^2;
% Plot the result
phi = 0.1
figure ;
plot(t, u);
phi= 0.2
figure ;
plot(t, u);
phi = 0.3
figure ;
plot(t, u);
phi = 0.4
figure ;
plot(t, u);
xlabel(‘Time (t)’);
ylabel(‘u(t)’);
title(‘Plot of u(t)’);
axis([0 5 min(u) max(u)]);
grid on;
endfunction HTP()
clc
clear all format long % hybrid Carreau
% Define constants
J1 = 0.1;
J2 = 0.1;
J3 = 0.1;
J4 = 0.1;
JS = 0.1;
z = 0.1;
S = 0.1;
GC = 0.1;
Gr = 0.1;
H = 0.1;
a = 0.1;
m = 1;
G = 0.5;
phi = 0.1;
% Define time vector
t = linspace(0, 5, 100); % 100 points between 0 and 5
%t= 1;
% Calculate u1 and u2
u1 = exp(-t) – 1;
% Compute u2 with corrected parentheses and mathematical operations
exp_t = exp(t); % Compute exp(t) once for efficiency
term1 = -33 / J1 * (1 – exp_t – z / 3 * S);
term2 = 2 * GC * J3 + 2 * Gr * J2;
term3 = (2 * J4 * H * a^2) / (1 + m^2);
term4 = 3 * G * exp_t + 6 * exp_t / ((1 – phi)^2.5);
term5 = 2 * GC * JS * exp_t + 2 * Gr * J2 * exp_t;
u2 = (term1 + term2 – term3 – term4 – term5 + term3 * (exp_t – m + m * exp_t)) / (6 * a);
% Compute u
y = 1; % Define y as 1 or another constant value; adjust as needed
u = u1 * y + u2 * y.^2;
% Plot the result
phi = 0.1
figure ;
plot(t, u);
phi= 0.2
figure ;
plot(t, u);
phi = 0.3
figure ;
plot(t, u);
phi = 0.4
figure ;
plot(t, u);
xlabel(‘Time (t)’);
ylabel(‘u(t)’);
title(‘Plot of u(t)’);
axis([0 5 min(u) max(u)]);
grid on;
end function HTP()
clc
clear all format long % hybrid Carreau
% Define constants
J1 = 0.1;
J2 = 0.1;
J3 = 0.1;
J4 = 0.1;
JS = 0.1;
z = 0.1;
S = 0.1;
GC = 0.1;
Gr = 0.1;
H = 0.1;
a = 0.1;
m = 1;
G = 0.5;
phi = 0.1;
% Define time vector
t = linspace(0, 5, 100); % 100 points between 0 and 5
%t= 1;
% Calculate u1 and u2
u1 = exp(-t) – 1;
% Compute u2 with corrected parentheses and mathematical operations
exp_t = exp(t); % Compute exp(t) once for efficiency
term1 = -33 / J1 * (1 – exp_t – z / 3 * S);
term2 = 2 * GC * J3 + 2 * Gr * J2;
term3 = (2 * J4 * H * a^2) / (1 + m^2);
term4 = 3 * G * exp_t + 6 * exp_t / ((1 – phi)^2.5);
term5 = 2 * GC * JS * exp_t + 2 * Gr * J2 * exp_t;
u2 = (term1 + term2 – term3 – term4 – term5 + term3 * (exp_t – m + m * exp_t)) / (6 * a);
% Compute u
y = 1; % Define y as 1 or another constant value; adjust as needed
u = u1 * y + u2 * y.^2;
% Plot the result
phi = 0.1
figure ;
plot(t, u);
phi= 0.2
figure ;
plot(t, u);
phi = 0.3
figure ;
plot(t, u);
phi = 0.4
figure ;
plot(t, u);
xlabel(‘Time (t)’);
ylabel(‘u(t)’);
title(‘Plot of u(t)’);
axis([0 5 min(u) max(u)]);
grid on;
end multiple lines in one graph MATLAB Answers — New Questions
write a function called tri_area returns the area of a triangle with base b and height h
hello this is my function code and command window code and there is a message of invalid expression at line 2 and i dont know what is the wrong can anyone help me
function [area] = tri_area([b,h]);
tri_area([b,h])=(0.5)*(b)*(h)
area=tri_area([b,h])
end
%command window
area = tri_area[3,2])hello this is my function code and command window code and there is a message of invalid expression at line 2 and i dont know what is the wrong can anyone help me
function [area] = tri_area([b,h]);
tri_area([b,h])=(0.5)*(b)*(h)
area=tri_area([b,h])
end
%command window
area = tri_area[3,2]) hello this is my function code and command window code and there is a message of invalid expression at line 2 and i dont know what is the wrong can anyone help me
function [area] = tri_area([b,h]);
tri_area([b,h])=(0.5)*(b)*(h)
area=tri_area([b,h])
end
%command window
area = tri_area[3,2]) matlab function, homework MATLAB Answers — New Questions
Using arrays calculations in Excel.
In a rather complex Excel spreadsheet that I am studying to apply it, I came across a calculation step that uses arrays in such a synthetic way that I cannot decipher.
I looked on the internet and with Copilot for this calculation system, but no one has hit the nail on the head with this particular calculation solution.
In essence, in the spreadsheet there is a drop-down combo box with a list of elements for which the spreadsheet determines the static characteristics of each element chosen.
In another part of the spreadsheet, a one-dimensional array has been inserted vertically showing all the elements listed in the cell with the drop-down combo box and next to each of them the value of a certain coefficient depending on the type of element chosen in the drop-down list.
The spreadsheet reports the analysis of only one element, the one chosen in the drop-down box, while the array calculates and reports the coefficient in question for all the elements inserted in the drop-down list.
To fix the ideas, I report on an excel sheet the situation extracted from the context for greater clarity hoping that someone can recognize the steps used and explain them to me in a linear way because I am not familiar with the use of arrays in excel.
Thanking in advance the people who want to help me understand the problem, I send cordial greetings to everyone.
In a rather complex Excel spreadsheet that I am studying to apply it, I came across a calculation step that uses arrays in such a synthetic way that I cannot decipher.I looked on the internet and with Copilot for this calculation system, but no one has hit the nail on the head with this particular calculation solution.In essence, in the spreadsheet there is a drop-down combo box with a list of elements for which the spreadsheet determines the static characteristics of each element chosen.In another part of the spreadsheet, a one-dimensional array has been inserted vertically showing all the elements listed in the cell with the drop-down combo box and next to each of them the value of a certain coefficient depending on the type of element chosen in the drop-down list.The spreadsheet reports the analysis of only one element, the one chosen in the drop-down box, while the array calculates and reports the coefficient in question for all the elements inserted in the drop-down list.To fix the ideas, I report on an excel sheet the situation extracted from the context for greater clarity hoping that someone can recognize the steps used and explain them to me in a linear way because I am not familiar with the use of arrays in excel.Thanking in advance the people who want to help me understand the problem, I send cordial greetings to everyone. Read More
Conditional formatting range of cells based upon specific value of cell for that column
Hi I want to create a tracker template with conditional formatting for a range of sales growth red if value is less than a specific cell value and green if value is greater than the value of a cell in that particular column. For example:
HIghlight the cells in column O based upon if their value is greater (GREEN) or (RED) less than Value in O4 and so on. Please
Help
Hi I want to create a tracker template with conditional formatting for a range of sales growth red if value is less than a specific cell value and green if value is greater than the value of a cell in that particular column. For example: HIghlight the cells in column O based upon if their value is greater (GREEN) or (RED) less than Value in O4 and so on. PleaseHelp Read More
Windows 11 Upgrade Vai Intune with Delivery Optimization MCC
Hi
Good day
We are planning to set up a MCC for our environment for delivery optimization. We would like to know whether it will also help us in the upgrade process from windows 10 to windows 11 and how? From where exactly the patch will download? how the background mechanism will work (Content will be shared with requested devices without downloaded)
We have created a test policy from Intune for Windows 10 already and it works, but we want to know once we setup the MCC is there any specific settings changes required from Intune for this window 11 upgrade. Please suggest
Thanks in Advance
Karimulla
Hi Good day We are planning to set up a MCC for our environment for delivery optimization. We would like to know whether it will also help us in the upgrade process from windows 10 to windows 11 and how? From where exactly the patch will download? how the background mechanism will work (Content will be shared with requested devices without downloaded) We have created a test policy from Intune for Windows 10 already and it works, but we want to know once we setup the MCC is there any specific settings changes required from Intune for this window 11 upgrade. Please suggest Thanks in Advance Karimulla Read More
Advice needed: Multitenant organization issues
Hey peeps, a client of mine is asking for an optimal solution to their sub-optimal organization structure. I want to see if there’s something more I can do here or if we are stuck with our environment the way it is. It’s such a strange ask that it will take a few paragraphs to describe, so bear with me.
Client has a central corporate entity, but the “branch” entities operate separately and have a fair amount of self-governance.
This central corporate entity has a Microsoft365 tenant and that’s what everyone’s email matches, including branch members. Let’s call it corp.onmicrosoft.com with a verified domain of corp.com. So, everyone at corporate and the branches have addresses/UPNs of @corp.com.
Before my time, one of the self-governing branches chose to setup a Sharepoint site specific to their branch. They put all the files on a separate 365 tenant of corp-ny.onmicrosoft.com with verified domain corp-ny.com. There are a couple of identities on that 365 tenant, but since everyone uses their corp.com email, they access the Sharepoint data from their primary corporate identities as GUESTS of the branch’s tenant. So the branch tenant has 3 members and 100+ guests.
We perform IT for just the BRANCH, not the corporate structure. Since corporate IT is not interested in changing infrastructure at this time, we would like to convert all the guest identities on the branch tenant to members and we can then leverage technologies like Intune & CA and move them off of their on-premise AD server that is not doing AD Connect. I have a quick script that will do all of that – convert, license, set some properties for all 100 members. Seems okay! After the change, members will have their corporate identity for email, and the branch identity for Sharepoint and Windows login.
We’ve identified a problem, however, with notifications. When you comment on a file in Sharepoint, a notification is generated for anyone that participates in that file. The notification is sent from the commenter’s identity. Currently, that means notifications come from @corp.com . However, after the change those notifications will come from corp-ny.com. This domain does NOT have an MX record associated with it 🙁 and we think this will lead to a LOT of confusion if people try to reply directly to the emails. It might also have the potential(?) to fail email spoofing checks or be flagged as suspicious by email servers. Additionally, the notifications would be sent to their branch identities, which I assume would not deliver. Even if it did deliver and we added an MX record, it would be in an inbox that’s not checked by the team.
My question is:
Can I mask the notification email to be from “email address removed for privacy reasons” for all of the notifications? Or,
Can I “spoof” the emails so that they appear to be sent from the corporate identity?
Secondly,
What’s the best way to deal with notifications headed to the wrong inbox? Can a transport rule redirect these emails to their corporate emails?
Hey peeps, a client of mine is asking for an optimal solution to their sub-optimal organization structure. I want to see if there’s something more I can do here or if we are stuck with our environment the way it is. It’s such a strange ask that it will take a few paragraphs to describe, so bear with me. Client has a central corporate entity, but the “branch” entities operate separately and have a fair amount of self-governance. This central corporate entity has a Microsoft365 tenant and that’s what everyone’s email matches, including branch members. Let’s call it corp.onmicrosoft.com with a verified domain of corp.com. So, everyone at corporate and the branches have addresses/UPNs of @corp.com. Before my time, one of the self-governing branches chose to setup a Sharepoint site specific to their branch. They put all the files on a separate 365 tenant of corp-ny.onmicrosoft.com with verified domain corp-ny.com. There are a couple of identities on that 365 tenant, but since everyone uses their corp.com email, they access the Sharepoint data from their primary corporate identities as GUESTS of the branch’s tenant. So the branch tenant has 3 members and 100+ guests. We perform IT for just the BRANCH, not the corporate structure. Since corporate IT is not interested in changing infrastructure at this time, we would like to convert all the guest identities on the branch tenant to members and we can then leverage technologies like Intune & CA and move them off of their on-premise AD server that is not doing AD Connect. I have a quick script that will do all of that – convert, license, set some properties for all 100 members. Seems okay! After the change, members will have their corporate identity for email, and the branch identity for Sharepoint and Windows login. We’ve identified a problem, however, with notifications. When you comment on a file in Sharepoint, a notification is generated for anyone that participates in that file. The notification is sent from the commenter’s identity. Currently, that means notifications come from @corp.com . However, after the change those notifications will come from corp-ny.com. This domain does NOT have an MX record associated with it 🙁 and we think this will lead to a LOT of confusion if people try to reply directly to the emails. It might also have the potential(?) to fail email spoofing checks or be flagged as suspicious by email servers. Additionally, the notifications would be sent to their branch identities, which I assume would not deliver. Even if it did deliver and we added an MX record, it would be in an inbox that’s not checked by the team. My question is:Can I mask the notification email to be from “email address removed for privacy reasons” for all of the notifications? Or,Can I “spoof” the emails so that they appear to be sent from the corporate identity? Secondly,What’s the best way to deal with notifications headed to the wrong inbox? Can a transport rule redirect these emails to their corporate emails? Read More
File Saving macro from three cells
I am in search of a macro to save all Excel workbooks in the same folder with a filename that is a combination of cell A1 and B3 and b4. Windows 10 and Office 365. Thank you for sharing your expertise and time.
I am in search of a macro to save all Excel workbooks in the same folder with a filename that is a combination of cell A1 and B3 and b4. Windows 10 and Office 365. Thank you for sharing your expertise and time. Read More
#NUM error
Hi everyone
Kinda new here, but I believe I’m in the right place for the problem I would like solve. This formula…
=SUM(SMALL((G8,I8,K8,M8,O8,Q8,U8,W8,Y8,AA8,AC8),{1,2,3,4,5}))+S8
… doesn’t seem to work on my windows PC but it works on my Android phone. What could be wrong with excel on my windows PC. I have tried many ways like enabling itarative calculations, but still it doesn’t change a thing. What should I do? I’ll appreciate your support.
Hi everyoneKinda new here, but I believe I’m in the right place for the problem I would like solve. This formula… =SUM(SMALL((G8,I8,K8,M8,O8,Q8,U8,W8,Y8,AA8,AC8),{1,2,3,4,5}))+S8 … doesn’t seem to work on my windows PC but it works on my Android phone. What could be wrong with excel on my windows PC. I have tried many ways like enabling itarative calculations, but still it doesn’t change a thing. What should I do? I’ll appreciate your support. Read More
Random selection of questions from an archive
Hi there,
I’m new to Forms migrating from Moodle.
What I was used to do is to set a quiz to extract 31 random questions from an archive of 170 questions, so to obtain a personalized and always different quiz for each student.
Currently, my archive of questions is in Word style and I’ve verified that the quick import of Forms can correctly read it, but it treats the whole archive as a single quiz with 170 questions. Is there any way to do the random selection trick?
Thanks a lot!
Jordi
Hi there, I’m new to Forms migrating from Moodle.What I was used to do is to set a quiz to extract 31 random questions from an archive of 170 questions, so to obtain a personalized and always different quiz for each student.Currently, my archive of questions is in Word style and I’ve verified that the quick import of Forms can correctly read it, but it treats the whole archive as a single quiz with 170 questions. Is there any way to do the random selection trick? Thanks a lot! Jordi Read More
All information is lost due to OneDrive
I didn’t want synchronization, so I stopped it. Then I went to OneDrive via the Internet and deleted all the folders and from the recycle bin as well. Everything was fine. But after a couple of minutes all the information disappeared from my computer. Who can retrieve all my work files and all the information to me now??? My PC is empty now. Disaster.
I didn’t want synchronization, so I stopped it. Then I went to OneDrive via the Internet and deleted all the folders and from the recycle bin as well. Everything was fine. But after a couple of minutes all the information disappeared from my computer. Who can retrieve all my work files and all the information to me now??? My PC is empty now. Disaster. Read More
Unable to connect via Logic Apps SFTP-SSH connector
I have a test Logic Apps flow using the SFTP-SSH connector to drop a file to a partner’s SFTP server. Given the credentials I’ve been given, I’m able to connect to via FileZilla, but when using the SFTP-SSH connector, I’m not able to even get past the connection setup screen. The error is Badgateway, but no further details. Our Logic Apps instance is using a NAT gateway with a static IP.
After attempting each connection, our partner claims the request is not even seen on their firewall logs. I’ve tried the SFTP connector as well with similar results. I’m at a lost as to what to try next.
I have a test Logic Apps flow using the SFTP-SSH connector to drop a file to a partner’s SFTP server. Given the credentials I’ve been given, I’m able to connect to via FileZilla, but when using the SFTP-SSH connector, I’m not able to even get past the connection setup screen. The error is Badgateway, but no further details. Our Logic Apps instance is using a NAT gateway with a static IP. After attempting each connection, our partner claims the request is not even seen on their firewall logs. I’ve tried the SFTP connector as well with similar results. I’m at a lost as to what to try next. Read More
Task comments not showing since yesterday
Hi, since yesterday, we have been unable to see any comments on task cards in one specific planner.
Other plans are fine.
This is happening for me and members of my team.
If I go into Planner and ‘assigned to me’ then I get an error at the top of the screen that says:
We can’t show comments right now. Check again in a few minutes.Technical details
Hi, since yesterday, we have been unable to see any comments on task cards in one specific planner.Other plans are fine.This is happening for me and members of my team. If I go into Planner and ‘assigned to me’ then I get an error at the top of the screen that says: We can’t show comments right now. Check again in a few minutes.Technical detailsCorrelation Id: 182c66cb-53d1-44d8-a275-84bd6ab34487Time Stamp: 2024-08-16T15:04:20.741Z Has anyone come across this? and know a solution? ThanksBen Read More
MVP’s Favorite Content: M365 MVP Week #1
In this blog series dedicated to Microsoft’s technical articles, we’ll highlight our MVPs’ favorite article along with their personal insights.
Michael Blumenthal, M365 MVP, United States
Maturity Model for Microsoft 365 – Introduction | Microsoft Learn
“This is a great resource for M365 Tenant Admins and Service owners wanting guidance on how to mature the operation and usage of their tenant.”
*Relevant opportunity (Please refer to the [Resources] section in the content above for more details.): Join the Maturity Model Practitioners
Kevin McDonnell, M365 MVP, United Kingdom
Work with the Microsoft Graph connectors API – Microsoft Graph | Microsoft Learn
“While I love Microsoft 365, there are times that you want to bring other content into that world. Graph Connectors make that easy to happen using standard Graph API calls and allow that content to appear in Microsoft Search and now Copilot for Microsoft 365 too!”
Abdulrafiu Izuafa, M365 MVP, Nigeria
Indexer overview – Azure AI Search | Microsoft Learn
“This is helpful when integrating the azure AI video indexer API. At least for me building an AI application I was able to navigate my way around it.”
Masayuki Mokudai (もくだいさん), M365 MVP, Japan
“Microsoft Learn offers a wealth of content on Power Apps, but some features are not available to Power Apps Basic users with only a Microsoft 365 license. To address this, we have created training content that consolidates only the essential information for Microsoft 365 users.”
(In Japanese: Microsoft LearnにはPower Apps に関する豊富なコンテンツがありますが、Microsoft 365ライセンスのみを持つPower Apps Basicユーザーには利用できない機能も含まれています。そこで、Microsoft 365ユーザー向けに必要な情報だけをまとめたトレーニングコンテンツを作成しました。)
*Relevant Blog: Microsoft Learn: ラーニングモジュールで学ぶ365ユーザー向けキャンバスアプリ&フロー開発 – もくだいさんのOffice365至高のレシピ (mokudai.jp)
Microsoft Tech Community – Latest Blogs –Read More
Copy-pasting variables (values) to edior in 2021b
Copy-pasting column vector values from workspace to editor used to automatically include ; and give me everything in a nicely formated single row. After updating to 2021b it results in a long list of values (each one in a separate row).
For example:
Create a column vector:
> A = [1; 2; 3; 4; 5];
Open it in the workspace, select entire column and copy (ctrl-c)
Paste in the editor results with:
1
2
3
4
5
while it used to result with:
1;2;3;4;5
Is there a way to switch back to the old behavior of copy-pasting variables?
I use it a lot, for example when saving the results in my scripts as starting values for the future and the new format makes the scripts much longer and messier.
Thank you very much in advance for any suggestions.Copy-pasting column vector values from workspace to editor used to automatically include ; and give me everything in a nicely formated single row. After updating to 2021b it results in a long list of values (each one in a separate row).
For example:
Create a column vector:
> A = [1; 2; 3; 4; 5];
Open it in the workspace, select entire column and copy (ctrl-c)
Paste in the editor results with:
1
2
3
4
5
while it used to result with:
1;2;3;4;5
Is there a way to switch back to the old behavior of copy-pasting variables?
I use it a lot, for example when saving the results in my scripts as starting values for the future and the new format makes the scripts much longer and messier.
Thank you very much in advance for any suggestions. Copy-pasting column vector values from workspace to editor used to automatically include ; and give me everything in a nicely formated single row. After updating to 2021b it results in a long list of values (each one in a separate row).
For example:
Create a column vector:
> A = [1; 2; 3; 4; 5];
Open it in the workspace, select entire column and copy (ctrl-c)
Paste in the editor results with:
1
2
3
4
5
while it used to result with:
1;2;3;4;5
Is there a way to switch back to the old behavior of copy-pasting variables?
I use it a lot, for example when saving the results in my scripts as starting values for the future and the new format makes the scripts much longer and messier.
Thank you very much in advance for any suggestions. copy-paste, editor, variables, 2021b update MATLAB Answers — New Questions
appdesigner tab view issue
Hi:
I have an app that showing the tab group at left, I noticed that when the tab name is too long, it will not be fully displayed. I tried to drag the corners of the tab but still not work, as shown in screen shot.
is there anyway to address this issue? i.e. to let the tab names fully shown.
Thanks!
YuHi:
I have an app that showing the tab group at left, I noticed that when the tab name is too long, it will not be fully displayed. I tried to drag the corners of the tab but still not work, as shown in screen shot.
is there anyway to address this issue? i.e. to let the tab names fully shown.
Thanks!
Yu Hi:
I have an app that showing the tab group at left, I noticed that when the tab name is too long, it will not be fully displayed. I tried to drag the corners of the tab but still not work, as shown in screen shot.
is there anyway to address this issue? i.e. to let the tab names fully shown.
Thanks!
Yu appdesigner tab view issue MATLAB Answers — New Questions
PNG Library Filed: Not a PNG File
Image Processing ToolBox, The function "imread" can not identify .png file. Why is this???Image Processing ToolBox, The function "imread" can not identify .png file. Why is this??? Image Processing ToolBox, The function "imread" can not identify .png file. Why is this??? image processing toolbox, imread MATLAB Answers — New Questions
Microsoft bookings service is gone
I created a booking page, and it works perfectly fine for the last 1 week. Today, when I log in this shared booking, all information is gone. We have invited for next week that we need to make some amendment, but we are not able to do so now. Need help!
I created a booking page, and it works perfectly fine for the last 1 week. Today, when I log in this shared booking, all information is gone. We have invited for next week that we need to make some amendment, but we are not able to do so now. Need help! Read More
How to solve diffusion equation by the crank – Nicolson method?
I have a diffusion equation 1D:
dC/dt =D*d2C/dx2
with D is changed with time.
Hepl me……
Thank you so much!I have a diffusion equation 1D:
dC/dt =D*d2C/dx2
with D is changed with time.
Hepl me……
Thank you so much! I have a diffusion equation 1D:
dC/dt =D*d2C/dx2
with D is changed with time.
Hepl me……
Thank you so much! MATLAB Answers — New Questions
Powershell for Menu Options
Hello
I would like add a message in “set up the greetings and menu options” under “add a greeting message” with PowerShell.
Is that possible?
Regards
JFM_12
HelloI would like add a message in “set up the greetings and menu options” under “add a greeting message” with PowerShell.Is that possible?RegardsJFM_12 Read More