> All in One 586

Ads

Monday, March 29, 2021

Tricking WCV

Google has said that Web Core Vitals (WCV) are going to be an SEO factor, and the date is nigh: May 2021. So, I’m seeing some scrambling to make sure those metrics are good. Ya know, the acronym soup: CLS, LCP, and FID. There is starting to be more and more tooling to measure and diagnose problems. Hopefully, once diagnosed, you have some idea how to fix them. Like if you have crappy CLS, it’s because you load in stuff (probably ads) that shifts layout, and you should either stop doing that or make space for them ahead of time so there is less shifting.

But what about LCP? What if you have this big hero image that is taking a while to paint and it’s giving you a crappy LCP number? Chris Castillo’s trick is to just not load the hero background image at all until a user interacts in some way. Strikes me as weird, but Chris did some light testing and found some users didn’t really notice:

Although this accomplishes the goal, it’s not without a cost. The background image will not load until the user interacts with the screen, so something needs to be used as a fallback until the image can be loaded. I asked a few friends to load the page on their phones and tell me if they found anything strange about the page, and none of them noticed anything “off”. What I observed is that the few friends I asked to test this all had their fingers on the screen or quickly touched the screen when the page was loading, so it happened so quickly they didn’t notice. 

It’s a fine trick that Chris documents, but the point is fooling a machine into giving you better test scores. This feels like the start of a weird new era of web performance where the metrics of web performance have shifted to user-centric measurements, but people are implementing tricky strategies to game those numbers with methods that, if anything, slightly harm user experience.

Direct Link to ArticlePermalink


The post Tricking WCV appeared first on CSS-Tricks.

You can support CSS-Tricks by being an MVP Supporter.



from CSS-Tricks https://ift.tt/31s7kuq
via IFTTT

ABB and AWS team up to create an EV fleet management platform

Swiss automation and technology company ABB has announced a collaboration with Amazon Web Services (AWS) to create a cloud-based EV fleet management platform that it hopes will hasten the electrification of fleets. The platform, which the company says will help operators maintain business continuity as they switch to electric, will roll out in the second half of 2021.

This announcement comes after a wave of major delivery companies pledged to electrify their fleets. Amazon already has a number of Rivian-sourced electric delivery vans on the streets of California and plans to have 10,000 more operational by this year; UPS ordered 10,000 electric vans from Arrival for its fleet; 20% of DHL’s fleet is already electric; and FedEx plans to electrify its entire fleet by 2040. A 2020 McKinsey report predicted commercial and passenger fleets in the U.S. could include as many as eight million EVs by 2030, compared with fewer than 5,000 in 2018. That’s about 10 to 15% of all fleet vehicles.

“We want to make EV adoption easier and more scalable for fleets,” Frank Muehlon, president of ABB’s e-mobility division, told TechCrunch. “To power progress, the industry must bring together the best minds and adopt an entrepreneurial approach to product development.” 

ABB brings experience in e-mobility solutions, energy management and charging technology to the table, which will combine with AWS’s cloud and software to make a single-view platform that can be tailored to whichever company is using it. Companies will be able to monitor things like charge planning, EV maintenance status, and route optimization based on the time of day, weather and use patterns. Muehlon said they’ll work with customers to explore ways to use existing data from fleets for faster implementation.

The platform will be hosted on the AWS cloud, which means that it can scale anywhere AWS is available, which so far includes in 25 regions globally.

The platform will be hardware-agnostic, meaning any type of EV or charger can work with it. Integration of software into specific EV fleets will depend on the fleet’s level of access to third-party asset management systems and onboard EV telematics, but the platform will support a layered feature approach, wherein each layer provides more accurate vehicle data. Muehlon says this makes for a more seamless interface than existing third-party charging management software, which don’t have the technology or the flexibility to work with the total breadth of EV models and charging infrastructure. 

“Not only do fleet managers have to contend with the speed of development in charging technology, but they also need real-time vehicle and charging status information, access to charging infrastructures and information for hands-on maintenance,” said Muehlon. “This new real-time EV fleet management solution will set new standards in the world of electric mobility for global fleet operators and help them realize improved operations.”

This software is aimed at depot and commercial fleets, as well as public infrastructure fleets. Muehlon declined to specify any specific EV operators or customers lined up to use this new technology, but he did say there are “several pilots underway” which will “enable us to ensure that we are developing market-ready solutions for all kinds of fleets.” 



from Amazon – TechCrunch https://ift.tt/3w8r7xd
via IFTTT

Tools for Auditing CSS

