Skip to content

Instantly share code, notes, and snippets.

View DoubleDeez's full-sized avatar

Dylan Dumesnil DoubleDeez

View GitHub Profile
#!/bin/bash
# Minecraft Server Installation Script - James A. Chambers - https://jamesachambers.com
#
# Instructions: https://jamesachambers.com/minecraft-bedrock-edition-ubuntu-dedicated-server-guide/
# To run the setup script use:
# wget https://raw.githubusercontent.com/TheRemote/MinecraftBedrockServer/master/SetupMinecraft.sh
# chmod +x SetupMinecraft.sh
# ./SetupMinecraft.sh
#
# GitHub Repository: https://github.com/TheRemote/MinecraftBedrockServer
#!/bin/bash
# Minecraft Server Installation Script - James A. Chambers - https://jamesachambers.com
#
# Instructions: https://jamesachambers.com/minecraft-bedrock-edition-ubuntu-dedicated-server-guide/
# To run the setup script use:
# wget https://raw.githubusercontent.com/TheRemote/MinecraftBedrockServer/master/SetupMinecraft.sh
# chmod +x SetupMinecraft.sh
# ./SetupMinecraft.sh
#
# GitHub Repository: https://github.com/TheRemote/MinecraftBedrockServer
.mtk3 {
color: #61ff69;
text-shadow: 0 0 2px #001716, 0 0 5px #03edf933, 0 0 10px #ffff6633;
}
.mtk6 {
color: #61e2ff;
text-shadow: 0 0 2px #001716, 0 0 5px #03edf933, 0 0 10px #ffff6633;
}
@DoubleDeez
DoubleDeez / keybindings.json
Last active December 5, 2023 10:16
VSCode Visual Assist Key Bindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "alt+g",
"command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "f12",
"command": "-editor.action.revealDefinition",
@DoubleDeez
DoubleDeez / ExampleFieldNotifyObject.cpp
Created September 27, 2022 20:01
Example FieldNotify Classes
#include "ExampleFieldNotifyObject.h"
void UExampleFieldNotifyObject::SetMyValue(int32 InValue)
{
if (MyValue != InValue)
{
MyValue = InValue;
// FFieldNotificationClassDescriptor::MyValue is auto-generated by UHT
BroadcastFieldValueChanged(FFieldNotificationClassDescriptor::MyValue);
}