Posted on February 9, 2017 by admin

Revolut launches current accounts and a chatbot

Slowly but surely, Revolut is getting closer to building an actual bank. The startup just announced the launch of current accounts — you can now get a personal IBAN, and the company plans to add other features soon. In addition to current accounts, Revolut is also introducing a chatbot to handle support requests. Revolut isn’t technically a bank account, it’s more or less… Read More
Source: TechCrunh Startup

Posted on February 9, 2017 by admin

Y Combinator now lets anyone recommend startups

After years of accepting tips from alumni, Y Combinator has decided to open up its recommendation network to everyone. The goal is to help increase the number of startups connected to YC by allowing professors, mentors, early customers and anyone else familiar with a team to submit recommendations to YC on their behalf. Kat Manalac, a partner at YC, explained that a lot of founders are afraid… Read More
Source: TechCrunh Startup

Posted on February 4, 2017 by admin

How other cities can benefit from Silicon Valley

Startup ecosystems are taking root across the country, and they’re all looking to copy the formula Silicon Valley made so successful. While these startup ecosystems are growing, nothing compares to Silicon Valley. So the question these cities must ask themselves is, “How can we tap into Silicon Valley’s resources to improve our economy?” Read More
Source: TechCrunh Startup

Posted on February 4, 2017 by admin

Conductor’s new mobile app helps businesses understand what customers are searching for

Conductor is launching a new mobile app that co-founder and CEO Seth Besmertnik described as a way to get quick access to “the voice of the customer.” The New York-based company started with a focus on search engine optimization before broadening to offer a broader range of marketing tools. Now, Besmertnik said, “The core of what we do is understand your customers and… Read More
Source: TechCrunh Startup

Posted on February 1, 2017 by admin

Reserve raises another $10M and plans new software for restaurants

Reserve, a startup offering table and customer management tools for restaurants, is announcing that it has raised $10 million in Series B funding. When the company first launched in 2014, it billed itself as a “digital concierge” that would make it easier for diners to get reservations at top restaurants. Last year, it launched a new product called Reserve for Restaurants,… Read More
Source: TechCrunh Startup

Posted on February 1, 2017 by admin

Cardlife is yet another SaaSsy management tool

Now that we’ve collectively signed up for billions of dollars of unused SaaS subscriptions it’s time to subscribed to a tool that helps us manage those subscriptions. Enter Cardlife, another player in the exciting world of SaaS management. “SaaS management,” you say. “Isn’t that just for the rich and famous?” No! The company manages over $4.7 million… Read More
Source: TechCrunh Startup

Posted on February 1, 2017 by admin

Install Nodejs on Ubuntu 14.04

 How To Install the Distro-Stable Version

Ubuntu 14.04 contains a version of Node.js in its default repositories that can be used to easily provide a consistent experience across multiple servers. The version in the repositories is 0.10.25. This will not be the latest version, but it should be quite stable.

In order to get this version, we just have to use the apt package manager. We should refresh our local package index prior and then install from the repositories:

sudo apt-get update
sudo apt-get install nodejs

If the package in the repositories suits your needs, this is all that you need to do to get set up with Node.js. In most cases, you’ll also want to also install npm, which is the Node.js package manager. You can do this by typing:

sudo apt-get install npm

This will allow you to easily install modules and packages to use with Node.js.

Because of a conflict with another package, the executable from the Ubuntu repositories is called nodejsinstead of node. Keep this in mind as you are running software.

Below, we’ll discuss some more flexible methods of installation.

If you are using this kind of installation the NodeJS binary would be “nodejs”.

It could be a good practice to link it with the more common name;

sudo ln -s /usr/bin/nodejs /usr/bin/node

How To Install Using a PPA

An alternative that can get you a more recent version of Node.js is to add a PPA (personal package archive) maintained by NodeSource. This will probably have more up-to-date versions of Node.js than the official Ubuntu repositories.

First, you need to install the PPA in order to get access to its contents. This depends on the version you wish to install.

For the most recent LTS (the 6.x branch), use:

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -

For the older LTS (the 4.x branch), use:

curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -

For the currently active release (the 7.x branch), use:

curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -

The PPA will be added to your configuration and your local package cache will be updated automatically. After running the setup script from nodesource, you can install the Node.js package in the same way that you did above:

sudo apt-get install nodejs

The nodejs package contains the nodejs binary as well as npm, so you don’t need to install npmseparately. However, in order for some npm packages to work (such as those that require building from source), you will need to install the build-essentials package:

sudo apt-get install build-essential
Posted on January 31, 2017 by admin

Qvivr raises $5M to move beyond its all-in-one credit card

Qvivr, a Silicon Valley-based FinTech startup originally known for building the SWYP programmable credit card, has raised $5M in Series A funding. The funding was led by Khosla Ventures, with participation from a large multinational Asian bank. The startup was founded in 2014 and originally launched with a pre-order campaign for a hardware product that would let users program all of their… Read More
Source: TechCrunh Startup

Newer Posts
Older Posts