Skip to content

Instantly share code, notes, and snippets.

@SantoshSrinivas79
SantoshSrinivas79 / Personal fitness goal tracker.md
Last active August 29, 2015 14:22
Personal fitness goal tracker

#Personal fitness goal tracker

PTGT is a platform to monitor and plan the progress and discipline of my fitness goals.

  • Daily Metrics of Body
    • Weight
    • Heart Rate
  • Daily Exercise Chart
    • Time In
  • Time Out
@SantoshSrinivas79
SantoshSrinivas79 / Exporting MongoDB from one server to another.md
Last active June 22, 2016 02:55
Exporting MongoDB from one server to another

#Exporting MongoDB from one server to another

##Dumping the database

Source: mongodump — MongoDB Manual 3.0.3

mongodump --host mongodb1.example.net --port 37017 --username user --password pass --out /opt/backup/mongodump-2011-10-24
@SantoshSrinivas79
SantoshSrinivas79 / Restoring MySQL database in Rescue mode.md
Last active August 29, 2015 14:22
Restoring MySQL database in Rescue mode
@SantoshSrinivas79
SantoshSrinivas79 / Using a custom template to render an array field in Meteor.md
Last active August 29, 2015 14:21
Using a custom template to render an array field in Meteor
@SantoshSrinivas79
SantoshSrinivas79 / Startups in Financial Services.md
Last active September 12, 2016 23:09
Startups in Financial Services

#Startups in Financial Services

  • LearnVest - Financial Planning Services for Women. For $19 a month, plus a $299 set-up fee, get a financial plan, automated budget management tools organized with to-do lists and goals, and advice from human financial planners.
  • Check - Billpay app
  • Motif Investing - Buy a bucket of up to 30 stocks (a motif) built around a hot idea like CleanTech or 3-D printing for just $9.95. Buy basic Motifs made up of index ETFs for free.
  • Wealthfront - For 0.25% of invested assets a year above $10,000 (below that is free), manages your asset allocation using index ETFs. Helps Twitter and Facebook workers diversify out of company stock.
  • Personal Capital - High-end “wealth management,” including human planners and tax-saving computerized index-style investing (using individual stocks) for 0.95% of assets a year, falling in steps to 0.75% above $5 million.
  • Betterment - Makes saving and investing easy with automatic debit from your checking and with index ETF portfolios designed for
@SantoshSrinivas79
SantoshSrinivas79 / Case Study - Revaluate.md
Last active August 29, 2015 14:21
Case Study - Revaluate

#Case Study - Revaluate

I recently came across Revaluate. A website that provides New York Apartment Reviews and Ratings. The service is founded by Max Galka. There are some particularly interesting points that I liked about the concept.

  • Niche: The website is focused only on New York and provides specific data of properties in the area.
  • Clear Value Proposition: The value proposition and purpose of the entire website is clearly mentioned and executed in the site - Helping consumers and agents understand the true livabilty of real estate.
start on filesystem and started networking
stop on shutdown
author "Santosh Srinivas"
description "Ghost Upstart Job for Thoughts instance"
version "0.1"
respawn
respawn limit 5 30
@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)