22/04/2015
The Most Popular Programming Languages in to GitHub Since 2012 What programming languages were most interacted with on Github since 2012? This infographic shows data about repositories, pushes, forks, and more.
Contact information, map and directions, contact form, opening hours, services, ratings, photos, videos and announcements from OSS CLUB, Sports Club, Army Institute of Technology, Pune.
The purpose of OSS CLUB is to promote the use of Open Source Systems and Application Software for Technical Developments among students and staff of all branches of Engineering in AIT and to establish de-facto standard for the same.
22/04/2015
The Most Popular Programming Languages in to GitHub Since 2012 What programming languages were most interacted with on Github since 2012? This infographic shows data about repositories, pushes, forks, and more.
17/04/2015
Indian Companies Drop Out of Facebook's Internet.org Indian Web and media companies Cleartrip, NDTV, Newshunt and the Times Group announced that they are pulling out of Facebook's Internet.org service, an initiative that aims to bring free online content to underdeveloped markets.
31/03/2015
Big Win for FOSS, India Makes Use of Open-source Software Mandatory Narendra Modi led government said: As a part if its Digital India campaign, e-governance projects will use free and open source software (FOSS).
31/03/2015
http://electrical-engineering-portal.com/sizing-a-static-ups-system-in-data-center
Sizing a Static UPS System In Data Center | EEP Choosing the power of a static UPS system serving a data center is a decision that involves active power, power factor, required back-up time, load
31/03/2015
Serial Entrepreneurs - How To Find Opportunities Data on top-earning serial entrepreneurs shows that most of them made money from several different businesses, presented in infographic. By Anna Vital.
09/03/2015
http://yourstory.com/2013/03/why-do-people-become-entrepreneurs/
Why do people become entrepreneurs? That might sound tautological, but think about your work. What is your motivation in picking up what you do? What inspires you? What defines you? And more specifically to our users, why did you become an entrepreneur? Unlike a few years ago, entrepreneurship is now an accepted career option. No long…
17/02/2015
14 Tech Superstars Who Didn't Need College To Become Billionaires Get the latest news through Business Insider India on tech, finance, politics, strategy, life and entertainment.
12/02/2015
GitHut - Programming Languages and GitHub A small place to discover more about the usage of programming languages in GitHub.
03/02/2015
24/01/2015
http://willnathan.com/nodejs-vs-ruby-on-rails
Node.js vs Ruby on Rails Unlike many in the developer community, I started out toying with Node.js, and then dove into Ruby on Rails via the delightful Rails for Zombies followed by Michael Hartl’s Ruby on Rails Tutorial. The...
24/01/2015
http://glenmaddern.com/articles/javascript-in-2015
JavaScript in 2015 - Glen Maddern: Internet Pro In the last few days of 2014, I resurrected my long-neglected GIF-beatmatching project DJGif to throw a New Year's party on my rooftop: Ʌbelard playing his first set of 2015A DJ using Ableton Live, a huge bundle of MaxMSP emitting a UDP stream of beat information (courtesy of the immensely pro Cade)…
Execute The Following Commands to Configure Ruby And Rails
Prepare Your System
$ sudo apt-get update
Install Curl:
$ sudo apt-get install curl
Install Ruby Using RVM
$ command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
$ \curl -L https://get.rvm.io | bash -s stable –ruby
$ [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
If You Already Have RVM Installed
If you already have RVM installed, update it to the latest version and install Ruby:
$ rvm get stable --autolibs=enable
$ rvm install ruby
$ rvm --default use ruby-2.2.0
Install Node.js
$ sudo apt-get install nodejs
If you don’t install Node.js, you’ll need to add this to the Gemfile for each Rails application you build:
gem 'therubyracer'
Check the Gem Manager
RubyGems is the gem manager in Ruby.
Check the installed gem manager version. You may see:
$ gem -v
2.2.2
At the time this was written, a newer RubyGems version was available. Use gem update --system to upgrade the Ruby gem manager:
$ gem update --system
RVM’s Global Gemset
See what gems are installed in the “global” gemset:
$ rvm gemset use global
$ gem list
To update all stale gems:
$ gem update
# # # list not shown for brevity
Nokogiri
$ gem install nokogiri
Rails Installation Options
If you install Rails at this point, you will install it into the global gemset.
Instead, make a gemset just for the current stable release:
$ rvm use [email protected] --create
Here are the options you have for installing Rails.
If you want the most recent stable release:
$ gem install rails
$ rails -v
For Reference refer the site http://railsapps.github.io/installrubyonrails-ubuntu.html
For Configuring Git on Ubuntu Systems
Installation
The git version control system is installed with the following command
$ sudo apt-get update
$ sudo apt-get install git
Configuration
Every git user should first introduce himself to git, by running these two commands:
$ git config --global user.email "[email protected]"
$ git config --global user.name "Your Name"