Skip to content

Instantly share code, notes, and snippets.

@SantoshSrinivas79
SantoshSrinivas79 / Startups in Real Estate.md
Last active November 2, 2015 12:55
Startups in Real Estate

Startups in Real Estate

Here is a list of startup in Real Estate and related verticals that come my way:

  • Open Listings
    • Launched in Oct-2015
    • Focused on finding Homes Near Work
    • Idea: Uses Googles Distance Matrix API to gauge closeness to work
    • Proposition:
  • Well paid individual will pay extra $ to live close to work
@SantoshSrinivas79
SantoshSrinivas79 / Black Knight - Innovative Portfolio Monitoring Solutions.md
Created July 8, 2015 15:26
Black Knight - Innovative Portfolio Monitoring Solutions

Black Knight - Innovative Portfolio Monitoring Solutions

Staying informed about changes in the properties securing your loans – or loans you may be acquiring – is key to proactively addressing at-risk loans. Critical and timely indicators can help you more effectively manage risk and improve decision-making to better protect your security interest. Important loan indicators can also support your lead generation efforts.

Black Knight offers a suite of sophisticated portfolio management solutions to help you:

  • Perform due diligence assessments for acquisition
  • Monitor liens to maximize your loss mitigation strategy
  • Minimize potential foreclosure losses
  • Increase customer retention
@SantoshSrinivas79
SantoshSrinivas79 / Running electron using xvfb.md
Last active April 24, 2024 03:09
Running electron using xvfb

Running electron using xvfb

Install xvfb

apt-get install xvfb x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps

Some tips at: xvfb init script for Ubuntu

@SantoshSrinivas79
SantoshSrinivas79 / Visualizing state date buried in a PDF.md
Last active August 29, 2015 14:23
Visualizing state date buried in a PDF

Visualizing state date buried in a PDF

I recently came across a common problem of visualizing simple state level data captured in PDFs as a choropleth. The data is from an significantly well researched report on housing data

tabulapdf/tabula works quite well in extracting data. Yeah! Even on a windows machine!

Now, that we have got the data, let us create the state choropleth.

@SantoshSrinivas79
SantoshSrinivas79 / AADHARHACKATHON Results from Jun-2015.md
Last active August 29, 2015 14:23
AADHARHACKATHON Results from Jun-2015
@SantoshSrinivas79
SantoshSrinivas79 / Business Models, Commercialization and Healthy Discussions.md
Last active August 29, 2015 14:23
Business Models, Commercialization and Healthy Discussions
@SantoshSrinivas79
SantoshSrinivas79 / Using the command line on a terminal like a pro.md
Last active December 13, 2020 02:32
Using the command line on a terminal like a pro

Using the command line on a terminal like a pro

The terminal is extremely powerful and it is now my topmost choice in coding. Here are some useful commands for common tasks that will hopefully help appreciate the power of the command line!

  • List files sorted by time
    • ls -lt
  • List of files sorted by size
    • ls -alS
  • List of files from s3 ... only name:
  • s4cmd ls s3://tempbin/ | grep zerod_archive_ | awk '{print $NF}' | head
@SantoshSrinivas79
SantoshSrinivas79 / Resizing Images in nodeJS.md
Last active August 29, 2015 14:23
Resizing Images in nodeJS

Resizing Images in nodeJS

Sharp

Resize images using lovell/sharp

Installation