Skip to content

Latest commit

 

History

History
85 lines (59 loc) · 5.2 KB

june.md

File metadata and controls

85 lines (59 loc) · 5.2 KB

June 2022

HTML

Attributes

  • Louis Lazaris (2022), Those HTML Attributes You Never Usehttps://www.smashingmagazine.com/2022/03/html-attributes-you-never-use/
    • Louis Lazaris produces the WebTools Weekly newsletter. You should subscribe if you haven't yet.
    • Contents:
      • The enterkeyhint Attribute For Virtual Keyboards
      • The title Attribute On Stylesheets
      • The cite Attribute For The <blockquote> And <q> Elements
      • Attributes For Custom Ordered Lists
      • The download Attribute For The <a> Element
      • The decoding Attribute For The <img> Element
      • The loading Attribute For The <iframe> Element
      • The form Attribute for Form Fields
      • The cite And datetime Attributes For Deletions/Insertions
      • The label Attribute for the <optgroup> Element
      • The imagesizes and imagesrcset Attributes for Preloading Responsive Images
      • Honorable mentions...

Elements

  • Ondřej Žára (2022), <little-planet>https://github.com/ondras/little-planet

    This project is a Custom HTML Element (AKA Web Component) that renders an interactive view of a panoramic photo. Can be used with no JavaScript knowledge: just include the component and continue with plain HTML.

Railway-oriented programming (ROP)...

Prompted by Wes Bos tweet -- https://twitter.com/wesbos/status/1536720926112460801

...and switches

No UI frameworks

JavaScript

Streams

Streams get their own section. This one is laden with detail...

Workers

  • Stackoverflow (2016), Answer to How to wait for multiple WebWorkers in a loophttps://stackoverflow.com/a/39282225

    You will want to use promises for this...Promise.all does the magic of waiting for concurrently running results, and the step function does the asynchronous looping using a recursive approach.

CSS