Skip to content

Instantly share code, notes, and snippets.

@SantoshSrinivas79
SantoshSrinivas79 / vim.rb
Last active August 29, 2015 13:57 — forked from mgrouchy/vim.rb
require 'formula'
class Vim < Formula
homepage 'http://www.vim.org/'
url 'https://vim.googlecode.com/hg/', :revision => '10d35c8b50e3'
version '7.4'
def features; %w(tiny small normal big huge) end
def interp; %w(lua mzscheme perl python python3 tcl ruby) end
@SantoshSrinivas79
SantoshSrinivas79 / PyroCMS Navigation Markup for Twitter Bootstrap.html
Created March 11, 2014 06:33
PyroCMS Navigation Markup for Twitter Bootstrap
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container">
<ul id="menu-menu" class="nav">
{{ navigation:links group="header" class="active" more_class="dropdown"
}}{{ /navigation:links }}
</ul>
<div class="mobile-menu">
<div class="menu-mobile-container">
<div class="mobile-menu">
@SantoshSrinivas79
SantoshSrinivas79 / PyroCMS Navigation Markup for Bootstrap with DropDown.html
Created March 12, 2014 07:40
PyroCMS Navigation Markup for Bootstrap with DropDown
{{ navigation:links group="header" }}
{{ if class == 'has_children' }}
{{ title }}
{{ else }}
{{ if class == 'current' or class == 'first current' or class == 'last current' }}
{{ else }}
{{ endif }}
{{ title }}
@SantoshSrinivas79
SantoshSrinivas79 / PyroCMS CSS styling to emulate Bootstrap Dropdown.css
Created March 12, 2014 07:49
PyroCMS CSS styling to emulate Bootstrap Dropdown
/* Dropdown */
#main-nav ul ul {
left: -25px;
padding: 0;
position: absolute;
top: 45px;
visibility:hidden;
}
@SantoshSrinivas79
SantoshSrinivas79 / meteoric_progrez.sh
Created May 17, 2014 12:27
Script to run progrez once bundle is completed
export MONGO_URL=mongodb://localhost:27017/progrez
export PORT=3000
export ROOT_URL=http://www.progrez.in/
forever start bundle/main.js
@SantoshSrinivas79
SantoshSrinivas79 / gist:a12938a5fb37a4bdd9ff
Last active August 29, 2015 14:14
Creating Public Gist using Sublime Text
This post is to create a public gist using Sublime Text.
The plugin used to create this plugin [condemil/Gist](https://github.com/condemil/Gist)
It works really smoothly!
Lots of gist clients listed at: [A list of Gist clients.](https://gist.github.com/defunkt/370230)
I think I will freeze on [Gisto/Gisto](https://github.com/Gisto/Gisto). It seems to work really well!
@SantoshSrinivas79
SantoshSrinivas79 / 0_reuse_code.js
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@SantoshSrinivas79
SantoshSrinivas79 / startups-in-finance.md
Last active August 29, 2015 14:14
Startups in Finance

#Startups in Finance

There have been lots of very interesting startups make substantial public news over the past 12 months. I will try to cover the interesting ones and cover observations of interest in this post.

  1. Lending Club
  2. OnDeck
  3. Zidisha
  4. Funding Circle Launches Fractional Loan Marketplace
@SantoshSrinivas79
SantoshSrinivas79 / emerging_opportunities_in_real_estate_and_finance.md
Last active August 29, 2015 14:14
Emerging Opportunities in Real Estate and Finance

#Emerging Opportunities in Real Estate and Finance

  • Lending information is still not freely accessible or reliable. CFPB Report Finds Nearly Half of Borrowers Do Not Shop for a Mortgage. Key findings of the report include:
    • Almost 50% of consumers fail to shop around before applying i.e. they are considering only one lender or mortgage broker seriously!
    • 75% of consumers apply only with one lender or broker. The consumers have no idea as they do not apply to multiple lenders to check who can offer them the best deal
    • Most consumers get their information from lenders or brokers who have a stake in their outcome. 70% of consumers rely only on the mortgage broker or lender who have a vested interest in the transaction and hence do not serve the information that would suit the consumers' interest the best
  • Zillow has recently sponsored a contest to [Hack Housing Empowering Sma
@SantoshSrinivas79
SantoshSrinivas79 / Reasons for moving my blog to Meteor.md
Last active August 29, 2015 14:14
Reasons for moving my blog to Meteor

#Reasons for moving my blog to Meteor

I seem to have made up my mind to move my blog to Meteor. I have been using Ghost for a while now and have been very happy with its fulfillment of my blogging requirements.

However, Meteor brings in so much of flexibility that it is hard to ignore! Here are couple of reasons why.

  • Flexibility - A build meteor offers a lot functionalty in creating customized flexible blog pages. Ability to request on-demand templates and render them for specific pages creates immense flexibility. Further, the templates are completely dynamic and enable Template level subscriptions that create immense flexibility related to making the data available on demand!