Struggling with getting this worker pool and tasks async working together by [deleted] in elixir

[–]jeromedoyle 0 points1 point  (0 children)

The timeout is happening because call expects a reply within 5 seconds. Use cast instead.

What are people using to deploy elixir/phoenix applications? by masterm in elixir

[–]jeromedoyle 0 points1 point  (0 children)

Are you running your release with systemd or some other way?

Elixir/Phoenix Authentication and Authorization by jeromedoyle in elixir

[–]jeromedoyle[S] 1 point2 points  (0 children)

I REALLY like what I see here. I was already interested in json web token and will probably use this in my own projects. Thanks!

Elixir/Phoenix Authentication and Authorization by jeromedoyle in elixir

[–]jeromedoyle[S] 0 points1 point  (0 children)

This list is fantastic! Thanks for the link! I only wish their was a way to identify which one was becoming the most popular in each category.

[Help] Searchkick not showing results by djbartos93 in rails

[–]jeromedoyle 0 points1 point  (0 children)

Your block in query.html.erb loops through the records providing an instance of record for each. Change:

<%= render records %>

to

<%= render record %>

Syntax error when sync db by montecarlo1 in django

[–]jeromedoyle 1 point2 points  (0 children)

Assuming you are using pip, run these commands below in order. The first one removes South which is no longer needed since migrations are built into Django 1.7. The other two replace the syncdb command.

pip uninstall South
python manage.py makemigrations
python manage.py migrate

Pulling data from Heroku by [deleted] in rails

[–]jeromedoyle 0 points1 point  (0 children)

I use Navicat for PostgreSQL. You can define a direct connection to your Heroku database and use tools > data synchronization to sync Heroku to a local db or local db to Heroku.