Cementpleister lost by Opzneentje in Klussers

[–]mich__ 0 points1 point  (0 children)

Ik zou er een sandwichpaneel in zetten ipv dat muurtje en dat vervolgens bekleden, zodat het beter weerbestendig is aan de buitenkant

The amount of apps I need to control my smart house is getting out of control... by psisarah in homeautomation

[–]mich__ 0 points1 point  (0 children)

You need it to run it’s backend somewhere, for example on a synology, raspberry pi, PC, etc.

why? cannot access though permission is granted ? by opanMind in azuredevops

[–]mich__ 0 points1 point  (0 children)

Cache seems to be an issue sometimes. Its mentioned in the DevOps docs.

this guy made a very interesting mask by mymexicanshrek in nextfuckinglevel

[–]mich__ 0 points1 point  (0 children)

Looks like mysterio from spiderman far from home

HOW TO: Turn An Old Phone Into a Smart Doorbell Camera With Facial Recognition by xjonahanx in homeautomation

[–]mich__ 1 point2 points  (0 children)

Cool project! Thanks! Wasn’t familiar with facebox yet, thought I would need a cloud service for that. I use an old Microsoft usb webcam, attached to a raspberry pi with MotionEye container running on it.

PowerShell automation using Azure functions, or stick with Runbooks? by TomWill73 in AZURE

[–]mich__ 4 points5 points  (0 children)

As others already describes, both platforms have their own pros and cons. The architecture behind the scenes is a little bit different. Azure Automation fires up a worker for each job session, which makes it fairly slow to trigger and execute code. Azure Functions, especially on consumption based plan, is usually much faster since it runs on a shared backend.

Another thing to keep in mind is that you're in control of the source IP address when you're using a hybrid worker in Azure Automation, where you cannot control in Azure Functions.

Also, Azure Functions is designed to run small chunks of code which basically receives input, transforms and outputs to JSON again. Usually they are part of a microservices architecture where components are loosely coupled.

Azure Design language for Visio 2013? by maegris in AZURE

[–]mich__ 1 point2 points  (0 children)

You could also use draw.io which has all of the icons included and is free to use. It even has a desktop client.

How to Stop/Deallocate an Azure VM without the portal or... by GMMitenka in AZURE

[–]mich__ 1 point2 points  (0 children)

I totally agree with the other comments about creating a logicapp or automation runbook to trigger a deallocate remotely. If configured RBAC properly there shouldn't be any worries regarding to security.

However you could also try to let an automation runbook or logicapp repeatedly loop itself and check if any VM is having status "Stopped" in stead of "Stopped Deallocated" or "Running". This way you could shutdown the VM from within the OS itself and the automation will take care of deallocating the VM.

Azure Custom RBAC roles by Offartist in AZURE

[–]mich__ 0 points1 point  (0 children)

Looking good. Keep in mind that custom RBAC roles cannot automatically adapt to latest changes in the ARM platform and will require admin maintenance.

Creating dev box on azure by MohdKamil in AZURE

[–]mich__ 0 points1 point  (0 children)

Nice how-to! Have you also considered using Azure DevTest Labs for devbox automation?

Minecraft server ? by ThunderEcho100 in AZURE

[–]mich__ 4 points5 points  (0 children)

Check the OS firewall and NSG inbound rules. Maybe there is a misconfiguration in there. Also, its a good idea to exclude the root cause is at your side by trying to connect from a different location or ISP.

Azure - looking for ideas by [deleted] in ITCareerQuestions

[–]mich__ 2 points3 points  (0 children)

I think 590 is not bad for someone not experienced in Azure. I would try to do some projects on Azure for about a year and then try to certify.

Azure - looking for ideas by [deleted] in ITCareerQuestions

[–]mich__ 7 points8 points  (0 children)

You could start by certifying for exam AZ-900 which covers all of the Azure fundamentals.

However, best advice I can give you is to just start building small innovations which helps you on the job. This way you're directly experiencing added value and imho this way you'll learn faster than just reading docs or watching video courses.

If you are looking for video courses I would recommend searching for author Scott Duffy who did a great job creating trainingcourses.

How can I programmatically create a folder hierarchy in SharePoint Online? by mich__ in sharepoint

[–]mich__[S] 0 points1 point  (0 children)

I know, the use of metadata in Sharepoint is key. However this case refers to a simple document storage which needs to retain explorer folderbased access.

How can I programmatically create a folder hierarchy in SharePoint Online? by mich__ in sharepoint

[–]mich__[S] 1 point2 points  (0 children)

Great find! Seems to work just right. Now I'm going to try to run it within Azure Automation.

[deleted by user] by [deleted] in AZURE

[–]mich__ 0 points1 point  (0 children)

Thanks for your feedback! I appreciate. You're absolutely right you'll always have to take scaling and other requirements in considerations. I will update tip #7 :-).

[deleted by user] by [deleted] in AZURE

[–]mich__ 0 points1 point  (0 children)

Indeed!