Auditing CSS is not a common task in a developer’s everyday life, but sometimes you just have to do it. Maybe it’s part of a performance review to identify critical CSS and reduce unused selectors. Perhaps is part of effort to improve accessibility where all the colors used in the codebase evaluated for contrast. It might even be to enforce consistency!

Whatever the case and whenever that moment arrives, I usually reach for some of the tools I‘ll cover in the article. But before that, let’s see what it even means to “audit” CSS in the first place.

Auditing CSS is hard

Generally, code auditing involves analyzing code to find bugs or other irregularities, like possible performance issues. For most programming languages, the concept of auditing code is relatively straightforward: it works or it doesn’t. But CSS is a specific language where errors are mostly ignored by browsers. Then there’s the fact that you could achieve the same style in many different ways. This makes CSS a little tricky to audit, to say the least.

Finding those errors might be prevented by using an extension for your favorite code editor or setting up a linter or code checker. But that is not what I want to show here, and that is not enough. We could still use too many colors, typographic definitions, or z-indexes, all of which could lead to a messy, unmaintainable, unstable CSS codebase.

To truly audit CSS, we would need to dig deeper and find places that are not considered best practices. To find those places, we could use the following tools.

Browser DevTools

Let’s take a look at the Chrome DevTools tools for CSS auditing. I’m using Brave here, which is Chromium-based. You might also want to check out this article by Umar Hansa, who compiled a whole bunch of great DevTool features that released in 2020.

If you like inspecting CSS code manually, there is the Inspect tool. Using that, we could see the CSS code applied to a specific element. Using the “Inspect arrow” we could even see additional details about colors, fonts, size and accessibility.

Grid and Flex inspector

There’s a lot of practical details in the DevTools interface, but my favorite is the Grid and Flex inspector. To enable them, go to the Settings (a little gear icon at the top right of the DevTools), click on Experiments, then enable CSS Grid and Flexbox debugging features. Although this tool is mainly used for debugging layout issues, I sometimes use it to quickly determine if CSS Grid or Flexbox is even used on the page at all.

CSS Overview

Inspecting CSS is pretty basic, and everything needs to be done manually. Let’s look at some more advanced DevTools features.

CSS Overview is one of them. To enable CSS Overview tool, go to the Settings, click on Experiments, and enable CSS Overview option. To open the CSS Overview panel, you could use the CMD+Shift+P shortcut, type “css overview,” then select “Show CSS Overview.” This tool summarizes CSS properties like colors, fonts, contrast issues, unused declarations, and media queries. I usually use this tool to get the “feel” of how good or poor CSS code is. For example, if there are “50 shades of gray” or too many typographic definitions, that means that the style guide wasn’t respected, or one might not even exist.

Note that this tool summarizes the style applied to a specific page, not the whole file.

Coverage panel

The Coverage tool shows the amount and the percentage of code used on the page. To view it, use the CMD+Shift+P shortcut, type “coverage,” select Show Coverage, and click on the “refresh” icon.

You could filter only CSS files by typing “.css” in the URL filter input. I usually use this tool to understand the delivery technique of the site. For example, if I see that the coverage is pretty high, I could assume that the CSS file is generated for each page separately. It may not be critical data to know, but sometimes it helps to understand the caching strategy.

Rendering panel

The Rendering panel is another useful tool. To open the Rendering panel, use CMD+Shift+P again, type “rendering” this time, and choose the “Show Rendering” option. This tool has many options, but my favorite ones are:

  • Paint flashing — shows green rectangles when a repaint event happens. I use it to identify areas that take too much time for rendering.
  • Layout Shift Regions — shows blue rectangles when the layout shift occurs. To make the most of these options, I usually set the “Slow 3G” preset under the “Network” tab. I sometimes record my screen and then slow down the video to find the layout shifts.
  • Frame Rendering Stats — shows the real-time usage of GPU and frames. This tool is handy when identifying heavy animations and scrolling issues.

These tools are something that the regular audit doesn’t imply, but I find it essential to understand if the CSS code is performant and doesn’t drain a device’s energy.

Other options may be more beneficial for debugging issues, like emulation and disabling of various features, forcing the prefers-color-scheme feature or print media type, and disabling local fonts.

Performance Monitor

Another tool for auditing the performance CSS code is the Performance Monitor. To enable it, use CMD+Shift+P again, type “performance monitor,” and select the Show Performance Monitor option. I usually use this tool to see how many recalculations and layouts are triggered when interacting with the page, or when the animation occurs.

Perfomance panel

