Skip to content

Instantly share code, notes, and snippets.

@SantoshSrinivas79
SantoshSrinivas79 / Idea - Real Estate Listing Service.md
Last active August 29, 2015 14:14
Idea - Real Estate Listing Service

Idea - Real Estate Listing Service

A recent webinar on The Profile of Home Buyers and Sellers by Jessica Lautz from National Association of REALTORS provides insight on few interesting points.

A copy of the document is available at https://app.box.com/s/is5cl31kpvadl1zqbaab6r4vygglzayh.

Interesting points relevant to the 2014 study include:

  • 67% of home sales are driven by Primary Residence Buyers
  • Median age of a home buyer is 44 with a gross household income of $84.5k
  • There is a bias towards lending to married households with a 65% share among home buyers
@SantoshSrinivas79
SantoshSrinivas79 / Install bleeding-edge Fish via PPA on Ubuntu.md
Last active August 29, 2015 14:15
Install bleeding-edge Fish via PPA on Ubuntu

#Install bleeding-edge Fish via PPA on Ubuntu

Fish has become my favorite terminal of choice. Here is a shortened version of the install steps mostly obtained from Install Fish Shell on Mac OS X and Ubuntu | Hacker Codex

Install the nightly version of Fish

sudo add-apt-repository ppa:fish-shell/nightly-master
sudo apt-get update
@SantoshSrinivas79
SantoshSrinivas79 / Setting up PyroCMS on NGINX.md
Last active August 29, 2015 14:16
Setting up PyroCMS on NGINX

#Setting up PyroCMS on NGINX

First login through the WWW user.

##Download files

Download the files using s3cmd. You will need both the database and application files.

##Database setup Create the database

@SantoshSrinivas79
SantoshSrinivas79 / Creating and Deploying a Meteor App on Digital Ocean.md
Last active August 29, 2015 14:16
Creating and Deploying a Meteor App on Digital Ocean

#Creating and Deploying a Meteor App on Digital Ocean

##Install mup

Install mup from arunoda/meteor-up by running the following command

npm install -g mup
@SantoshSrinivas79
SantoshSrinivas79 / Running Meteor in Windows.md
Last active August 29, 2015 14:17
Running Meteor in Windows
@SantoshSrinivas79
SantoshSrinivas79 / Customizing the Boonex Dolphin Theme for Shaadi Cafe.md
Last active August 29, 2015 14:17
Customizing the Boonex Dolphin Theme for Shaadi Cafe

Customizing the Boonex Dolphin Theme for Shaadi Cafe

Structure

The main files used in customizing the layout and structure of the boonex dolphin templates are in the templates directory.

The key files are in:

  • templates\base
@SantoshSrinivas79
SantoshSrinivas79 / Creating a meteor page that uses TechanJS.md
Last active August 29, 2015 14:18
Creating a meteor page that uses TechanJS

#Creating a meteor page that uses TechanJS

We will use TechanJS | Financial charting and technical analysis on D3 to create a fancy looking stock chart on top of Meteor

Steps to be followed:

  • Create a router entry to point to the custom page
  • Create a template that will contain the chart
  • Load the required libraries using Template.onRendered
  • Render the javascript at the right time
@SantoshSrinivas79
SantoshSrinivas79 / Using UnoCoin to buy and manage BitCoins for personal purposes.md
Last active August 29, 2015 14:18
Using UnoCoin to buy and manage BitCoins for personal purposes

#Using UnoCoin to buy and manage BitCoins for personal purposes

I plan to use UnoCoin to create an SIP for BitCoin. Unocoin | India's Bitcoin Wallet

###Risk There are some things you need to understand before getting started with Bitcoin. Bitcoin transactions are irreversible. The Bitcoins you buy will be sent to your Unocoin wallet or to your own bitcoin address provided. If you lose or delete your own bitcoin wallet, you will lose your Bitcoins in it and we can’t help you to restore them. Remember to backup and secure your wallet. The Bitcoin market is very volatile and prone to bubbles and rapid price swings. The market price changes over time so your Bitcoins may be worth less in the future. In fact, they may even become completely worthless. Bitcoin is not backed by any entity. Neither Unocoin nor anyone else has an obligation to buy back your Bitcoins in the future. Never spend more money on bitcoins than you can afford to lose.

###UnoCoin Terms and Conditions

TERMS AND C

@SantoshSrinivas79
SantoshSrinivas79 / Quickly Manipulating data on the Clipboard using R .md
Last active August 29, 2015 14:20
Quickly Manipulating data on the Clipboard using R

#Quickly Manipulating data on the Clipboard using R

So, I was preparing my Resume and had to calculate the # of years of "work experience".

Old habits die hard, so typed the experience history on Microsoft Excel.

The command to read the clipboard is:

data <- read.table(pipe("pbpaste"), sep="\t", header=T)