Artifact ID | <url> value (if any) from pom.xml |
Installs (April 2015) |
---|---|---|
aws-yum-parameter | https://wiki.jenkins-ci.org/display/JENKINS/AWS+Yum+Parameter+Plugin | 17 |
bees-sdk-plugin | 2 | |
build-flow-toolbox-plugin | 317 | |
caliper-ci | https://code.google.com/p/caliper-ci/ | 31 |
chef | https://github.com/melezhik/chef-plugin | 217 |
cloudbees-disk-usage-simple | ||
collabnet-automic-deploy | 31 | |
collabnet-uc4-deploy | 18 |
View gist:998720d4094fcb4599175944afea89bd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH table_scans as ( | |
SELECT relid, | |
tables.idx_scan + tables.seq_scan as all_scans, | |
( tables.n_tup_ins + tables.n_tup_upd + tables.n_tup_del ) as writes, | |
pg_relation_size(relid) as table_size | |
FROM pg_stat_user_tables as tables | |
), | |
all_writes as ( | |
SELECT sum(writes) as total_writes | |
FROM table_scans |
View bad-plugins.md
View gist:13134f71bf489183f3cb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am orrc on github. | |
* I am orrc (https://keybase.io/orrc) on keybase. | |
* I have a public key whose fingerprint is E685 820C 2B9C 15B7 12F8 B329 EA22 F28D 8980 6FEB | |
To claim this, I am signing this object: |
View Bitbucket git push webhook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"canon_url": "https://bitbucket.org", | |
"commits": [ | |
{ | |
"author": "chris_iosphere", | |
"branch": "feature/do-something", | |
"files": [ | |
{ | |
"file": "README.md", | |
"type": "modified" |
View golang.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"releases": [ | |
{ | |
"variants": [ | |
{ | |
"url": "https://go.googlecode.com/files/go1.2.1.darwin-amd64-osx10.8.tar.gz", | |
"osVersion": "osx10.8", | |
"os": "darwin", | |
"arch": "amd64" | |
}, |
View BasicMapActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Compile against nutiteq-3dlib-preview.jar or drop into the HelloMap3D sample | |
import javax.microedition.khronos.opengles.GL10; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.widget.Toast; | |
import com.nutiteq.MapView; | |
import com.nutiteq.components.Bounds; |
View UsageData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.jenkinsci.tools; | |
import java.io.File; | |
import java.io.IOException; | |
import org.codehaus.jackson.JsonFactory; | |
import org.codehaus.jackson.JsonParseException; | |
import org.codehaus.jackson.JsonParser; | |
import org.codehaus.jackson.JsonToken; |