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
[ | |
{ | |
"name": "Diversity 2", | |
"version": "0.2.9", | |
"genre": "CTM", | |
"download": "http://addons-origin.cursecdn.com/files/2231/482/D2%20PACKAGE%20-%20UNZIP%20THIS%20FIRST.zip", | |
"url": "http://www.minecraftforum.net/forums/mapping-and-modding/maps/2200445-diversity-2-also-available-on-realms", | |
"creator": "qmagnet", | |
"description": "Diversity 2 is a new form of map. Similar to the CTM style, you are tasked to complete a monument. However, in the Diversity series, the monument blocks are obtained from completing different genre-specific levels.", | |
"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
#!/bin/bash | |
# | |
# Bookbinder by Joel Bergroth | |
# A small script for quick and dirty image to pdf conversion with ocr. For example if your scanner produces multipaged tiffs and you want a small ocr'd pdf for reading on your tablet. | |
# | |
# Requirements: imagemagick, tesseract, scantailor, pdfbeads | |
# | |
# | |
# Simple usage: sh bookbinder [/path/to/folder] | |
# |
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 | |
# Simple install script for Minecraft server | |
# Version 1.2 | |
# Written by Joel Bergroth | |
# | |
# Usage ./install.sh "/full/path/to/desired/server/location" | |
if [ -z "$1" ]; then | |
read -p "Enter full server path: " -e serverpath |