There's a lot of type terminology and jargon going around when discussing types in Elm. This glossary attempts to list some of the most common type terms along with synonyms, terms from other language communities, examples, and links to more detailed articles on each topic.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const elmDebuggers = document.querySelectorAll('[viewBox="-300 -300 600 600"]'); | |
Array.from(elmDebuggers).forEach((elmDebugger, index) => { | |
const nudgeAmount = `${1.5 + 6 * index}rem`; | |
elmDebugger.parentNode.style.right = nudgeAmount; | |
}); | |
// Thanks to https://github.com/lucamug for sharing this on Twitter | |
// Original thread -- https://x.com/luca_mug/status/1737954346745401590?s=20 | |
// @luca_mug example code: https://x.com/luca_mug/status/1738077153277931961?s=20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -O https://download.redisinsight.redis.com/latest/RedisInsight-v2-mac-x64.dmg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -O https://download.redisinsight.redis.com/latest/RedisInsight-v2-win-installer.exe |