Skip to content

Instantly share code, notes, and snippets.

View wesleym's full-sized avatar

Wesley Moy wesleym

View GitHub Profile
@wesleym
wesleym / passwords.google.com.js
Last active July 20, 2017 18:28
Get google passwords from passwords.google.com
// Working as of July 20, 2017
prvBtnz = document.querySelectorAll('.cXmCRb')
var area = document.createElement('textarea');
area.rows = 20;
area.cols = 100;
document.body.prepend(area);
for (var i = 0; i < prvBtnz.length; i++) {
#!/bin/bash
#
# git-svn-diff originally by (http://mojodna.net/2009/02/24/my-work-git-workflow.html)
# modified by mike@mikepearce.net
# modified by aconway@[redacted] - handle diffs that introduce new files
#
# Generate an SVN-compatible diff against the tip of the tracking branch
# Get the tracking branch (if we're on a branch)
TRACKING_BRANCH=`git svn info | grep URL | sed -e 's/.*\/branches\///'`