pip
9 TopicsNew Feature: Built in Picture in Picture mode (PIP) is added to Microsoft Edge Global Media Controls
Microsoft Edge Canary Version 82.0.442.0 (Official build) canary (64-bit) The flags you need to enable: edge://flags/ 1. Global Media Controls Picture-in-Picture Enables Picture-in-Picture controls in the Global Media Controls UI. Requires #global-media-controls to also be enabled. – Mac, Windows #global-media-controls-picture-in-picture 2. Global Media Controls Enables the Global Media Controls UI in the toolbar. – Mac, Windows #global-media-controls Microsoft Edge browser now has support for Picture in Picture mode built in. it works in all websites playing video. this is another example for Twitch the PIP pop up video can be dragged to anywhere on the screen and it will stay on top of other applications123KViews11likes17CommentsSuggestion: add Progress Bar and Next/Prev options to the PiP (Picture in Picture) in Edge browser
Suggestion: add Progress Bar and Next/Prev options to the PiP (Picture in Picture) in Edge browser Here is a video of my side by side comparison of PiP in Edge Canary Version 83.0.461 and PiP in Windows 10 Movies & TV app which is the superior one. Also allow to control that progress bar in PiP. use the same small minimal style from the app on Windows 10 but on mouse hover, the progress bar needs to get bigger and come Up so user can control it and click on it. Thanks. https://streamable.com/rocr2Solved5.9KViews7likes12CommentsAzure function require private git package
At the moment we are deploying our python application to a server-less azure function app. For this we use the kudu config-zip deployment. az functionapp deployment source config-zip -g "xxxx" -n "xxxx" --src "xxxx.zip" --build-remote We also want a remote build, because this will install the correct version of the packages. Because some packages have different versions voor different python versions (e.g. 3.8 vs 3.10) and different environment (windows vs linux). The remote build will make sure the correct packages are installed, cause the build (azure's default oryx) will run in the same environment. Recently we moved some of our code to another package. This package is shared by multiple other applications. To install it, we add it to our requirements.txt: git+ssh://Email address removed/xxxxx/xxxxx.git@f4e2bf2e3dxxxxxxxxx This works perfect on our local machines. But not once we deploy to azure. Unfortunately there are no logs. Well the logs shows "oryx build...." and that's it. There is no way to access the build logs. Anyway, we know the cause of the issue: the build doesn't have access to the repository. We do have a ssh key, which can be used to access the git repo. But we have no clue how to pass it to the orxy builder. We tried to make a work around with the "PRE_BUILD_COMMAND" environment variable, but since there are no logs, we cannot determine what is failing during the build. So we cannot install private python packages with azure serverless functions. We see two ways to solve this issue, but for neither we have a clue how to do it: Make the orxy builder use the ssh key Do a local build and push it to the azure function Did some tried this before or can give someone some pointers how to get started on this?1.3KViews1like0Comments