Git: Creating a Branch during Agile Sprints
Here's a tip for new developers learning how to use Git for short sprints. The first step is to create a branch. Step 1 - List...
Digital Product Manager & Social Entrepreneur. Mostly write about AWS, Swift, R, and Ruby.
Here's a tip for new developers learning how to use Git for short sprints. The first step is to create a branch. Step 1 - List...
We are going to use Let's Encrypt Certificate Authority [https://letsencrypt.org/] to create and install a free SSL certificate. -------------------------------------------------------------------------------- Step 1 - Log In...
Deprecated Openshift v2.0 has now reached End of Life [https://blog.openshift.com/migrate-to-v3-v2-eol/] and will be replaced by v3.0. -------------------------------------------------------------------------------- I primarily use Openshift for...
I sometimes need to dynamically load a .wav file. Here's how I do it using AVFoundation. func changeSound(_ song:(path: String, format: String)){ var err:NSError?...
This function will help you get a random true or false boolean value. func randomBool() -> Bool { return arc4random_uniform(2) == 0 ? true : false }...
I doubt many people will need this but here are a few neat things you can do with Ruby. I won't go into great detail but...
I normally use Heroku [https://devcenter.heroku.com/articles/getting-started-with-nodejs#introduction] or Openshift [https://www.chrisjmendez.com/2012/04/29/expressjs-app-with-mongodb-on-openshift/] to publish apps but AWS works too....
Deprecated Openshift v2.0 has now reached End of Life [https://blog.openshift.com/migrate-to-v3-v2-eol/] and will be replaced by v3.0. -------------------------------------------------------------------------------- Openshift comes with Git and...
Thanks to some metaprogramming magic, whenever you create a column within a table, you get a free find_by_[name of column] method. Create a new Friend model...
Here are a few themes I like for Mac Terminal. If you're not a fan of Terminal itself, I also suggest looking into iTerm2 [https://www....
Here are a list of interesting music projects. Classifiers and Curators * Music Map [https://developers.musimap.net/] is attempting to create a database that organizes music into emotional...
!!! DEPRECATED !!! This article was designed for older versions of Ghost such as Ghost 0.11.1 [https://dev.ghost.org/ghost-0-11-1/]. If you are planning to install the...
Real-time data is a big deal and here are a few popular services I've used to build web apps. I went ahead and organized this a...