Skip to content

Instantly share code, notes, and snippets.

View jonnydubowsky's full-sized avatar

Jonny Dubowsky jonnydubowsky

View GitHub Profile
@jonnydubowsky
jonnydubowsky / devmachine.ps1
Created November 5, 2019 06:11 — forked from kasuken/devmachine.ps1
Boxstarter script for a dev machine
#####################
# PREREQUISITES
#####################
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Set-TaskbarSmall
# Powershell
cinst PowerShell
cinst poshgit
@jonnydubowsky
jonnydubowsky / peopleCounter.py
Created May 31, 2018 15:48 — forked from jotathebest/peopleCounter.py
Pedestrian detector that sends people counter results to Ubidots. Libraries: OpenCV, requests, imutils
from imutils.object_detection import non_max_suppression
import numpy as np
import imutils
import cv2
import requests
import time
import argparse
import time
'''
@jonnydubowsky
jonnydubowsky / facebook-contact-info-summary.rb
Created March 23, 2018 01:33 — forked from dylanmckay/facebook-contact-info-summary.rb
A Ruby script for collecting phone record statistics from a Facebook user data dump
#! /usr/bin/env ruby
# This script can be used to parse and dump the information from
# the 'html/contact_info.htm' file in a Facebook user data ZIP download.
#
# It dumps all cell phone call + SMS message + MMS records, plus a summary of each.
#
# Place this script inside the extracted Facebook data download folder
# alongside the 'html' folder.
#