87 Matching Annotations
- Nov 2023
-
pragprog.com pragprog.com
-
Genetic Algorithms in Elixir - Solve Problems Using Evolution
-
- Jul 2023
-
alexplescan.com alexplescan.com
-
thechipletter.substack.com thechipletter.substack.com
- Jun 2023
-
fly.io fly.io
- Mar 2023
-
mainmatter.com mainmatter.com
- Feb 2023
-
akoutmos.com akoutmos.com
Tags
Annotators
URL
-
-
akoutmos.com akoutmos.com
Tags
Annotators
URL
-
- Dec 2022
-
erlangforums.com erlangforums.com
- Oct 2022
-
www.syncfusion.com www.syncfusion.com
-
elixir-lang.org elixir-lang.org
-
elixir-lang.org elixir-lang.org
-
nice list of books
Tags
Annotators
URL
-
- Sep 2022
- Aug 2022
-
elixir-lang.org elixir-lang.org
-
Links are bi-directional. If you link two processes and one of them crashes, the other side will crash too (unless it is trapping exits). A monitor is uni-directional: only the monitoring process will receive notifications about the monitored one. In other words: use links when you want linked crashes, and monitors when you just want to be informed of crashes, exits, and so on.
link 是双向的,如果你 link 两个进程,一个进程 crash 会导致另一个进程也 crash(除非它阻止退出?)。monitor 是单项的,只有正在监听的进程会收到被监听进程的消息。换句话说,当你希望绑定 crashed 关系,使用 link。 当你希望收到crash,exit 等消息时,使用 monitor
-
-
prograils.com prograils.com
Tags
Annotators
URL
-
- Jul 2022
-
levelup.gitconnected.com levelup.gitconnected.com
-
fullstackphoenix.com fullstackphoenix.com
- Jun 2022
- May 2022
-
hub.packtpub.com hub.packtpub.com
- Feb 2022
-
ghedamat.github.io ghedamat.github.io
- Jan 2022
-
hauleth.dev hauleth.dev
Tags
Annotators
URL
-
- Nov 2021
-
hexdocs.pm hexdocs.pm
Tags
Annotators
URL
-
- Aug 2021
-
semaphoreci.com semaphoreci.com
-
pragdave.me pragdave.me
-
www.botsquad.com www.botsquad.com
-
redrapids.medium.com redrapids.medium.com
-
elixirforum.com elixirforum.com
- Jun 2021
-
underjord.io underjord.io
Tags
Annotators
URL
-
-
gist.github.com gist.github.com
- May 2021
- Feb 2021
-
engineering.pivotal.io engineering.pivotal.io
-
medium.com medium.com
- Dec 2020
- Oct 2020
-
experimentingwithcode.com experimentingwithcode.com
-
iamvery.com iamvery.com
- Jul 2020
-
subvisual.com subvisual.com
Tags
Annotators
URL
-
-
shankardevy.com shankardevy.com
Tags
Annotators
URL
-
- Jun 2020
- May 2020
- Mar 2020
-
hashrocket.com hashrocket.com
- Jan 2020
-
underjord.io underjord.io
Tags
Annotators
URL
-
-
samuelmullen.com samuelmullen.com
- Nov 2019
-
medium.com medium.com
-
www.membraneframework.org www.membraneframework.org
-
Membrane Framework - Reliable & scalable multimedia streaming
-
- Jul 2019
-
engineering.dollarshaveclub.com engineering.dollarshaveclub.com
- Jun 2019
-
www.howtographql.com www.howtographql.com
- Dec 2018
- Nov 2018
- Oct 2018
- Sep 2018
-
-
This is a transcript of a talk given at ElixirDaze and CodeBEAMSF conferences in March of 2018, dealing with supervision trees and with the unexpected.
-
- Dec 2017
-
hexdocs.pm hexdocs.pm
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
- Aug 2017
- Apr 2017
-
engineering.appcues.com engineering.appcues.com
-
The choice between maps, structs, and keyword lists, or between string keys and atom keys, is not always clear, and improper decisions can lead to headaches. This article promotes simple guidelines to keep the Elixir programmer out of trouble: Use string-keyed maps for data which has just arrived from an external source. Convert external data to structs as soon as possible. Use ExConstructor or something similar to abstract away the handling of string-keyed maps. Use structs almost everywhere else in your program. Use other atom-keyed maps sparingly. Use keyword lists only to provide arguments to a function. These rules of thumb have improved the quality of our code here at Appcues, and we hope they can help you out too.
-
- Mar 2017
-
github.com github.com
-
-
www.amberbit.com www.amberbit.com
-
shane.logsdon.io shane.logsdon.io
- Feb 2017
-
blog.overstuffedgorilla.com blog.overstuffedgorilla.com
-
spawnproc.github.io spawnproc.github.ioBPE1
-
-
elixirforum.com elixirforum.com
-
Just reading an interesting document wherein elixir takes an important placehttp://arxiv.org/pdf/1601.05976.pdf49 . BPM (business process management), for those who never heard of it, is a sort of Model Driven Development; in BPM you model a workflow / process mostly visual and use this model for execution. So the process that was hidden in your code becomes visible and maintainable for business specialists (I mean specialists that do not code). It can be used together with other MDD parts like BRM (business rules management). Here the rules are extracted out of the code. Even the screen / form builder where you visually compose your forms is a form of MDD. You can choose to create executable models (for example an xml or json that can be interpreted by your code), generate code based on your model or choose a mix. I prefer executable models. Here a company that did a lot of research which names key advantages: https://www.mendix.com/blog/the-power-of-mendix/30 .
Tags
Annotators
URL
-
-
arxiv.org arxiv.org
-
In this paper, we propose to rethink the dominantlogic of how to model business processes. We think that an actorbased approach supports in a much better way the fundamentalnature of business processes. We present a proposal for a compilerarchitecture to model and execute business processes as a setof communicating microservices that are hosted on a generalpurpose virtual machine for distributed execution.
-
-
blog.overstuffedgorilla.com blog.overstuffedgorilla.com
-
jlouisramblings.blogspot.com jlouisramblings.blogspot.com