Monthly Archive: July 2016

Install Node.js on CentOS 6 or 7 0

Install Node.js on CentOS 6 or 7

Following https://nodejs.org/en/download/package-manager/ curl --silent --location https://rpm.nodesource.com/setup | sudo bash - ## Run `yum install -y nodejs` (as root) to install Node.js v0.10 and npm. You may also need development tools to build native addons:...

Upgrade Ruby 1.8 to 2.1 with ActiveRecord 4 0

Upgrade Ruby 1.8 to 2.1 with ActiveRecord 4

Old Forms were like this, but now they don't render! <% form_for @seller, :url => "/seller/create" do |f| %> New <%= form_for @seller, :url => "/seller/create" do |f| %> Old Partial render are also...

Google sign-in authentication in your webapp 0

Google sign-in authentication in your webapp

The Documentation https://developers.google.com/identity/sign-in/web/sign-in   The Catch Since it is javascript, anyone can inject code in your website via the debugger and send any email as received and simulate a positive signin from google authentication,...