This file contains hidden or 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
| diff --git a/CMakeModules/FindXerces.cmake b/CMakeModules/FindXerces.cmake | |
| index c292ffb..499fbf5 100644 | |
| --- a/CMakeModules/FindXerces.cmake | |
| +++ b/CMakeModules/FindXerces.cmake | |
| @@ -18,13 +18,13 @@ ${XERCESC_INCLUDE_DIR} | |
| PATH_SUFFIXES xercesc | |
| ) | |
| -FIND_LIBRARY(XERCESC_LIBRARY NAMES xerces-c_3 | |
| +FIND_LIBRARY(XERCESC_LIBRARY NAMES xerces-c_3 xerces-c_3.1 |
This file contains hidden or 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
| diff --git a/CMakeModules/FindXerces.cmake.orig b/CMakeModules/FindXerces.cmake | |
| index 343f53f..a96716f 100644 | |
| --- a/CMakeModules/FindXerces.cmake.orig | |
| +++ b/CMakeModules/FindXerces.cmake | |
| @@ -18,13 +18,13 @@ ${XERCESC_INCLUDE_DIR} | |
| PATH_SUFFIXES xercesc | |
| ) | |
| -FIND_LIBRARY(XERCESC_LIBRARY NAMES xerces-c_3 | |
| +FIND_LIBRARY(XERCESC_LIBRARY NAMES xerces-c_3.1 |
This file contains hidden or 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
| diff --git a/install.sh b/install.sh | |
| index a90ef1b..b6698d7 100755 | |
| --- a/install.sh | |
| +++ b/install.sh | |
| @@ -10,57 +10,60 @@ printf "Installing NITE\n" | |
| printf "***************\n\n" | |
| printf "Copying shared libraries... " | |
| -cp Bin/libXnVNite*$LIBEXT /usr/lib | |
| -cp Bin/libXnVCNITE*$LIBEXT /usr/lib |
This file contains hidden or 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
| WereMac:Formula juan$ brew install -v autogen | |
| ==> Downloading http://ftpmirror.gnu.org/autogen/rel5.14/autogen-5.14.tar.gz | |
| File already downloaded in /Users/juan/Library/Caches/Homebrew | |
| /usr/bin/tar xf /Users/juan/Library/Caches/Homebrew/autogen-5.14.tar.gz | |
| ==> ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/autogen/5.14 | |
| ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/autogen/5.14 | |
| checking build system type... x86_64-apple-darwin10.8.0 | |
| checking host system type... x86_64-apple-darwin10.8.0 | |
| checking target system type... x86_64-apple-darwin10.8.0 | |
| *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* |
This file contains hidden or 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
| # The python built-in option py_compile | |
| python -m py_compile *.py | |
| # Check for errors in python files | |
| pylint -E *.py | |
| # Check for warnings, but still ignore some aesthetic ones | |
| pylint --include-ids=y -d W0312 -d C0103 -d C0111 -d C0301 -d C0324 -d W0614 -d W0401 *.py |
This file contains hidden or 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
| #!/bin/bash | |
| # Install homebrew (taken from http://brew.sh/) | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Add brew to your path | |
| echo "# Prepend homebrew bins to your PATH" >> ~/.bash_profile | |
| echo "export PATH=/usr/local/sbin:/usr/local/bin:/usr/local/Library/Contributions/examples:$PATH" >> ~/.bash_profile | |
| # Tap casallas/vr |
This file contains hidden or 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
| function wLoad() | |
| { | |
| /*Calculate the svg bounds in client terms once the window is loaded*/ | |
| svgCBound = backRect.getBoundingClientRect(); | |
| /*Go to the question start so that less whitespace is shown, in case of small resolutions*/ | |
| location.href = "#questStart"; | |
| /*Play the animation*/ | |
| replay(); | |
| } | |
| function checkBounds() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| #!/usr/bin/env ruby | |
| ARGV.each do|arg| | |
| `wget https://github.com/textmate/#{arg}.tmbundle/archive/master.zip -O #{arg}.tmbundle.zip` | |
| `unzip #{arg}.tmbundle.zip` | |
| `mv #{arg}.tmbundle-master ~/Library/Application\\ Support/TextMate/Managed/Bundles/#{arg}.tmbundle` | |
| `rm #{arg}.tmbundle.zip` | |
| end |
This file contains hidden or 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
| # t-test | |
| ## t(df) = t.comp, p < alpha | |
| ## Compare computed t to tabulated t | |
| qt(1-alpha, df) < t.comp | |
| # F-test | |
| ## F(df1, df2) = f.comp, p < alpha | |
| ## Compare computed f to tabulated f | |
| qf(1-alpha, df1, df2) < f.comp |