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 | |
| d=$(pwd) | |
| lastDirectoryComponent=${d##*/} | |
| title=$lastDirectoryComponent | |
| if [ -n "$1" ]; then | |
| title="$1 ($lastDirectoryComponent)" |
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 | |
| # Page watcher Cronscript | |
| # initial 201804xx | |
| if [ $# -lt 1 ] ; then | |
| echo "pagewatcher watches an url and sends an e-mail in case of changes." | |
| echo | |
| echo "usage: pagewatcher.sh url [additional-mail-recipients] | clean" | |
| echo |
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
| @ECHO OFF | |
| REM Windows version | |
| REM call make-nxm <image-filename> rows columms [postfilter-command] | |
| IF (%1)==() GOTO HELP | |
| IF (%2)==() GOTO HELP | |
| IF (%3)==() GOTO HELP | |
| SET POSTFILTER=%~4 %~5 %~6 %~7 %~8 %~9 | |
| IF (%4)==() SET POSTFILTER=-gaussian-blur 0.5x0.5 |
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 | |
| # LINUX convert \( aa.png aa.png aa.png aa.png aa.png +append \) \( aa.png aa.png aa.png aa.png aa.png +append \) -append -gaussian-blur 0.5x0.5 x.png | |
| # call make-nxm <image-filename> rows columms [postfilter-command] | |
| if [ $# -lt 3 ] ; then | |
| echo | |
| echo "Create a composed n x m image from a single image" |
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <script type="text/javasc |
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
| apply plugin: 'android-sdk-manager' | |
| apply plugin: 'com.android.application' | |
| apply plugin: 'com.jakewharton.hugo' | |
| apply from: '../config/quality.gradle' | |
| import com.android.ddmlib.DdmPreferences | |
| import java.util.concurrent.TimeUnit | |
| // Copy the signing.properties.sample file to ~/.sign/signing.properties and adjust the values. |
NewerOlder