Skip to content

Instantly share code, notes, and snippets.

View ZackWhiteIT's full-sized avatar

Zack White ZackWhiteIT

View GitHub Profile
@Matthew-Hiebing
Matthew-Hiebing / zillow.js
Last active March 31, 2022 15:51 — forked from bryant988/zillow.js
Zillow Image Downloader
/**
* NOTE: this specifically works if the house is for sale since it renders differently.
* This will download the highest resolution available per image.
*/
/**
* STEP 1: Make sure to vertically *SCROLL* through all images so they appear on DOM.
* Do this before clicking on any of the images and entering the viewing modal.
@sempostma
sempostma / windows-terminal-with-powerline.md
Last active April 13, 2024 01:48
Windows Terminal with Powerline

Windows Terminal with Powerline

Result

Install the Windows Terminal App

Install the Windows Terminal from the Microsoft Store. This allows you to always be on the latest version.

Powerline setup

@bryant988
bryant988 / zillow.js
Last active March 29, 2025 20:28
Zillow Image Downloader
/**
* NOTE: this specifically works if the house is for sale since it renders differently.
* This will download the highest resolution available per image.
*/
/**
* STEP 1: Make sure to *SCROLL* through all images so they appear on DOM.
* No need to click any images.
@daredude
daredude / docker-clear.bat
Created June 5, 2016 10:53
delete all docker container and images on windows
@echo off
FOR /f "tokens=*" %%i IN ('docker ps -aq') DO docker rm %%i
FOR /f "tokens=*" %%i IN ('docker images --format "{{.ID}}"') DO docker rmi %%i
@sloria
sloria / bobp-python.md
Last active March 3, 2025 16:09
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens