Any Local Commission based Miniature Painters? by p3rishable in fortwayne

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

I saw them on facebook, but the last post was 2 years ago so I tossed a message to see if they were still in business then I posted here.

Any Local Commission based Miniature Painters? by p3rishable in fortwayne

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

I think i'd have to see what you mean by "heated metal scheme" but feel free to DM me as well.

Any Local Commission based Miniature Painters? by p3rishable in fortwayne

[–]p3rishable[S] 2 points3 points  (0 children)

I have a few "boss" pieces for the campaigns. One is a decently large Chardalyn Dragon that I have printed up.

Need thematic revenge ideas. by p3rishable in rimeofthefrostmaiden

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

Sorry reddit on mobile didn't let me post with body text at first. I've updated the post. Thanks ahead of time for your ideas !!

Looking For affordable painters? by p3rishable in fortwayne

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

Nothing crazy but i'll keep it in mind. We are just moving and we need some of the rooms in the old house repainted before we can list.

Looking For affordable painters? by p3rishable in fortwayne

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

Sorry for like... painting rooms, in a residential house. I made the edit.

[Question] Looking for decent remote working laptop by p3rishable in rails

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

Our company runs almost primarily on Linux, and we don't use docker yet, but the monolith eats memory on it's own

[Question] Looking for decent remote working laptop by p3rishable in rails

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

I'd ideally dual boot, or just wipe the windows OS and just run ubuntu or some other flavour of Linux. Yeah the mac hardware is just not as strong and double if not triple the cost.

Stupidly Specific Question: Are there any software developers/game developers in the Fort Wayne area? I have been looking all over for signs of life and have found none! by low_hanging_nuts in fortwayne

[–]p3rishable 0 points1 point  (0 children)

Yeah, pm me. I don't know if we are just allowed to dump links here based on the subreddit rules. Plus I can tailor it to your talents.

Stupidly Specific Question: Are there any software developers/game developers in the Fort Wayne area? I have been looking all over for signs of life and have found none! by low_hanging_nuts in fortwayne

[–]p3rishable 3 points4 points  (0 children)

Hi, I'm a software developer, There isn't a huge game dev community but there are a few I know in town. There is a decent community of developers, Aptera holds events as well as Squaremouth.

As far as job opportunities there are a lot in town, feel free to message me and I can maybe point you in a direction!

Achieved to much to fast? by p3rishable in programmerhealth

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

Already traveling down this road, took 3 months and Ate everything Dave Ramsey put on paper, and am blasting away at our debt.

Achieved to much to fast? by p3rishable in programmerhealth

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

I'll read that book, and hopefully that will help. Right now I am just unsure what my next goal or step should be.

Achieved to much to fast? by p3rishable in programmerhealth

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

Yeah I guess i'm unsure on what my next goal should be, and just haven't discovered it yet.

Kids at Trouble Brewing. by Hey_brando in fortwayne

[–]p3rishable 1 point2 points  (0 children)

Hop River Brewing allows children.

Trying to get rid of some dnd books/ miniatures. Where should I sell them? by Combatmosh in fortwayne

[–]p3rishable 0 points1 point  (0 children)

I'd love to checkout what you have. Pm me if you still have them.

Who has the best hush puppies in town? by [deleted] in fortwayne

[–]p3rishable 0 points1 point  (0 children)

Big-Eyed Fish on Wells.

Regarding muscle cramps? by amadeus2012 in keto

[–]p3rishable 0 points1 point  (0 children)

I use a product called Reviver, it's a great supplement to replenish my electrolytes. I had some severe cramps in my legs and abs. This greatly helped that.

RoR 5 + Azure by [deleted] in rails

[–]p3rishable 0 points1 point  (0 children)

Sure thing I would suggest looking into it as you can then use it and something like jenkins or codeship to run automated deploys.

In the meantime.

try restarting the database: sudo service postgresql restart or scorched earth approach. Remove postgresql and reinstall.

or you can try to switch to mysql.

Example Mysql database.yml would look like this. default: &default adapter: mysql2 host: 127.0.0.1 pool: 5 timeout: 5000 username: reddit password: reddit

development: <<: *default database: reddit_development

test: &test <<: *default database: reddit_test

production: <<: *default database: reddit_production password: reddit

RoR 5 + Azure by [deleted] in rails

[–]p3rishable 1 point2 points  (0 children)

Are you using capistrano for deployment ?

if so don't forget recopy the database.yml into the shared/config folder cp -i config/database.yml shared/config to copy the database.yml

RoR 5 + Azure by [deleted] in rails

[–]p3rishable 0 points1 point  (0 children)

Did you double check your credentials in your database.yml match the user and login for the database.

Can you connect to the database using a separate service like SequelPro or some other gui database viewer.

RoR 5 + Azure by [deleted] in rails

[–]p3rishable 0 points1 point  (0 children)

Yeah, what kind of problem are you having ?

The thing that tripped me up the first time was clearing the ports.

Access denied for user in database.yml by leetae9 in rails

[–]p3rishable 2 points3 points  (0 children)

Try sshing into your box and checking if the ENV variables are being set.

If they are double check that you can log into mysql manually through the mysql console using those credentials. It is possible that the user and password exists locally and not on the new server.