<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Anna Miroshnichenko Site's RSS Feed]]></title><description><![CDATA[I'm a Web developer who is interested in exploring new technologies. Here I'd like to share my ideas about programming and other things]]></description><link>https://annmirosh.com</link><generator>GatsbyJS</generator><lastBuildDate>Mon, 10 Mar 2025 16:45:11 GMT</lastBuildDate><item><title><![CDATA[How do you analyze websites? 🔍]]></title><description><![CDATA[In this post, I'd like to discuss tools that might be helpful for analyzing websites.]]></description><link>https://annmirosh.com/blog/how-do-you-analyze-websites/</link><guid isPermaLink="false">https://annmirosh.com/blog/how-do-you-analyze-websites/</guid><pubDate>Tue, 12 May 2020 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;How do you analyze websites? 🔍&lt;/h1&gt;
&lt;p&gt;In this post, I&apos;d like to discuss tools that might be helpful for analyzing websites.&lt;/p&gt;
&lt;p&gt;I&apos;d like to talk about the &lt;a rel=&quot;noreferrer noopener&quot; href=&quot;https://developers.google.com/speed/pagespeed/insights/?hl=RU&quot; target=&quot;_blank&quot;&gt;PageSpeed Insights&lt;/a&gt; tool and the &lt;a rel=&quot;noreferrer noopener&quot; href=&quot;https://developers.google.com/web/tools/lighthouse&quot; target=&quot;_blank&quot;&gt;Lighthouse&lt;/a&gt; Chrome plugin. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Both these tools give you a bunch of interesting metrics and score your site by several dimensions (like &quot;Performance&quot;, &quot;Accessibility&quot; and etc.)&lt;/li&gt;
&lt;li&gt;Both these tools work from the &quot;browser&quot;, so you don&apos;t need to upload the content of your site to somewhere or set up a special testing environment&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;What do we need them for?&lt;/strong&gt; With numbers that these tools provide we can understand if the website or web app is becoming better from release to release.&lt;/p&gt;
&lt;p&gt;Along with fairly standard recommendations like &quot;Reduce CSS/JavaScript code size&quot; or &quot;Compress your images&quot; they can give us recommendations which can be really useful. Below I&apos;d like to discuss specific things which were useful for me.&lt;/p&gt;
&lt;h2&gt;❤️ What I love in the PageSpeed Insights:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;It shows the speed of the loading of the page both for mobile and desktop versions of the site. It&apos;s great because when I develop a site, I work with it from the desktop browser 80% of the time (if there are no special requirements about mobile usability, of course). So, for me, it&apos;s extremely useful to see &quot;mobile&quot; and &quot;desktop&quot; metrics in one place.&lt;/li&gt;
&lt;li&gt;It forces us to use modern formats of the images (like WebP, JPEG 2000, or JPEG XR). For some images, we cannot use an SVG format, and for such cases, this tool gives good recommendations about using WebP format and etc.&lt;/li&gt;
&lt;li&gt;It makes a warning in case you forgot to set up an efficient cache policy for static assets.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;❤️ What I love in the Lighthouse:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;It makes an &lt;strong&gt;&quot;Accessibility&quot;&lt;/strong&gt; check - it means that this tool is able to find and list:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;blocks with poor background and foreground colors - I&apos;m not a designer, so for me, it&apos;s very helpful to have such checks;&lt;/li&gt;
&lt;li&gt;HTML tags that don&apos;t follow common rules (like &lt;img/&gt; tags without the alt attribute, links without discernible names and etc.)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;It makes a&lt;strong&gt;&quot;Vulnerabilities&quot;&lt;/strong&gt; check for the third-party scripts (so, if you use some old jQuery on your site you should definitely run it on your site)&lt;/li&gt;
&lt;li&gt;It makes a &lt;strong&gt;&quot;SEO&quot;&lt;/strong&gt; check - with it you can make sure that your page is optimized for search engine result ranking.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I was thinking if there are any things which are missing in these tools... I&apos;d say I miss an ability to test all pages on a site from &quot;the package&quot;. Of, course there are some solutions that can grab all links from your site and run speed checks for all pages, but as I know now there is no a &quot;magic&quot; button 🧙‍♂️ that allows you to do it.&lt;/p&gt;
&lt;p&gt;From my experience, sometimes developers don&apos;t keep attention on these tools. Just for curiosity, I&apos;ve tested some popular sites (I won&apos;t name them here, because I don&apos;t want to offend anybody). And here are results which I got:&lt;/p&gt;
&lt;img class=&quot;post-img&quot; src=&quot;/assets/posts/how-do-you-analyze-websites/tests.png&quot; alt=&quot;Results of testing some popular sites via Lighthouse&quot; title=&quot;Results of testing some popular sites via Lighthouse&quot;/&gt;
&lt;p&gt;Of course, it&apos;s not 100% fare to compare different websites, because they all have different designs and complexity, but as we can see even popular ones don&apos;t have ideal metrics.&lt;/p&gt;
&lt;p&gt;From my point of view, it&apos;s great if you check your site and support good metrics.👍 It&apos;s also fine if you don&apos;t care about them in a situation when it&apos;s better to spend time on solving tasks which will be useful for your project or for end-users (like adding new functionality and etc).&lt;/p&gt;
&lt;p&gt;What are your thoughts about these tools? I&apos;d appreciate your feedback and opinion:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Do you always use these tools on your real projects? &lt;/li&gt;
&lt;li&gt;Are there any features that are missing there from your point of view?&lt;/li&gt;
&lt;li&gt;Do you know better alternatives for them?&lt;/li&gt;
&lt;/ul&gt;</content:encoded></item><item><title><![CDATA[Magic of the designMode]]></title><description><![CDATA[I'll show you how to change web pages on the flight.]]></description><link>https://annmirosh.com/blog/magic-of-design-mode/</link><guid isPermaLink="false">https://annmirosh.com/blog/magic-of-design-mode/</guid><pubDate>Fri, 25 Oct 2019 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Magic of the designMode: design a site on the flight&lt;/h1&gt;
&lt;p&gt;Have you ever tried a designMode in Chrome? It’s a magic mode that allows you to edit a page right in the browser. In general, it looks like this:&lt;/p&gt;
&lt;img class=&quot;post-img&quot; src=&quot;/assets/posts/magic-of-design-mode/designMode.gif&quot; alt=&quot;Gif that shows how the designMode works&quot; title=&quot;Gif that shows how the designMode works&quot;/&gt;
&lt;p&gt;When do you need it? Let’s say you are discussing updates for your project with your manager. This mode allows you to quickly make some changes (e.g. to change a site’s tagline or make other text changes) and understand how the updated content will look.&lt;/p&gt;
&lt;p&gt;To use it, you need to open Chrome’s console and run the following code:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-js&quot;&gt;document.designMode = &quot;on&quot;;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;After this, you will be able to edit the page’s content as if you are working with it in a text editor.&lt;/p&gt;
&lt;p&gt;You do not need to change HTML in the Inspector any more, just type your new text and enjoy the magic.&lt;/p&gt;</content:encoded></item></channel></rss>