Tagged “browser”
-
TIL minimal responsive image component component image browser
So when I saw that JS frameworks made image wrapper components (like Nuxt was with nuxt-img), I was blown away and wanted this power at work.
-
TIL why google recommends you avoid document.write() performance javascript browser corewebvital
By injecting it with code, it bypasses the preload scanner. This means that the browser can’t request this file until it’s actually run the '<script>' block that inserts it, which is very much just-in-time (and too late).
-
TIL the history of fonts and COLRv1 image browser font
COLRv1 fonts, have a smaller footprint, vector-scalable, reposition-able, gradient-featuring, and blend-mode powered fonts that accept parameters to customize the font per use case or to match a brand.
-
TIL how Error correction works in HTML error html table browser
You never get an 'Invalid Syntax' error on an HTML page. Browsers fix any invalid content and go on.
-
TIL Dirty bit systems in browsers browser dom webpage
In order not to do a full layout for every small change, browsers use a 'dirty bit' system. A renderer that is changed or added marks itself and its children as 'dirty': needing layout. There are two flags: 'dirty', and 'children are dirty' which means that although the renderer itself may be OK, it has at least one child that needs a layout.
-
TIL finding the browser being used javascript browser
How to detect the browser you're using, with javascript.
-
TIL Content sectioning html webdev browser
Content sectioning or landmarks, like sidebar, content, footer. You know, like better names.
-
TIL the history of fonts fonts history browser
We came up with all sorts of clever techniques to do what was called 'image replacement' for text. Some of the techniques involved CSS and background images. One of the techniques involved Flash
-
TIL the difference between Web workers, Service workers, Worklets, Websockets webworkers browser chromeextension
Web Workers are scripts that offload work from the main thread. Worklets connect to the rendering pipeline. Websockets opens up a 2-way connection.
-
TIL Deceptive design patterns (dark patterns) ux browser webdev
Deceptive design patterns (also known as dark patterns) are tricks used in websites and apps that make you do things that you didn't mean to, like buying or signing up for something.
-
TIL how a url goes gets data from the internet browser network
Ever wonder what happens when you type a url in a address bar in the browser?
-
TIL about Interop 22 browser standard
interoperability — when each underlying web technology is implemented in the same way in every browser
-
TIL about the Network Information API browser api networks
The Network Information API provides information about the network types(e.g., 'wifi', 'cellular', etc.), save data mode, bandwidth and many more.
-
TIL ELI5 for GraphQL browser graphql apis
ELI5? It's like a lunch tray, properly portioned and asking for a specific food type in each slot.
-
TIL about the Broadcast Channel API javascript browser
Think of a use-case like, once you logout from an app running in a browser tab, you want to broadcast it to the app instances opened in other tabs of the same browser.
-
TIL about the Image Capture API browser apis javascript
The Image Capture API which helps us to capture an image or grab a frame from the video devices(like webcam). Not only that, you can also perform actions on capturing an image or grabbing a frame.
-
TIL how to convert a nodeList into an array javascript browser
You can use the spread operator to turn a nodelist into an array!
-
TIL how to get the location of the user with the Geolocation API mdn browser javascript permissions
You can get the user's location in the browser. First, the user has to accept this. As it's a security request. Second, you use the Geolocation API.
-
TIL about the new Intl.NumberFormat browser API javascript browser mdn
No more stupid-ass hacks to format numbers correctly.
See all tags.