Microsoft Clarity: Meaning of *Other* in Devices section - ms-clarity

This is from MS Clarity from the Insights Dashboard section.
Any idea what this Other is? It shouldn't be tablet since those are reported as a separate line item.

Related

Google One Tap is causing a Layout shift (>0.1) on mobile

I have used the chrome profiler to identify the Layout shifts on our website and discovered that the Google One Tap banner is causing a significant layout shift (> 0.1) on mobile (Image of profiler showing layout shift). I have also added a Performance Observer using layout-instability API to identify the component causing the CLS, and it also indicated the same.
I have tried changing the position of the one-tap using data-prompt_parent_id, but this is ignored on mobile web browsers as mentioned in the developers guide.
You might try to re-test, recent improvements have been made to reduce or eliminate layout shift and improve the CLS score for Core Web Vitals.

Application Insights Metrics Explorer annoyances

"Metric Explorers" on an Azure portal dashboard are quite flexible.
To configure them is, however, a bit painful at times.
With the terms in above image:
How do I change the order of my charts within an explorer?
How do I copy a chart or a whole explorer?
Is there a textual definition I can get or give? Is there other software for a better editing experience?
How do I change the order of my charts within an explorer?
Unfortunately there isn't a direct way to reorder the charts within an explorer. As a workaround you could however, delete them and add them again so that they appear at the bottom. Remember everytime you click 'Add New Chart', it will add it at the bottom.
Also please note that all graphical charts (Line, Area and Bar) appear above whereas a Grid chart will always appear at the bottom. So here's an even simpler hack that you could use: If there's any chart that you want to send to them bottom, change it's type to Grid and then change it back again. It'll get pushed to the end.
How do I copy a chart or a whole explorer?
You can click on More and then click Save Favorite which will save the whole metrics explorer blade (including all custom charts). You can give it a name and even save as a copy to create multiple copies of the whole explorer.
To access favorites, you'll have to go to the Overview tab and click on More followed by Favorites again. Favorites can be shared as well as personal.
Is there a textual definition I can get or give? Is there other software for a better editing experience?
There isn't a textual definition that you can provide for the charts. If you'd like to see this feature, you can add to the user voice or open an issue on github.
There isn't a software available for creating charts in the metrics explorer blade. However, there are alternatives for visualizing and querying data. You can take a look at Analytics if you prefer writing queries to filter insights and telemetry data. It has a very easy-to-learn query language which can help create meaningful charts very easily. There is a lot of tooling and support to push these charts to Power BI as well.
Hope this helps!

Section Lines Disappearing Graphical Issue

I am having a display issue with Infopath. My section lines and section text disappear in the form designer. The lines are initially there but then disappear after I click a few times and scroll. They still exist and can be clicked but I cannot seem them. I am not sure right now what exactly is causing them to disappear.
I am able to get them back again by switching views. This problem occurs both with infopath 2010, and 2007. It also happens to different forms. So it appears to be some sort of display issue. I have not noticed display issue's in any other programs.
I think the likely cause is because I recently formatted my computer, swapped graphics cards for the same model number but what looks like a newer revision because the fan failed on the last card. My specs may be relevant: I am using an AMD FirePro V4900, latest driver 13.352.1009 as of posting. 3 Monitor setup. Windows 7 x64.
Has anyone else run into this and found a fix?

ASP.NET Mobile site not working on Windows Phone 8.0

