sbs
Trending in Announcing
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
Introductory paragraph
I’ll be looking for a keen junior or someone that has a couple of years experience in the real world (so you’ve be...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Neurofunk
Hey that’s quite nice!
Does it only do ANSI output or is there any chance you’d implement images? Perhaps by taking Francois Ribemont / qrcode · GitLab as a backend?
sbs
Thanks!!
Don’t have plan to include png encoder. Render to terminal is just one way to represent the qr code, though one can pipe the data to any other png library.
Eiji
@sbs: No need to implement png encoder from scratch. Just draw QR code in canvas and add simple option to export it.
For example you can draw a canvas and change it to image really easy in JavaScript:
It’s much more simpler and allows to simple export in much more formats without any library for this!
Raddi_On
How is that supposed to work? We have
QRCode.encode("some data)with “canvas”?How?
Eiji
@Raddi_On: Just few steps:
jsonformat)0(white) and1(black) squares. Drawing squares in canvas is one of the easiest things to do.I will show you how it could look in Elixir:
As you can see square coordinates are noting special. You just need to know in which row and column you are and simply multiply them by number of pixels that you wish to have for each cell.
Raddi_On
Thanks.
What’s Canvas? It doesn’t exist in Elixir.
My goal is to something pass qr_code binary data into a Phoenix template where I can draw it with this:
How can I do this?
Eiji
@Raddi_On: Of course not. It’s only example, because
).
Elixiris easier thanJavaScript, so I could write it faster (also don’t usedJavaScriptfor some timeI just show you how to collect required info that you will need in Canvas.
Canvas is drawn by web browser.
Raddi_On
I know. But my question remains: how to pass qr code binary data to a Phoenix template? Or rather: what exactly should I pass given that I have
QRCode.encode("some data)?Eiji
@Raddi_On:
You can use for example request for
json.For example:
You can also use probably
Drab:Raddi_On
That’s an array of arrays. Doesn’t it have to be converted an image format before it’s passed to a phoenix template?