Skip to content

Instantly share code, notes, and snippets.

@omarjackman
omarjackman / Big List of Real Estate APIs.md
Created October 10, 2020 16:40 — forked from patpohler/Big List of Real Estate APIs.md
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

@omarjackman
omarjackman / debug.js
Created November 11, 2015 18:39
script debugging
javascript:(function(){var originalString=localStorage.getItem( 'debug' ),defaultString=(originalString)?originalString:'',debugString=prompt('enter debug string', defaultString);localStorage.setItem('debug',debugString != null ? debugString : defaultString );})();
@omarjackman
omarjackman / rebase.sh
Last active November 10, 2015 20:04
Rebase current branch with an updated version of master
git checkout master && \
git pull && \
git pull origin master && \
git fetch && \
git fetch origin master && \
git checkout - && \
git rebase master -i
@omarjackman
omarjackman / clear-olark-cookies.js
Created November 6, 2015 04:49
Clear olark cookies
// Delete olark cookies so that you can start a new chat without waiting 45 minutes.
[ '_ok', '_okac', '_okbk', '_okdetect', '_okgid', '_okla', '_oklv' ].forEach( function( name ) {
document.cookie = name + '=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;';
} );
window.location.reload();
@omarjackman
omarjackman / script.js
Created September 29, 2015 22:53
Scriptlet for clearing everything in localStorage except debug scope names
javascript:(function(){var originalString=localStorage.getItem( 'debug' );localStorage.clear();localStorage.setItem('debug',originalString);console.log('localStorage cleared!!!')})();
@omarjackman
omarjackman / script.js
Created September 29, 2015 22:51
Scriptlet for setting debug scopes
javascript:(function(){var originalString=localStorage.getItem( 'debug' ),defaultString=(originalString)?originalString:'',debugString=prompt('enter debug string', defaultString);localStorage.setItem('debug',debugString != null ? debugString : defaultString );})();