Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XS✔ ◾ Update rule.md - Fixing formatting #8009

Merged
merged 38 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5835429
Create rule.md - Mask secrets in GitHub Actions
amankumarrr Oct 9, 2023
ae5e1a9
Update rules-to-better-devops-using-github.md - adding a reference to…
amankumarrr Oct 9, 2023
a85bfcf
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
7a5afcd
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
0937f16
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
0f60bb0
Update categories/software-development/rules-to-better-devops-using-g…
amankumarrr Oct 10, 2023
6ee1936
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
01f1afc
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
ed290c9
Update rule.md - adding screenshots
amankumarrr Oct 10, 2023
72f6f3e
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
11df314
Update rules/mask-secrets-in-github-actions/rule.md
amankumarrr Oct 10, 2023
b872ebb
Adding screenshots
amankumarrr Oct 10, 2023
e305ba5
renaming screenshots for consistency and formatting it
amankumarrr Oct 10, 2023
eeb1bc0
Create rule.md - Chose correct timezone for your flows
amankumarrr Oct 12, 2023
994e1a9
Merge branch 'amankumarrr-patch-1' of https://github.com/SSWConsultin…
amankumarrr Oct 12, 2023
c1036ac
Adding screenshot and GIF to show examples
amankumarrr Oct 12, 2023
9e0a0fd
Replacing gif with old one
amankumarrr Oct 12, 2023
b0f8df8
Renaming the gif image
amankumarrr Oct 12, 2023
e6640b6
Update rule.md - fixing broken image
amankumarrr Oct 19, 2023
27214ad
Removing old gif
amankumarrr Oct 19, 2023
b742df3
adding new gif
amankumarrr Oct 19, 2023
aef1a04
Merge branch 'amankumarrr-patch-1' of https://github.com/SSWConsultin…
amankumarrr Oct 19, 2023
b3cac3b
Updating the broken image
amankumarrr Oct 19, 2023
88d80e1
Renaming the broken image to right one
amankumarrr Oct 19, 2023
c9b9ff4
Update rule.md - Fixing formatting
amankumarrr Feb 26, 2024
7a6fab4
Update rule.md
tiagov8 Feb 27, 2024
4791e3e
Auto-fix Markdown files
github-actions[bot] Feb 27, 2024
9e097f0
Merge branch 'amankumarrr-patch-1' of https://github.com/SSWConsultin…
amankumarrr Feb 29, 2024
0f2d1e1
Fixing typo and shorten the URL
amankumarrr Feb 29, 2024
fbc64a5
Auto-fix Markdown files
github-actions[bot] Feb 29, 2024
e902313
Adding spaces for break lines
amankumarrr Feb 29, 2024
6388322
Merge branch 'amankumarrr-patch-1' of https://github.com/SSWConsultin…
amankumarrr Feb 29, 2024
fcdb1e4
Removing co-author as I didn't get hold of him for writing this rule
amankumarrr Feb 29, 2024
7c0e83a
Auto-fix Markdown files
github-actions[bot] Feb 29, 2024
1442837
Update rule.md
tiagov8 Mar 1, 2024
5d3f18f
Auto-fix Markdown files
github-actions[bot] Mar 1, 2024
757667d
Update rule.md
tiagov8 Mar 1, 2024
22663d6
Auto-fix Markdown files
github-actions[bot] Mar 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion categories/communication/rules-to-better-communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ guid: 471816bf-f0df-4835-bf4d-66a90f6f1adc
uri: rules-to-better-communication
index:
- follow-up-effectively
- do-you-know-the-best-tool-for-facilitating-real-time-colloboration
- tool-for-facilitating-real-time-collaboration
- catering-to-audience
- zooming-in-and-out
- ask-for-help
Expand Down

This file was deleted.

7 changes: 4 additions & 3 deletions rules/power-automate-flows-convert-timezone/rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ However, there are situations where using your local timezone might be more appr
![Figure: Bad example - Comparing Datetime in default timezone: UTC with UTC](comparing-timedate-without-converting.png)
:::

