Skip to content

Instantly share code, notes, and snippets.

View saikiranmothe's full-sized avatar

Sai Kiran Mothe saikiranmothe

  • Qwinix Technologies
  • Denver
View GitHub Profile
django_cloud
============
== Django WorkBook
============
Django Installation
============
1. sudo apt-ge install python-setuptools
2. sudo easy-install virtualenv
@saikiranmothe
saikiranmothe / install_wordpress
Created May 26, 2014 12:04
install_wordpress
https://www.digitalocean.com/community/articles/how-to-install-wordpress-on-ubuntu-12-04
http://www.andrewgertig.com/2013/05/set-up-wordpress-on-heroku
@saikiranmothe
saikiranmothe / digital_signage_links
Created May 27, 2014 13:25
digital_signage_links
ssh -i /path/to/private-key ubuntu@<ec2-public-dns-address>
ssh -i /path/to/private-key username@serverip
@saikiranmothe
saikiranmothe / reset_mysql_password
Created July 11, 2014 04:38
reset_mysql_password
sudo dpkg-reconfigure mysql-server-5.1
https://github.com/heavysixer/Tableau-Trusted-Interface-Example
https://github.com/martyychang/heroku-connect-demo
- 3 min video reviewing data passing through Heroku Connect to Force.com: https://www.youtube.com/watch?v=yjLsOaYuc_o
https://devcenter.heroku.com/articles/herokuconnect#using-heroku-connect-and-the-demo-rails-app
Heroku Connect is currently in limited availability. Please contact your Heroku sales representative for information on access and purchase or tell us about your project and we’ll be in touch.
@saikiranmothe
saikiranmothe / rails4_spree_template.rb
Last active August 29, 2015 14:07
rails4_spree_template.rb
require 'rbconfig'
require 'open-uri'
#creating some sample files
create_file '.ruby-version'
create_file '.rbenv-gemsets'
create_file 'app/assets/images/logo/spree_50.png'
#insert ruby version to .ruby-version/rbenv version file
insert_into_file ".ruby-version" ,:after => "" do
@saikiranmothe
saikiranmothe / blog_template.rb
Last active December 21, 2015 01:38
blog_temaplte - rails application template
run "rm public/index.html"
add_source "https://rubygems.org"
require 'rbconfig'
require 'open-uri'
require 'net/http'
gsub_file 'Gemfile', "gem 'jquery-rails'", "gem 'jquery-rails', '~> 2.0'"
gem 'devise'
gem 'activeadmin'
@saikiranmothe
saikiranmothe / will_paginate_ajaxify.md
Created August 14, 2013 13:51
Pagination with Ajax in Rails Application
Develop pagination with ajax in Rails Application.

Gem Used for pagination


Add gem in Gemfile