ooohhh yeaahhh I can finally show you
🚨🚨 Website for LION 🚨🚨
➡️ Fundamental white label web components for building your design system.
It's a static html site with live demos build using Rocket which means @eleven_ty, @modern_web_dev, @RollupJS.
https://t.co/HIxWPQxU03
As a reaction to the license change of #Elasticsearch we investigated in switching to the "Open Distro for Elasticsearch". In case you're in the same boat, you can read here how we achieved it https://t.co/K77Na821qd
State management libraries can be roughly categorized 2 ways:
⏺ Single (global, atomic store) vs. multi (local, distributed)
⚡️ Direct (manipulate state) vs. indirect (send events)
Here's how I'd categorize some JS state management libraries:
Chrome 88 is going to finally remove support for Web Components v0. So if you haven't migrated your Custom Elements to widely adopted v1, do so! https://t.co/frzIHJD4RC #MakeTheSwitch
Remember when we diverted a Delimited Text dataset so the #Azure Data Factory could read it as XML and dump it into the SQL Server? Fortunately the @AzDataFactory now natively supports XML files. Check out what we experienced on Medium https://t.co/bLPkF9f7fs
Oh I actually didn't share this before 😅
Restructuring Open Web Component and using a shared system with Modern Web was/is an incredible experience 🎉
And with every new site we will add more features and we can then bring it back to everyone 💪
https://t.co/XMLrS1TDSJ
@vickyharp@AzureDataStudio We see an azuredatastudio-mysql v0.1 extension referenced in extension list of other issues. It apppears to exist somewhere. Any chance to get it open-sourced and let the community work on it?
Hi @AzureDataStudio, there is an issue in your github repo with now more than 1000👍. That is the long awaited MySQL support. Yet the issue remains in backlog and is not planned into any milestone. What are your plans about azuredatastudio-mysql which appears to exist somewhere?
With PHP 8 RC out in the public it was time to update our post on how to setup a portable dev environment in Windows #php#wamp#MySQL https://t.co/rg3JwPfr5t
I haven't played with Typescript yet, but this GIF convinced me to give it a shot.
Here's a TS plugin that allows you to write SQL queries with autocomplete inside template literals.
Source Code by @stevenmiller888 https://t.co/MmXAEG4BG8
I use this dialog pattern that allows you to await user input!
This one-liner creates a dialog and resolves when the user clicks a button, cancels out, or whatever you want ✨
Wrote a short explanation here: https://t.co/kijEp5INvb
Apparently this needs to be said but using pure HTML and CSS will get you something on the screen even faster. Won't even need a server. 😱
Later if needed add a sprinkle of JavaScript. Potentially at some time you have so much JS that a framework makes sense. But not earlier...
React chose not to support the full API of HTML elements, and somehow this is web components fault for being "special". It's uniquely bad at handling standard HTML: https://t.co/c3QAW9ONzv
It's time to enable modern JavaScript npm libraries.
This post by @GaryLChew explains the current state and ways forward.
I think the combined solution is compelling.
https://t.co/sNvvCeg1ii
I want to use the value of a promise only if it’s already resolved, otherwise I want to use a placeholder (think content generation on the server side or SW, optimizing for TTFB).
Since promises don’t have `isResolved` or something similar, `Promise.race` comes in handy!