Effortless Video Sharing with Phoenix LiveView and FLAME
https://www.poeticoding.com/effortless-video-sharing-with-phoenix-liveview-and-flame/
Discussions: https://discu.eu/q/https://www.poeticoding.com/effortless-video-sharing-with-phoenix-liveview-and-flame/
As someone who loves experimenting with new technologies, I recently got the Vision Pro (I’m a big fan of VR and the idea of working in mixed reality). What excites me the most is sharing the cool stuff I discover, with my friends and colleagues, like how amazing it is to have a floating 3D […]
Let’s say you need a count procedure that you pass an array and returns “numbers” or “words” depending on the input type. Input count({1, 2, 3}) count({"one", "two", "three"}) Output: "3 numbers" "3 words" In Odin we have Explicit Procedure Overloading. The design goals of Odin were explicitness and simplicity. // odin run counter.odin -file package Counter import "core:fmt" count_numbers :: proc(items: []int) -> string { return fmt.tprintf("%d numbers", len(items)) } count_words :: p...
Fluxon UI - A modern UI components lib for Phoenix and LiveView
Discussions: https://discu.eu/q/https://fluxonui.com