Skip to content

Instantly share code, notes, and snippets.

View grndvl1's full-sized avatar

John Matthews grndvl1

  • Cars.com
  • Chicago
View GitHub Profile
@YoSoyPhil
YoSoyPhil / README.md
Last active June 14, 2026 22:34
Install Canon EOS Utility 2 full version

How to install Canon EOS Utility 2 full version

EOS Utility 2.14.20a full version install

Go to Canon and select your camera model under software downloads. At the time this guide was written, the link was https://www.canon-europe.com/support/consumer_products/software/eos-utility.html

Select your camera and download "EOS Utility 2.14.20a Updater for Windows" (yes, we will do full install with this file).

Before we can run the installer we need to add a key to our registry.

@JacquesSmuts
JacquesSmuts / build.gradle
Last active November 2, 2021 17:50
Determining versionCode based on CircleCI build number
android {
defaultConfig {
versionName "1.9.1"
versionCode getBuildVersion() as int
}
}
// Don't name this getVersionCode() or things will break
static def getBuildVersion() {
def version = 123
@cjus
cjus / jsonval.sh
Created June 26, 2011 17:42
Extract a JSON value from a BASH script
#!/bin/bash
function jsonval {
temp=`echo $json | sed 's/\\\\\//\//g' | sed 's/[{}]//g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | sed 's/\"\:\"/\|/g' | sed 's/[\,]/ /g' | sed 's/\"//g' | grep -w $prop`
echo ${temp##*|}
}
json=`curl -s -X GET http://twitter.com/users/show/$1.json`
prop='profile_image_url'
picurl=`jsonval`