- ❌ **Complex Time Zone Calculations**: Handling time zone conversions manually can become cumbersome, especially when dealing with events and meetings across multiple time zones
- ❌ **Daylight Saving Time Issues**: While UTC doesn't observe daylight saving time, your local timezone might. This can lead to confusion and scheduling problems when your local time changes
- ❌ **User Experience**: In user-facing applications, presenting times in UTC without local context can be confusing for end-users who expect times in their local time
❌ **Complex Time Zone Calculations** - Handling time zone conversions manually can become cumbersome, especially when dealing with events and meetings across multiple time zones
❌ **Daylight Saving Time Issues** - While UTC doesn't observe daylight saving time, your local timezone might. This can lead to confusion and scheduling problems when your local time changes
❌ **User Experience** - In user-facing applications, presenting times in UTC without local context can be confusing for end-users who expect times in their local time

So to convert it to the correct timezone, you can use built-in expression in your flow:

Expand All @@ -35,4 +35,5 @@ convertTimeZone({{ array/object }}?[{{ 'timedate variable' }}], 'UTC', 'AUS East
:::

For further details on converting timezones in Power Automate Flow, refer to the [Microsoft Learn - Converting time zone](https://learn.microsoft.com/en-us/troubleshoot/power-platform/power-automate/converting-time-zone-power-automate).

For default timezones, refer to the [Microsoft Learn - Default time zones](https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11).
48 changes: 48 additions & 0 deletions rules/tool-for-facilitating-real-time-collaboration/rule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
type: rule
title: Do you know the best tool for facilitating real-time collaboration?
uri: tool-for-facilitating-real-time-collaboration
authors:
- title: Aman Kumar
url: https://ssw.com.au/people/aman-kumar
related:
- rules-to-better-microsoft-teams
- do-you-know-you-should-write-notes-when-an-activity-is-going
- the-best-wiki
created: 2024-02-26T12:33:21.000Z
guid: e4385123-a305-4b3f-a7bd-1ab052e23138
---

When collaborating within teams, the current process involves soliciting individual updates or feedback, with one team member responsible for manually compiling this information. Unfortunately, this method presents several challenges:

* The need for manual compilation of feedback/updates
* Time-consuming process
* The individual providing the original feedback must verify it, as it has been consolidated into a single file
* Any subsequent updates may necessitate the creation of a new version (v2) of the compiled file

Fortunately, Microsoft Loop offers a solution by introducing interactive notes shared seamlessly across all Microsoft 365 products. This addresses the challenges by eliminating the need for manual compilation, streamlining the process, and ensuring that updates are instantly accessible to all stakeholders.

<!--endintro-->

::: bad
![Figure: Bad example - Creating Notes in Microsoft OneNote](onenote-bad-example.jpg)
:::

❌ **Manual Compilation** - The need to manually gather and compile updates or feedback within OneNote
❌ **Limited Real-time Collaboration** - OneNote may not offer extensive real-time collaboration features, hindering simultaneous contributions
❌ **Version Control Issues** - Challenges in managing versions of a OneNote document, particularly when multiple edits are made concurrently
❌ **Accessibility Challenges** - Ensuring all team members have immediate access to the latest updates in a cohesive and organized manner can be cumbersome in OneNote

::: good
![Figure: Good example - Using Microsoft Loop for interactive update within Teams chat)](microsoft-loop-good-example.jpg)
:::

✅ **Automated Compilation** - Microsoft Loop automates the compilation of updates and feedback, eliminating the need for manual efforts
✅ **Real-time Collaboration** - Loop facilitates seamless real-time collaboration, allowing team members to contribute simultaneously and see updates instantly
✅ **Versionless Updates** - With Microsoft Loop, there's no need to create new versions for subsequent updates, ensuring a single, dynamic source of information
✅ **Integrated Accessibility** - Loop's integration across Microsoft 365 products ensures that updates are easily accessible and shared across the entire ecosystem, enhancing collaboration efficiency
✅ **Dynamic and Visual Collaboration** - Microsoft Loop offers a visually appealing and dynamic collaboration environment, allowing for the incorporation of rich multimedia elements, interactive charts, and engaging content
Explore the Microsoft Loop App:

* [iOS App](https://apps.apple.com/au/app/microsoft-loop/id1637682491)
* [Android App](https://play.google.com/store/apps/details?id=com.microsoft.loop&hl=en&gl=US)
Loading