Type a keyword and hit enter to start searching. Press Esc to cancel.

Category: Uncategorized

Creating and managing your own private dedicated ARK: Survival Evolved server is a great way to enjoy the game with friends.  Server rentals can be very expensive too.  Luckily, you can rent your own virtual private server (VPS) from Digital Ocean where you can install and manage your own ARK server for about $10/month.  This guide will walk you through the process and it assumes you don’t have much, if any at all, experience in managing remote servers. If you haven’t done so already, you will need to signup for an account with Digital Ocean, https://www.digitalocean.com/?refcode=77d53f9e1f35.  Once you created your account…

Using an AngularJS based frontend, paired with a Rails backend, is a great stack.  AngularJS provides $resource, which is a mostly complete module to interface with the Rails backend and provide CRUD actions.  However, if you are using strong parameters with a require statement in Rails, then $resource can be a bit of a pain. When generating forms with ActionView, you use form_for @model, this will generate input names with a name like name=”model[attribute]”.  Using this same naming scheme in AngularJS does not work, because the input names are not correctly interpreted as a JSON object. So, instead of using $resource,…