Thursday, November 2, 2017

How To Write The Perfect Job Ad - #infographic

Writing a job ad is an important responsibility. You want to reach as many potential applicants as possible and convince the best ones that it’s worth the effort to apply. How can you ensure your job ad will get the response your business needs? This infographic breaks the whole process down into...

[ This is a content summary only. Visit our website http://ift.tt/1b4YgHQ for full links, other content, and more! ]

by Web Desk via Digital Information World

Wednesday, November 1, 2017

Passive income ideas - #infographic

Passive income has long been the holy grail for entrepreneurs looking to free up their time, untethering the cord of daily duties and responsibilities from the potential to generate healthy monthly revenues. While the importance of passive income isn't often doubted, the monumental hurdle often...

[ This is a content summary only. Visit our website http://ift.tt/1b4YgHQ for full links, other content, and more! ]

by Web Desk via Digital Information World

36 Ways to Make Money as a Photographer - #infographic

Making money as a photographer can be a struggle. And a significant challenge to making an income out of your images is simply not knowing where to start. There are a lot of ways you can make money as a photographer – probably a lot more than you ever thought. This list is the result of our...

[ This is a content summary only. Visit our website http://ift.tt/1b4YgHQ for full links, other content, and more! ]

by Web Desk via Digital Information World

Inspirational Quotes from Superheroes and Comic Books - #Infographic

Superheroes can be empowering and inspirational for both children and adults. Despite their superpowers and the colossal obstacles that they face, many of their messages in movies, television, and comic books can resonate with normal human beings too! Many kids love to play as superheroes, so it is...

[ This is a content summary only. Visit our website http://ift.tt/1b4YgHQ for full links, other content, and more! ]

by Web Desk via Digital Information World

How to Deploy Node Applications: Heroku vs Now.sh

As Node.js continues to gain in popularity, new tutorials pop up teaching you to write server-side JavaScript apps and APIs. Once you've built your shiny new Node app, though, what then?

In this article, I'm going to take a look at a couple of options for deploying your Node applications. We'll take a look at Now.sh and Heroku.

I'll explain how to deploy your code to each platform and we'll end the article with a short summary of the pros and cons. I'll pay attention to options for monitoring, ease of use, offered functionality and what the free hosting plan includes.

Deployment with Heroku

To be able to deploy apps to Heroku, you will have to sign up at Heroku and install the Heroku CLI for your machine. I prefer working from my terminal!

Before we can start, we need to add some code to the Procfile. Heroku makes use of this file to determine how to execute the uploaded code.

The following code needs to be added to the file so Heroku knows what command should be executed to start the app:

web: node app.js

Once this is done, try to log in from the terminal by typing heroku login. Heroku will ask you to enter your login credentials.

Next, navigate to the root of your project and enter the command: heroku create. This creates an app on Heroku which is ready to receive the source code of your project. The name of the app on Heroku is randomly created.

To deploy our code to Heroku, simply use git push heroku master. We can visit the app with the command heroku open which will open the generated URL.

Pushing changes to Heroku

Changes can be pushed by following the normal Github flow:

git add .
git commit -m "Changes made to app"
git push heroku master
heroku open

Useful Heroku Commands

  • To make sure that at least one instance of the app is running: heroku ps:scale web=1
    Because we are using the free platform, it is not possible to upscale your application. However, it is possible to downscale so no instances of the application are running: heroku ps:scale web=0

  • View the latest logs (stream) in chronological order generated by Heroku: heroku logs --tail
    It's also possible to show the app logs only. App logs are the output of console.log() statements in your code and can be viewed with heroku logs --source app-name

  • Heroku provides the possibility to run your app locally at http://localhost:5000: heroku local web

  • List all Heroku apps: heroku apps

  • Remove a deployment: heroku apps:destroy --app app-name

  • Add owner (account) to access the app: heroku access:add me@email.com, same for removing heroku access:remove me@email.com

Heroku Environment Variables

If you are working with a .env file locally, you might want to use other environment variables for your Heroku deployment. It is possible to set these with heroku config:set PORT=3001. These values overwrite the variables set in you .env file.

To see all defined Heroku environment variables, just use heroku config. If you want to remove an environment variable for e.g. PORT, use heroku config:unset PORT.

Continue reading %How to Deploy Node Applications: Heroku vs Now.sh%


by Michiel Mulders via SitePoint

FrappĂ© Charts – Simple, Responsive, Modern SVG Charts

Frappé Charts is a GitHub-inspired simple, responsive, modern SVG charts library with zero dependencies.


by via jQuery-Plugins.net RSS Feed

Matteo Belfiore

Fun colorful background animations triggered by the social nav in this One Pager for developer Matteo Belfiore.

Full Review | Direct Link


by Rob Hope @robhope via One Page Love