Sheharyar Naseer
Sheharyar Naseer
On Elixir 1.6.0, `where` statements with `and` or `or` operators cause compilation errors. The `where` macro works fine when they are not used, but when they are, for some reason...
I'm trying to set the attributes of a table from a variable / module_attribute in the `deftable` macro, but it raises an exception instead. ```elixir use Amnesia defdatabase MyApp.DB do...
So records are returned in the format `{:ok, record}` and `{:error, :not_found}`
I'm trying to get IdP initiated logout to work with OneLogin which uses redirects to send the SLO request. Looking at the source code I can see that Samly only...
This returns invalid string binaries when the string contains an emoji: ```elixir Slugger.slugify_downcase("Hi!") # => "hi" Slugger.slugify_downcase("Hi! 👋") # => ```
Related to #19. - [ ] Replace Erlang's `:queue` with a priority queue data structure - [ ] Update Mnesia Table definition - [ ] Auto-migrate on update - [...
Fixes compilation warnings on newer versions of Elixir
When I do ``` shell % joe ls ``` it just prints a blob of all possible joe `.gitignore` files. **_It's not very readable**_. If it had auto-completion, we could...
Thanks for the amazing library! I came across a bug and wanted to report: The OAuth2 library [defaults to](https://github.com/scrogson/oauth2/blob/b5cdbdb475a2ffebd0f48e3289f64cfcdd67dfb9/lib/oauth2/util.ex#L11-L21) `application/json` response type when no `content-type` header is present. Since the...
Currently the `AccessToken.new/1` method does not use the `expires_at` param if it is present in the given map, and only uses `expires_in` or `expires`. It is common to store access...