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 | |
# | |
# A simple bash script to build and run a single kotlin file | |
# with build cache to only re compile if source file changes | |
# | |
# Copyright (C) 2023 Joe Baker (JoeBlakeB) | |
# This program is free software under the GPLv3 license. | |
# | |
if [[ $1 == "-h" || $1 == "--help" ]]; then |
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
#!/usr/bin/env python3 | |
# Copyright (C) 2022 Joe Baker (JoeBlakeB) | |
# This program is free software under the GPLv3 license. | |
# | |
# This script is used to update the version number in the Discord | |
# build_info.json file so that you do not need to manually update it, | |
# or wait for the package maintainer to update it. | |
# Discord will instead open normally and will not prompt you to update. | |
# | |
# Requirements: python3 and requests |
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
#!/usr/bin/env python | |
# | |
# MapGenieDownloader.py - v2.1 | |
# | |
# Copyright (C) 2022 Joe Baker (JoeBlakeB) | |
# This program is free software under the GPLv3 license. | |
# | |
# Download a high resolution maps from mapgenie.io | |
# May not work on all games, only tested with tarkov and forza | |
# |
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
#!/usr/bin/env python | |
# | |
# Copyright (C) 2022 Joe Baker (JoeBlakeB) | |
# This program is free software under the GPLv3 license. | |
# | |
# Notification to switch between bumblebee and optimus-manager. | |
# | |
# Requires python3, bumblebee, optimus-manger, and notify-send | |
# | |
# This file only works if you have something in the /etc/sudoers file like: |
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
/** | |
* Bournemouth University Level 4 Data and Databases coursework 2021 | |
* An SQL database for a care home for tracking residents, their care, and the carers. | |
* Designed for Oracle SQL | |
* | |
* Copyright (c) 2021 JoeBlakeB (Joe Baker), All Rights Reserved. | |
**/ | |
-- CREATE SCRIPTS |
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
/** | |
* Dark Theme for Brockenhurst Colleges eBrock website | |
* by JoeBlakeB (Joe Baker) 2020 | |
* | |
* As I left Brock in 2021, this will not receieve any updates | |
* and might no longer work, anyone is free to do whatever they | |
* want with this code. | |
* | |
* This is free software under the GPLv3 license. | |
***/ |
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
#!/usr/bin/env python3 | |
# | |
# A basic cipher using XOR to encode a message using a password of the same | |
# length. The script takes two arguments, the message and the password. | |
# Decoding works exactly the same way except the message is replaced with | |
# the encoded message, and the same password must be used | |
# | |
# Usage: | |
# ./VernamCipher.py {message} {password} | |
# |
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
#!/usr/bin/env python3 | |
# | |
# Minecraft Assets Extractor | |
# by JoeBlakeB | |
# github.com/JoeBlakeB | |
# | |
# Example command: | |
# Extract.py C:\Users\<user>\AppData\Roaming\.minecraft\assets "C:\Users\<user>\Documents\Minecraft Assets" 1.16 | |
# |