Forrest O.
Forrest O.
Yeah! This "local module library" should come with #20 saving apps to local storage. Could save other preferences too...
Library should sort by type. Awesome bar should sort by use count.
It seems like `font.tables.gsub` has the `ligatureSets` info needed to combine these. Is that something that I can enable with an option? ```js notoEmojiFont.substitution.getFeature("ccmp") // Array(3640) ``` The feature tag...
Looking at #443 I thought this was worth a try: ```js notoEmojiFont.substitution.add( "ccmp", notoEmojiFont.substitution.getFeature('ccmp') ); ``` but got: > Error: Ligature: unable to modify coverage table format 2
In addition to the `ccmp` substitutions, https://en.wikipedia.org/wiki/Variation_Selectors_(Unicode_block) need to be taken into account. For example, `"☠"` vs `"☠️"`.
Here's my workaround. ```js // Opentype.js doesn't actually support these substitutions, so we'll have to // search them manually const substitutions = font.substitution.getFeature("ccmp"); function emojiToGlyph (emojiString) { const glyphs =...
My concept for a browser extension would have access to any number input in the page, which could make animating any web app or demo with inputs possible. For example,...
Exploration of Meemoo concepts as web components, with demos in various other systems: https://github.com/meemoo/meemoo-elements#can-i-use-and-style-these-in-webflow
Thread about SVG copy/paste as kind of a manual "typed wire" as @jessmartin has been hinting? https://twitter.com/forresto/status/1468530334140674049 Too bad we can't trigger/inspect copy/paste in iframes. Puppeteer Meemoo? 😅 🙅
Cool, thanks for that tip.