cognivore

Results 35 issues of cognivore

I'm using Cachex for in-BEAM anti-spam. When I had the following code: ```elixir {:ok, %{accept: accept, front: front} = Cachex.transaction(:nimrod, [ip], fn sentinel -> {:ok, front} = Cachex.get(sentinel, ip) accept...

help wanted
question

# Steps to reproduce 1. Use 1.2.1 2. ``` iex(doma@redacted A> :enacl.generichash(32, ["hello", "world"], "") ** (ArgumentError) argument error (enacl 1.2.1) :enacl_nif.crypto_generichash(32, ["hello", "world"], "") iex(doma@redacted B> :enacl.generichash(32, "helloworld", "")...

## Clarification and Motivation Currently, legality seems to be determined based on the most legal printing of a given card, as seen in this gold-bordered printing of Arcbound Ravager: ![Screenshot...

Data Issue
v5.2.X

I'd like to write this: ``` res = naive_run_receive_loop(Resp.new!(p, []), command, timeout) try do Port.close(p) rescue _ -> :ok end res ``` as ``` naive_run_receive_loop(Resp.new!(p, []), command, timeout) :ok end...

Currently, Applicative for tuples duplicates mempty of the first element: https://github.com/witchcrafters/witchcraft/blob/75b62d87bc2c22917f6d5f2bc42d1e0163d40460/lib/witchcraft/applicative.ex#L221 Since we're not constrained by parametricity, couldn't we preserve "type" of every element kind of for free, making the...

**Is your feature request related to a problem? Please describe.** The game, currently, feels like a puzzle in assembling a team such that it can deal with way stronger opponents...

enhancement

**Is your feature request related to a problem? Please describe.** While thinking about PvP (and related to #146) "Maybe gets a fire pokete and burns the burget bar in Agrawos...

enhancement

**Is your feature request related to a problem? Please describe.** There's a cute overlay network called `yggdrasil`. It's an IPv6 network where you don't need to configure port forwarding or...

enhancement

**Is your feature request related to a problem? Please describe.** After #146 and #148 are implemented, there should be enough features to implement "challenge others on the network" feature. **Describe...

Examples in plain Elixir: - [Maybe](https://github.com/serokellcao/etypes/blob/master/lib/etypes/types.ex#L6) - [Phantom](https://github.com/serokellcao/etypes/blob/master/lib/phantom.ex#L10) Would be cool to do the same with `Either`/[`Result`](https://github.com/doma-engineering/cluster/blob/main/lib/uptight/result.ex#L14).