I hereby claim:
- I am wesleym on github.
- I am wesleym (https://keybase.io/wesleym) on keybase.
- I have a public key ASDy6K4se2S7pERWPwgirS00jC7meJvmEM0r2Q0cdW5hGQo
To claim this, I am signing this object:
| #!/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\///'` |
| #!/usr/bin/env python3 | |
| from xml.dom.minidom import parse | |
| doc = parse('SearchRequest.xml') | |
| for item in doc.getElementsByTagName('item'): | |
| title = item.getElementsByTagName('title')[0].firstChild.nodeValue | |
| forum_url = None | |
| for custom_field in item.getElementsByTagName('customfield'): |
| import os | |
| swept = [] | |
| for root, dirs, files in os.walk('.', topdown=False): | |
| if root.find('/.svn/') > 0: continue | |
| if files: continue | |
| content = False | |
| for dir in dirs: | |
| if dir != '.svn' and os.path.join(root, dir) not in swept: |
| [INFO] Scanning for projects... | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Reactor Build Order: | |
| [INFO] | |
| [INFO] Sencha GXT Parent Project | |
| [INFO] Sencha GXT | |
| [INFO] Sencha GXT Chart | |
| [INFO] Sencha GXT legacy project | |
| [INFO] Sencha GXT Examples | |
| [INFO] Sencha GXT Release package |
| import os | |
| import re | |
| from PIL import Image, ImageOps | |
| import shutil | |
| import contextlib | |
| sixdigithex = re.compile('#([0-9A-Za-z]{3}(?:[0-9A-Za-z]{3})?)[^0-9A-Za-z]|$') | |
| graypath = 'com.sencha.gxt.ui/src/main/java/com/sencha/gxt/theme/gray/' | |
| for dirpath, dirnames, filenames in os.walk(graypath): |
| #!/bin/sh | |
| curl -o new.out $1 | |
| while ! diff old.out new.out > /dev/null | |
| do | |
| mv new.out old.out | |
| sleep 5 | |
| curl -o new.out $1 | |
| done |
| android { | |
| defaultConfig { | |
| targetSdkVersion 23 | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // 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++) { |
| // Package main is an executable that implements FizzBuzz. | |
| package main | |
| import "fmt" | |
| // main is a complete run of the FizzBuzz program. | |
| func main() { | |
| // Each iteration represents one of the numbers from 1 to 100 | |
| // and corresponds to one line printed to standard output. |