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
| package eu.kennytv; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| /** | |
| * @author KennyTV on 07.10.2020 | |
| */ | |
| public class BBCodeConverter { |
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
| import java.io.File; | |
| import java.io.IOException; | |
| public class TmpDirExample { | |
| public static void main(String[] args) { | |
| String tmpdir = System.getProperty("java.io.tmpdir"); | |
| System.out.println("The default value of the java.io.tmpdir system property is: \"" | |
| + tmpdir + "\"\n"); |
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
| package bootstrap; | |
| public final class Bootstrap { | |
| public static void main(String[] args) { | |
| new TomcatServer("../project/module").boot(8080); | |
| } | |
| private Bootstrap() {} |
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
| var HashTable = function() { | |
| this._storage = []; | |
| this._count = 0; | |
| this._limit = 8; | |
| } | |
| HashTable.prototype.insert = function(key, value) { | |
| //create an index for our storage location by passing it through our hashing function | |
| var index = this.hashFunc(key, this._limit); |
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 | |
| # save the file as <git_directory>/.git/hooks/pre-commit | |
| echo "Running Maven clean test for errors" | |
| # retrieving current working directory | |
| CWD=`pwd` | |
| MAIN_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| # go to main project dir | |
| cd $MAIN_DIR/../../ |