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 python3 | |
| ''' | |
| MIT License | |
| Copyright © 2026 Jordan Irwin (AntumDeluge) | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to |
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
| [alias] | |
| # use custom alias instead of `git remote` to exclude possible third party forks | |
| myremotes = !echo # add remote names here | |
| fetchmaster = "!f() { echo \"Fetching branch master ...\"; for r in `git myremotes`; do git fetch ${r} refs/heads/master; done; }; f" | |
| pushmaster = "!f() { echo \"Pushing branch master ...\"; for r in `git myremotes`; do git push ${r} master:master; done; }; f" | |
| pushbranch = "!f() { b=`git branch --show-current` && echo \"Pushing branch ${b} ...\"; for r in `git myremotes`; do git push ${r} refs/heads/${b}; done; }; f" | |
| pushfbranch = "!f() { b=`git branch --show-current` && echo \"Force pushing branch ${b} ...\"; for r in `git myremotes`; do git push -f ${r} refs/heads/${b}; done; }; f" | |
| pushtags = "!f() { echo \"Pushing tags ...\"; for r in `git myremotes`; do git push --tags ${r}; done; }; f" |
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 python3 | |
| ''' | |
| MIT License | |
| Copyright © 2026 Jordan Irwin (AntumDeluge) | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to |
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 python3 | |
| ''' | |
| MIT License | |
| Copyright © 2026 Jordan Irwin (AntumDeluge) | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to |
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 bash | |
| classpath="./:./libs/*:./build/build_stendhaltools/:./build/build_server/:./build/build_server_script/:./build/build_server_maps/:./build/build_server_xmlconf/" | |
| defines=() | |
| params=() | |
| for arg in "$@"; do | |
| echo "${arg}" | grep -q "^\-D"; | |
| ret=$? |
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 bash | |
| ## Creative Commons Zero (CC0) public domain dedication | |
| # | |
| # To the extent possible under law, the author has | |
| # waived all copyright and related or neighboring | |
| # rights to this work. This work is published from: | |
| # The United States. | |
| # | |
| ## For more information see: https://creativecommons.org/publicdomain/zero/1.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
| dark elf knight;9 | |
| Dhohr Nuggetcutter;1 | |
| babybear;11 | |
| assassin;151 | |
| dark elf general;8 | |
| littlewizard;44 | |
| djinn;29 | |
| barbarian chaman;4 | |
| elf bodyguard;8 | |
| bat;89 |
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 python | |
| ## The MIT License (MIT) | |
| # | |
| # Copyright © 2022 Jordan Irwin (AntumDeluge) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in | |
| # the Software without restriction, including without limitation the rights to | |
| # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
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 python | |
| # License header: | |
| # | |
| # The MIT License (MIT) | |
| # | |
| # Copyright (c) 2021 Jordan Irwin (AntumDeluge) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in |
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 bash | |
| # place this file in mod ".ldoc" directory | |
| d_config="$(dirname $(readlink -f $0))" | |
| cd "${d_config}/.." | |
| d_root="$(pwd)" |
NewerOlder