So I’m drinking the Kool Aid and trying to create a responsive ASP.NET website using VS 2013 and Bootstrap, and I’ve hit a problem I don’t understand and don’t know how to deal with.
The site seems to be coming along pretty well, and all the Bootstrap stuff appears to be working properly when I view the site in a web browser and in the various Windows Phone emulators. The problem is that the site does not behave properly when I view it on my actual, physical, Windows Phone.
My phone is running Windows Phone 8.0, and the emulators claim to be emulating WP 8.1. I’m assuming that this would explain the difference in behavior, but I’m not sure and I don’t really know how to figure this out.
To simplify the problem, I created a blank ASP.NET Web Application in VS, and copied enough stuff from Site.Master into Site.Mobile.Master so as to create a Bootstrap navbar. I then uploaded the whole thing to Azure so as to be able to view it online.
Apparently I cannot post images up here nor can I post more than two links, so describing what's going on is a little bit of a challenge.
I’ve shared a folder on OneDrive that contains the two screen shots and Site.Master and Site.Mobile.Master from the project. I haven’t modified any other files. The folder’s address is http://1drv.ms/1lCW0TA .
In this folder, you'll see "Emulator Screen Shot.jpg" which is what the page I created looks like in the 8.1 emulator. You'll notice that the top navigation bar is pretty much what one would expect from a Bootstrap site.
You'll also see "Phone Screen Shot.jpg" which is what the same website looks like on my mobile device. Note that the top navigation is a mess.
If you want to look at it on your own device, the address is http://mobilemenus.azurewebsites.net.
So, my questions are,
1) What’s going on here? Is the browser in WP 8.0 not capable of rendering this stuff properly? Or am I doing something incorrectly that’s causing it not to work?
2) More importantly, how am I supposed to fix this? Given how simple this example is, I’m having a tough time believing I’m the only person in the world to be having this problem, but I can’t find any discussions of this issue online.
The website works fine on my Kindle. Unfortunately I don’t have an iPhone to test on, so I don’t know what it looks like on an actual iPhone.
I was hoping to finish this and get it deployed in the next couple of weeks, and it would sure be nice if it worked properly on existing Windows Phones.
Thanks in advance for any help.
-Rob
This looks like it is working exactly as it should. You are most likely using an emulator with a small screen resolution. The default emulator uses an 480x800 screen resolution. Your device has a resolution width of 768x1280 (value obtained from your screenshot. You can change bootstraps logic to not have a min/max width of 767/768 with some css. I've gone as far as just changing my local copy of bootstrap.css by doing a find/replace. You can also create a new css file that overrides certain values. You'll want to load that css file after the main bootstrap css.
A handy way to test screen resolution is with Chrome. Hit F12 to open the debugging tools and as you change the size of chrome, it will display the resolution of the page in the top right corner.
This is a well-known bug on Internet Explorer 10 for WIndows Phone 8.
Since you're using ASP.NET you have the chance to fix it server side once on your master page.
var style = new StringBuilder(
"<style type=\"text/css\">" +
"#-webkit-viewport{width:device-width}" +
"#-moz-viewport{width:device-width}" +
"#-ms-viewport{width:device-width}" +
"#-o-viewport{width:device-width}" +
"#viewport{width:device-width}");
var browserCapabilities = Page.Request.Browser;
if (String.Compare(browserCapabilities.Browser, "IEMobile", StringComparison.OrdinalIgnoreCase) == 0 &&
browserCapabilities.MajorVersion == 10 && browserCapabilities.MinorVersionString == "0")
style.Append("#-ms-viewport{width:auto!important}");
style.Append("</style>");
var placeholder = new Literal {Text = style.ToString()};
Page.Header.Controls.Add(placeholder)
Here's the whole article to fix the windows phone bug.

Mobile Device info showing 'not set'

I integrated google analytics with my android app. It's gives very useful information i need, but in Mobile Device info tab, i found some devices are shown as 'not set'. What it means? Am I want to configure any settings to get those data. Please suggest me the solution.
Change the 'primary dimension' to Operating system on the devices screen to get more visibility into 'not set' devices
ref: https://productforums.google.com/forum/#!topic/analytics/n-LDtWGhZiY
I'm from Turkey, and in my case, these not set devices are the devices that are produced by top ISP's or mobile network operators, thus, their information can't be collected by GA.
Thanks for the primary dimension tip. I switched it around with the Mobile Device Info as the primary and the Operating system as the secondary. I then used the screen resolution to have an idea if it's mainly tablets or phones. Cheers!
According to what I found, it means that the data was not able to be collected: https://support.google.com/analytics/answer/2820717?hl=en
Apparently you can use filters to dig deeper, but it seems like it'll take some time to do.

Resources