Skip to content

Instantly share code, notes, and snippets.

View stcalica's full-sized avatar
🎯
Focusing

Kyle Calica stcalica

🎯
Focusing
View GitHub Profile
@gokulkrishh
gokulkrishh / media-query.css
Last active June 2, 2025 17:09
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@patpohler
patpohler / Big List of Real Estate APIs.md
Last active May 28, 2025 00:42
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.

@kevinswiber
kevinswiber / server.js
Last active May 22, 2020 17:11
Reverse Proxy that passes through Postman's proxy to capture incoming HTTP traffic.
// A reverse proxy that captures incoming HTTP traffic and sends it
// through Postman's forward proxy, which forwards traffic to the
// specified target in process.env.TARGET.
// request
// client -> this-proxy -> postman-proxy --|
// |
// target
// response |
// client <- this-proxy <- postman-proxy --|