Skip to content

Instantly share code, notes, and snippets.

View mxdi9i7's full-sized avatar
:octocat:
Author of Vant-React and A.C.C.B. VSCE

Peter Zheng mxdi9i7

:octocat:
Author of Vant-React and A.C.C.B. VSCE
  • thirtymadison
  • New York
View GitHub Profile
@patpohler
patpohler / Big List of Real Estate APIs.md
Last active June 26, 2024 21:36
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.

@learncodeacademy
learncodeacademy / webpack.config.js
Created January 8, 2016 03:55
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"