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
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Generates a 3D model out of multiple photographs using :: | |
:: COLMAP and openMVS. See https://peterfalkingham.com/ for more :: | |
:: information about photogrammetrie. :: | |
:: :: | |
:: Note that the COLMAP library folder needs to be added to the :: | |
:: PATH environment variable in order for this script to work. :: | |
:: :: | |
:: Copyright 2018, Peter Falkingham (v1.0, v1.1) :: | |
:: Copyright 2018, Nikolaus Krismer (v1.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
#!/bin/bash | |
# You must accept the Oracle Binary Code License | |
# http://www.oracle.com/technetwork/java/javase/terms/license/index.html | |
# | |
# @author 2014-2017 n0ts <[email protected]> (https://gist.github.com/n0ts/40dd9bd45578556f93e7) | |
# @author 2018 niko <[email protected]> (https://gist.github.com/nikolauskrismer/d0818c3e27d18bc7a25e6c5c197f42c6) | |
# | |
# usage: get_oracle_jdk_linux_x64.sh <jdk_version> <ext> | |
# |
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
#! /bin/bash | |
################################################################################ | |
# Name: # | |
# copyToGallery.sh # | |
# # | |
# Description: # | |
# Copies images and movies from a src directory to a destination directory. # | |
# This is most useful for keeping raw files in one folder, while providing # | |
# jpg files in a (piwigo) web gallery # |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | |
<!-- | |
Checkstyle-Configuration: NKrChecks | |
Description: | |
Slightly modified version of Sun Checks that better matches the default code formatter setting of Eclipse. | |
--> | |
<module name="Checker"> | |
<property name="severity" value="warning"/> | |
<module name="TreeWalker"> |
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
/* | |
* Version handling checkstyke_nkrchecks.xml download | |
*/ | |
apply plugin: 'checkstyle' | |
checkstyle { | |
configFile = file("${buildDir}/checkstyle.xml") | |
ignoreFailures = true | |
showViolations = false | |
toolVersion = '+' |
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
buildscript { | |
repositories { | |
maven { | |
url "https://plugins.gradle.org/m2/" | |
} | |
} | |
dependencies { | |
classpath "org.ajoberstar:grgit:+" | |
} |