Skip to content

Instantly share code, notes, and snippets.

{
"game": [
{
"type": "header",
"data": {
"title": "Game"
}
},
{
"type": "numbervalue",
package com.primetoxinz;
import net.minecraft.block.BlockLog;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.util.ResourceLocation;
@primetoxinz
primetoxinz / Server-Setup.md
Created February 24, 2018 00:36
Server Setup
  • Create VirtualBox VM for Ubuntu using the Ubuntu Mini.iso 16.04
  • Go through the basic installation process for Ubuntu
  • Restart into the installed OS
  • Login into the created user odu_user
  • Install Vim sudo apt install vim
  • Edit /etc/network/interfaces
    • Comment out iface enp0s3 inet dhcp
    • Add

address 10.0.2.15

package frc.team1793.robot;
import com.sun.javafx.geom.Vec2d;
import javafx.animation.AnimationTimer;
import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.Timeline;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
//LogStream for outputting to both cout and a file to save on code duplication
struct LogStream {
ofstream outputFile;
LogStream(): outputFile("output.txt") {}
template<typename T>
LogStream &operator<<(const T &mValue) {
std::cout << mValue;
outputFile << mValue;
@primetoxinz
primetoxinz / CreateUser.ps1
Created March 6, 2018 16:58
Create User for AD
param (
[string]$path,
[string]$first_name,
[string]$last_name,
[string]$user_name,
[string]$password
)
function CreateUser {
param (
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Injecting existing registry data into this client instance
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:redstone_alloy_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:reinforced_metal_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:redstone_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:enhanced_galgadorian_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:platinum_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world contenttweaker:galgadorian_molten
[18:58:49] [Netty Epoll Client IO #0/INFO] [FML]: Registry Block: Found a missing id from the world
This file has been truncated, but you can view the full file.
[PREINITIALIZATION][CLIENT][INFO] com.teamacronymcoders.contenttweaker.modules.vanilla.resources.materials.MaterialBracketHandler is missing a BracketHandler annotation, setting the priority to 10
[PREINITIALIZATION][CLIENT][INFO] com.teamacronymcoders.contenttweaker.modules.vanilla.resources.sounds.SoundEventBracketHandler is missing a BracketHandler annotation, setting the priority to 10
[PREINITIALIZATION][CLIENT][INFO] com.teamacronymcoders.contenttweaker.modules.vanilla.resources.sounds.SoundTypeBracketHandler is missing a BracketHandler annotation, setting the priority to 10
[PREINITIALIZATION][CLIENT][INFO] com.teamacronymcoders.contenttweaker.modules.vanilla.resources.BlockBracketHandler is missing a BracketHandler annotation, setting the priority to 10
[PREINITIALIZATION][CLIENT][INFO] Loading scripts
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[2000:crafttweaker]: transformers.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INF

Windows 1

Definitions

  • LDAP - The Lightweight Directory Access Protocol is a protocol for maintaining and accessing distributed directory information over an IP network. A client connects to a Directory System Agent (DSA), an LDAP server, via TCP and UDP port 389 or 636 for LDAPS. All information is transmitted using Basic Encoding Rules (BER).

  • Kerberos - A Computer network authentication protocol that works on the basis of tickets to allow nodes communicating over a non-secure network to prove their identity to one another in a secure manner.

  • Distribution groups are a feature in AD that allow sending emails to multiple people that are added to the contact list of the group within the domain. Permissions cannot be assigned in a DG.

{
"path": "mod_betterwithmods/bwm_hemp.json",
"enabled": true,
"id": "bwm_hemp",
"plant_name": "Hemp",
"seed_name": "Hemp Seeds",
"seed_items": [
{
"item": "betterwithmods:hemp",
"meta": 0,