The Performance panel shows a detailed view of all browser events during page load. To enable the Performance tool, do CMD+Shift+P, type “performance,” select Show Performance, then click the “reload” icon. I usually enable the “Screenshots” and “Web Vitals” options. The most interesting metrics to me are First Paint, First Contentful Paint, Layout Shifts, and Largest Contentful Paint. There is also a pie chart showing the Painting and Rendering time.

DevTools might not be considered a classical auditing tool, but it helps us understand which CSS features are used, the efficiency of the code, and how it performs — all of which are key things to audit.

Online tools

DevTools is just one tool that is packed with a lot of features. But there are other available tools we can use to audit CSS.

Specificity Visualizer

Specificity Visualizer shows the specificity of CSS selectors in the codebase. Simply visit the site and paste in the CSS.

The main chart displays the specificity in relation to the location in the stylesheet. The other two charts show the usage of specificities. I often use this site to find “bad” selectors. For example, if I see many specificities marked as red, I could easily conclude that the code could be better. It is helpful to save the screenshots for reference as you work to improve things.

CSS Specificity Graph Generator

CSS Specificity Graph Generator is a similar tool for visualizing specificity. It shows a slightly different chart that might help you see how your CSS selectors are organized by specificity. As it says on the tool’s page, “spikes are bad, and the general trend should be towards higher specificity later in the stylesheet.” It would be interesting to discuss that further, but it’s out of scope for this article. However, Harry Roberts did write about it extensively in his article “The Specificity Graph” which is worth checking out.

CSS Stats

CSS Stats is another tool that provides analytics and visualizations for your stylesheets. In fact, Robin wrote about it a little while back and showed how he used it to audit the stylesheet at his job.

All you need to do is to enter the URL of the site and hit Enter. The information is segmented into meaningful sections, from declaration count to colors, typography, z-indexes, specificity, and more. Again, you might want to store the screenshots for later reference.

Project Wallace

Project Wallace is made by Bart Veneman, who already introduced the project here on CSS-Tricks. The power of Project Wallace is that it can compare and visualize changes based on imports. That means you could see previous states of your CSS code base and see how your code changes between states. I find this feature quite useful, especially when you want to convince someone that the code is improved. The tool is free for a single project and offers paid plans for more projects.

CLI tools

In addition to DevTools and online tools, there are command line interface (CLI) tools that can help audit CSS.

Wallace

One of my favorite CLI tools is Wallace. Once installed, type wallace and then the site name. The output shows everything you need to know about the CSS code for the site. My favorite things to look at are the number of times !important is used, as well as how many IDs are in the code. Another neat piece of information is the top specificity number and how many selectors use it. These might be red flags for “bad” code.

What I like the most about this tool is that it extracts all of the CSS code from the site, not only external files, but also inline code as well. That is why the report from CSS Stats and Wallace mismatch.

csscss

The csscss CLI tool shows which rules share the same declarations. This is useful for identifying duplicated code and opportunities to reduce the amount of code that’s written. I would think twice before doing that as it might not be worthwhile, especially with today’s caching mechanisms. It is worth mentioning that csscss requires Ruby.

Other useful tools

Other CSS tools might not be used for auditing but are still useful. Let’s list those, too:

  • Color Sorter — Sort CSS colors by hue, then by saturation.
  • CSS Analyzer — Generate an analysis for a string of CSS.
  • constyble — This is a CSS complexity linter, based on CSS Analyzer.
  • Extract CSS Now — Get all the CSS from a single webpage.
  • Get CSS — Scrape all the CSS from a page.
  • uCSS — Crawl websites to identify unused CSS.

Conclusion

CSS is everywhere around us, and we need to consider it a first-class citizen of every project. It does not matter what other people think about your CSS, but what you think about it really does matter. If your CSS is organized and well-written, you will spend less time debugging it and more time developing new features. In an ideal world, we would educate everyone to write good CSS, but that takes time.

Let today be the day when you start caring for your CSS code.

I know that auditing CSS isn’t going to be fun for everyone. But if you run your code against any of these tools and try to improve even one part of your CSS codebase, then this post has done its job.

I am thinking about CSS code more and more lately, and I am trying to make more developers write CSS code more respectfully. I even started a new project at css-auditors.com (yay for hyphenated domain names!) that’s dedicated to auditing CSS.

If you know of any other tools, let me know in the comments.


The post Tools for Auditing CSS appeared first on CSS-Tricks.

You can support CSS-Tricks by being an MVP Supporter.



from CSS-Tricks https://ift.tt/31tMPh0
via IFTTT

