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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemalocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>MavenRobot</groupId> | |
<artifactId>MavenRobot</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<name>MavenRobot</name> | |
<description>This is an example maven project to run Java code one the EV3 brick</description> | |
<properties> |
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
From 6b679b2d1c9918fc817ddcf6e5dbd2bc4d28330a Mon Sep 17 00:00:00 2001 | |
From: Pieter Muller <[email protected]> | |
Date: Wed, 3 Apr 2013 12:54:54 +0200 | |
Subject: [PATCH] Hacked to work with repo names with spaces on Win | |
I wrapped the arguments for the generated git commands in quotations, | |
and removed the code replacing spaces with escaped spaces. | |
I don't know if this will work on Linux, I only tested it on Windows. | |
--- | |
lib/svn2git/migration.rb | 14 +++++++------- |
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
# <author>Pieter Muller</author> | |
# <date>2013-03-05</date> | |
# <note>Targets Python 2.7</note> | |
import sqlite3 as sqlite | |
import sys | |
if __name__ == "__main__": | |
if (len(sys.argv) != 3): | |
print "\n\tRequires two arguments:" |
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
------------------------------------------------------------ | |
C:\Python27\Scripts\pip-script.py run on 02/27/13 19:13:01 | |
Downloading/unpacking numpy | |
Getting page https://pypi.python.org/simple/numpy/ | |
URLs to search for versions for numpy: | |
* https://pypi.python.org/simple/numpy/ | |
Getting page http://numpy.scipy.org | |
Could not fetch URL http://numpy.scipy.org (from https://pypi.python.org/simple/numpy/): HTTP Error 403: Forbidden | |
Will skip URL http://numpy.scipy.org when looking for download links for numpy |
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
------------------------------------------------------------ | |
C:\Python27\Scripts\pip-script.py run on 02/27/13 16:56:48 | |
Downloading/unpacking numpy | |
Running setup.py egg_info for package numpy | |
non-existing path in 'numpy\\distutils': 'site.cfg' | |
F2PY Version 2 |
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
import glob | |
import sys | |
import os | |
import sqlite3 as sqlite | |
def LoadScripts(scriptFolder): | |
''' Returns a list of module references ''' | |
# Find Script Files: | |
scriptFiles = glob.glob(os.path.join(scriptFolder, "Script*.py")) | |
print "Found %d Script Files" % (len(scriptFiles)) |
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
# <author>Pieter Muller</author> | |
# <date>2012-11-14</date> | |
import sys | |
import sqlite3 as sqlite | |
tablesToIgnore = ["sqlite_sequence"] | |
outputFilename = None |