Skip to content

Instantly share code, notes, and snippets.

View carlosparadis's full-sized avatar

Carlos Paradis carlosparadis

View GitHub Profile
vagrant@precise64:~/projects/storm$ codeface run -c /vagrant/codeface.conf -p storm.conf results/ git-repo/
2016-04-28 12:08:59 [codeface.configuration] MainProcess INFO: No revision range specified in configuration, analyzing history in 3 month increments
2016-04-28 12:09:00 [codeface.project] MainProcess INFO: => Setting up project 'storm'
2016-04-28 12:09:00 [codeface.dbmanager] MainProcess ERROR: Release number 0 changed tag from 0.9.0 to 9edcf177ce7210d7ee7f857dedf0747e5bdb4105. Recreating project.
2016-04-28 12:09:00 [codeface.dbmanager] MainProcess WARNING: Deleting and re-creating project storm/proximity.
2016-04-28 12:09:02 [codeface.dbmanager] MainProcess INFO: Adding 20 new releases...
2016-04-28 12:09:02 [codeface.util] MainProcess INFO: -> Revision range 9edcf177ce7210d7ee7f857dedf0747e5bdb4105..b29176a08398abeb2dbda762c173f708a1abbb5e: Analysing commits.
#remove namespace
#http://effbot.org/zone/element-namespaces.htm
def normalize(name):
if name[0] == "{":
uri, tag = name[1:].split("}")
return tag
else:
return name
#Find root node
#! /usr/bin/env Rscript
## This file is part of Codeface. Codeface is free software: you can
## redistribute it and/or modify it under the terms of the GNU General Public
## License as published by the Free Software Foundation, version 2.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
## FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
d3 = function() {
var d3 = {
version: "3.2.7"
};
if (!Date.now) Date.now = function() {
return +new Date();
};
var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window;
try {
d3_document.createElement("div").style.setProperty("opacity", 0, "");
@carlosparadis
carlosparadis / LaTeX.sublime-build
Created December 25, 2019 03:54 — forked from evgenyneu/LaTeX.sublime-build
LaTeX build file for Sublime Text 3 for MacOS. Builds PDF (Command-B) and bibliography (Shift-Command-B).
{
"cmd": ["/Library/TeX/texbin/pdflatex","$file"],
"selector": "text.tex.latex",
"variants": [
{
"name": "Build Bibliography",
"cmd": ["/Library/TeX/texbin/bibtex","$file_base_name"],
}
]
}