Programming

Programming

1474 bookmarks
Custom sorting
Add full-text search to an Elixir Phoenix application | Culttt
Add full-text search to an Elixir Phoenix application | Culttt
In this tutorial, we're going to build a simple Phoenix application based upon NimblePublisher. I will then show you how you can integrate Haystack to add full-text search for your content.
·culttt.com·
Add full-text search to an Elixir Phoenix application | Culttt
How Asynchronous JavaScript Works: A Deep Dive into Its Execution Process
How Asynchronous JavaScript Works: A Deep Dive into Its Execution Process
Overview If you are an aspiring JavaScript developer, you will likely be asked whether JavaScript is synchronous or asynchronous. And when you look around for the answers, you might get mixed answers for it. Some considered that JavaScript is synchro...
·sobitprasad.hashnode.dev·
How Asynchronous JavaScript Works: A Deep Dive into Its Execution Process
A Dive into Recursion with Elixir
A Dive into Recursion with Elixir
Today I was fortunate to join in on the Dockyard Academy for a discussion about Recursion. We got a...
·dev.to·
A Dive into Recursion with Elixir
n2g
n2g
Need To Graph
·pypi.org·
n2g
How to multicast using gen_udp in Erlang?
How to multicast using gen_udp in Erlang?
How do you use gen_udp in Erlang to do multicasting? I know its in the code, there is just no documentation behind it. Sending out data is obvious and simple. I was wondering on how to add membersh...
·stackoverflow.com·
How to multicast using gen_udp in Erlang?
Building a Chat App with LiveView Streams
Building a Chat App with LiveView Streams
Building a LiveView powered chat app is easier than ever when using Streams! Sophie DeBenedetto shows us how.
·fly.io·
Building a Chat App with LiveView Streams
Using LiveView's new primitives for accessibility
Using LiveView's new primitives for accessibility
Discover the new accessibility features in LiveView 0.18 and learn how to use them in your Phoenix LiveView applications with practical examples.
·fly.io·
Using LiveView's new primitives for accessibility
Handling Files In Python - Opening, Reading & Writing
Handling Files In Python - Opening, Reading & Writing
Files are used to store information, and when we need to access the information, we open the file and read or modify it. We can use the GUI to perform these operations in our systems. Many programming languages include methods and functions for manag...
·geekpython.in·
Handling Files In Python - Opening, Reading & Writing
Component X Software - Geo encoding a location Part 1
Component X Software - Geo encoding a location Part 1
Component X Software assists companies bespoke with applications and services and solving problems that help business move forward.
·componentx.co.uk·
Component X Software - Geo encoding a location Part 1
Functional Arrays in Elixir and Erlang
Functional Arrays in Elixir and Erlang
Many data structures including arrays don't translate equally from imperative to functional programming languages and there are important reasons why.
·readreplica.io·
Functional Arrays in Elixir and Erlang
Avoiding Data Loss With Elixir Dets
Avoiding Data Loss With Elixir Dets
:dets allows us to persist items on disk quickly and natively in Elixir, however there is a chance we can loose data when using this method. In this article we discuss how to create a persistant cache module in Elixir with :dets, why we can lose data and what we can do about it
·learn-elixir.dev·
Avoiding Data Loss With Elixir Dets
Erlang ETS cheatsheet
Erlang ETS cheatsheet
The one-page guide to Erlang ETS: usage, examples, links, snippets, and more.
·devhints.io·
Erlang ETS cheatsheet
Elixir cheatsheet
Elixir cheatsheet
The one-page guide to Elixir: usage, examples, links, snippets, and more.
·devhints.io·
Elixir cheatsheet
Copy file creation date to metadata in ffmpeg
Copy file creation date to metadata in ffmpeg
I would like to copy the file creation date of an mp4 file into the file's metadata. I'm pretty sure this can be done with ffmpeg and some nifty Linux commands.
·unix.stackexchange.com·
Copy file creation date to metadata in ffmpeg
Retrieving and Saving media metadata using FFmpeg
Retrieving and Saving media metadata using FFmpeg
I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg. Also is the same thing
·stackoverflow.com·
Retrieving and Saving media metadata using FFmpeg
Background version of uploaded video creation in Elixir with Arc and FFmpeg
Background version of uploaded video creation in Elixir with Arc and FFmpeg
I tried to make video uploading on Elixir phoenix project using Arc. I need to have different size versions of video. So I used FFmpeg to do this: def transform(:large, {file, scope}) do {:ffmpe...
·stackoverflow.com·
Background version of uploaded video creation in Elixir with Arc and FFmpeg