- https://grafikart.github.io/headless-elements/?path=/docs/scroll-top--default-story
- Github Time Elements by GitHub.
- Router Manager by Erik Ringsmuth.
- Responsive Embed by Joselito Júnior. Add YouTube, Vimeo and other multimedia content to your pages, letting the browser calculate the height based on the width of their containing block. You just have to define the aspect ratio of the media.
- Lottie Player
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
import { generateObject, generateText } from "ai"; | |
import { test } from "bun:test"; | |
import z from "zod"; | |
import { cerebrasLlama8 } from "../../../llm-models"; | |
const DSL = `Use the following format | |
Subject -> relationship -> Object `; |
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
/* common */ | |
.funk-dropdown-contents { | |
z-index: 1000; | |
transition: all 0.05s ease-in-out; | |
} | |
/* .funk-dropdown-contents[style] { */ | |
/* transition: .05s all ease-in-out; */ | |
/* } */ | |
funk-dropdown:not(.open) .funk-dropdown-contents { |
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
/* common */ | |
.funk-dropdown-contents { | |
z-index: 1000; | |
} | |
funk-dropdown:not(.open) .funk-dropdown-contents { | |
pointer-events: none !important; | |
opacity: 0; | |
display: none; | |
} |
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
SiriusStarr:bird: 12 hours ago | |
Is there any community consensus on the 14 different Dicts that allow custom types? Or a comparison of them all? Not really sure which to go with. | |
Jan Wirth 12 hours ago | |
Welcome to the growing elm ecosystem. |
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
erlandsona 1 month ago | |
Feel like I keep running into this as I’m building widget API’s based on other widget API’s… | |
I keep wishing I had a function with a type signature of msg -> msg -> msg that would behave like Cmd.batch but not require me to make my view signature Html (Cmd msg). | |
jessta 1 month ago | |
type Msg = Batch (List Msg) | Pizza | Pies | |
jessta 1 month ago | |
Is that what you mean? |
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
Name: elm | |
Version: 0.19.1 | |
Synopsis: | |
The `elm` command line interface. | |
Description: | |
This includes commands like `elm make`, `elm repl`, and many others | |
for helping make Elm developers happy and productive. |
elm-install can corrupt your dependencies. Remove elm-test from indirect depencies. It is only neede in test-dependencies.
- https://lucamug.github.io/elm-cheat-sheet/?utm_campaign=Elm%20Weekly&utm_medium=email&utm_source=Revue%20newsletter
- create-elm-app for project scaffolding
- elm-impfix for resolving circular dependencies
- elm-format for keeping code consistent (possibly with pretty-quick)
- elm-verify-examples for easy, embedded unit tests
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
- embedded unit tests | |
- commit hooks (prettier, unit tests etc.) | |
- impfix & format | |
- docsify integration | |
- transparent coder generation | |
- nicer debug log https://discourse.elm-lang.org/t/nicer-debug-log-console-output/3780 | |
- dead code cleanup | |
Additional features |
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
❯ elm make src/Benchmark.elm | |
Compiling ... | |
Success! | |
-- ERROR ----------------------------------------------------------------------- | |
I ran into something that bypassed the normal error reporting process! I | |
extracted whatever information I could from the internal error: | |
> Error from `Benchmark` should have been reported already. | |
> CallStack (from HasCallStack): |
NewerOlder