Skip to content

Instantly share code, notes, and snippets.

@patpohler
patpohler / Big List of Real Estate APIs.md
Last active May 7, 2025 20:21
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.

@jevakallio
jevakallio / reactiveconf-slam-poetry.md
Last active July 7, 2021 19:57
#ReactiveConf 2017 Lightning Talk Submission: JavaScript Slam Poetry

TL;DR: If you want to see me perform a spoken word poem about JavaScript in front of 1000 people (and on video), please ⭐ star this gist. If you're on mobile, you'll need to request desktop site.

JavaScript Slam Poetry

Javascript! Slam! Poetry!

@geerteltink
geerteltink / json-stringify-parse.js
Last active November 5, 2023 16:19
Using JSON.stringify (toJSON) and JSON.parse (fromJSON) to (re)store JavaScript classes
class Commit {
constructor(sha, payload) {
this.sha = sha;
this.repository = payload.repository;
this.created = new Date();
}
toJSON() {
return Object.assign({}, this, {
created: this.created.toString()
@amaankulshreshtha
amaankulshreshtha / Commit message Conventions
Last active July 8, 2019 17:59
commitMessageConventions.md
## FORMAT:
```
<type>[optional scope]: <description>
[optional body]
[optional footer]
```