Sunday, March 28, 2021

Clear today!



With a high of F and a low of 39F. Currently, it's 45F and Clear outside.

Current wind speeds: 8 from the Southwest

Pollen: 0

Sunrise: March 28, 2021 at 06:41PM

Sunset: March 29, 2021 at 07:12AM

UV index: 0

Humidity: 35%

via https://ift.tt/2livfew

March 29, 2021 at 09:59AM

Saturday, March 27, 2021

Clear today!



With a high of F and a low of 29F. Currently, it's 32F and Clear outside.

Current wind speeds: 5 from the North

Pollen: 0

Sunrise: March 27, 2021 at 06:43PM

Sunset: March 28, 2021 at 07:11AM

UV index: 0

Humidity: 63%

via https://ift.tt/2livfew

March 28, 2021 at 09:59AM

Friday, March 26, 2021

Light Rain Early today!



With a high of F and a low of 31F. Currently, it's 38F and Mostly Cloudy outside.

Current wind speeds: 10 from the Northwest

Pollen: 0

Sunrise: March 26, 2021 at 06:44PM

Sunset: March 27, 2021 at 07:09AM

UV index: 0

Humidity: 80%

via https://ift.tt/2livfew

March 27, 2021 at 09:59AM

Daily Crunch: Amazon makes PR push ahead of union vote

Amazon pushes back against unionization, WeWork eyes the SPAC route and there’s new spyware on Android. This is your Daily Crunch for March 26, 2021.

The big story: Amazon makes PR push ahead of union vote

Workers at Amazon’s fulfillment center in Bessemer, Alabama (a suburb of Birmingham) will vote next week on whether to unionize. In the meantime, Amazon is waging an aggressive PR campaign against the effort and the politicians who support it.

For example, in a response to news that Senator Bernie Sanders would be visiting Amazon workers, executive Dave Clark tweeted, “I welcome @SenSanders to Birmingham and appreciate his push for a progressive workplace. I often say we are the Bernie Sanders of employers, but that’s not quite right because we actually deliver a progressive workplace.” Meanwhile, the Amazon News account scoffed at Representative Mark Pocan for repeating accounts of Amazon workers peeing in water bottles: “If that were true, nobody would work for us.”

In response, the Retail, Wholesale and Department Store Union (which the Amazon workers would be joining if the unionization effort succeeds) put out a statement asking, “How arrogant and tone deaf can Amazon be?”

The tech giants

A new Android spyware masquerades as a ‘system update’ — The malware can take complete control of a victim’s device.

What Silicon Valley could learn from China’s Q&A platform Zhihu — China’s largest question and answer platform, Zhihu, began trading at the lower end of its IPO range.

Startups, funding and venture capital

Crypto boom continues as Chainalysis raises $100M, doubles valuation to over $2B — The round comes just four months after the company secured a $100 million Series C round at a $1 billion valuation.

Benitago Group raises $55M in combined debt and equity to buy and grow Amazon brands — Most of the funding takes the form of credit lines to fund acquisitions, but there’s also an equity investment.

‘Link-in-bio’ company Linktree raises $45M Series B for its social commerce features —  Linktree is one of the most popular “link in bio” services, with more than 12 million users.

Advice and analysis from Extra Crunch

WeWork lines up for a second run at the public markets — If all you have is a blank-check company, every erstwhile startup looks like a public company in waiting.

Five mistakes creators make building new games on Roblox — Game developers, brands and investors alike are wondering what factors cause the most successful games on this $47 billion platform to break out.

UiPath’s IPO filing suggests robotic process automation is booming — Five takeaways from the company’s S-1.

(Extra Crunch is our membership program, which helps founders and startup teams get ahead. You can sign up here.)

Everything else

These House hearings on tech are a waste of time and everyone knows it — Devin Coldewey says the hearings need to change if lawmakers really want to put Big Tech on the spot.

Computer vision software has the potential to reinvent the way cities move — Tech provides new means of addressing the challenges of crowding, pollution and parking enforcement on dense city streets.

You can only invest if you promise not to read the fine print, OK? — Wrap up the week with an episode of Equity.

The Daily Crunch is TechCrunch’s roundup of our biggest and most important stories. If you’d like to get this delivered to your inbox every day at around 3pm Pacific, you can subscribe here.



from Amazon – TechCrunch https://ift.tt/31kgDfW
via IFTTT

What Can We Actually Do With corner-shape?

When I first started messing around with code, rounded corners required five background images or an image sprite likely created in Photosh...