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
import React, { useState, useEffect } from 'react'; | |
import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, LineChart, Line } from 'recharts'; | |
const TariffWarSimulation = () => { | |
const [usTariffRate, setUsTariffRate] = useState(25); | |
const [retaliationLevel, setRetaliationLevel] = useState(100); | |
const [australiaPosition, setAustraliaPosition] = useState('us-aligned'); | |
const [chinaRefinementBlock, setChinaRefinementBlock] = useState(0); | |
const [ukraineMineralsToEU, setUkraineMineralsToEU] = useState(0); | |
const [russiaControlsUSMinerals, setRussiaControlsUSMinerals] = useState(0); |
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
/* | |
The FPosition struct is defined with a NetSerialize function. This function handles the custom serialization logic for the struct. | |
The UMyHealthComponent class contains a Position property of type FPosition. This property is marked with the Replicated | |
specifier, indicating that it should be considered for replication. | |
The GetLifetimeReplicatedProps function is implemented to tell the Unreal Engine replication system which properties of the | |
UMyHealthComponent should be replicated. In this case, the Position property is added to the list. | |
When the Position property changes on the server, Unreal's replication system will recognize it as "dirty" and will use the |
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
#include "WingSuitComponent.h" | |
#include "GameFramework/CharacterMovementComponent.h" | |
#include "Components/CapsuleComponent.h" | |
UWingSuitComponent::UWingSuitComponent() | |
{ | |
PrimaryComponentTick.bCanEverTick = true; | |
DescentRate = 1000.0f; | |
bIsWingSuiting = false; |
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
#include "SwingComponent.h" | |
#include "GameFramework/CharacterMovementComponent.h" | |
#include "GameFramework/SpringArmComponent.h" | |
#include "Components/CapsuleComponent.h" | |
#include "Components/SceneComponent.h" | |
USwingComponent::USwingComponent() | |
{ | |
PrimaryComponentTick.bCanEverTick = true; |
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
from flask import Flask, request, redirect, url_for, render_template, session, flash | |
import sqlite3 | |
import hashlib | |
import dbMain | |
app = Flask(__name__) | |
app.config["SECRET_KEY"] = "my_secret_key" | |
db_locale = 'igdbaccounts.db' | |
#---------------------------------------------- |
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
public abstract class Bindable : MonoBehaviour, INotifyPropertyChanged | |
{ | |
private readonly Dictionary<string, object> _properties = new Dictionary<string, object>(); | |
private static readonly StackTrace stackTrace = new StackTrace(); | |
public event PropertyChangedEventHandler PropertyChanged; | |
/// <summary> | |
/// Resolves a Property's name from a Lambda Expression passed in. | |
/// </summary> |
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
package com.riagenic.BlockFarmer.core.asm.utils; | |
import com.google.common.collect.Maps; | |
import net.minecraftforge.fml.common.FMLLog; | |
import net.minecraftforge.fml.common.ObfuscationReflectionHelper; | |
import net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.nio.charset.Charset; |
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
public static void RenderFloatingItemIcon(float x, float y, float z, Item item, float partialTickTime, boolean animate) { | |
BlockPos pos = new BlockPos(x,y,z); | |
// Create Empty EntityItem to help with Rendering Positionining. | |
EntityItem entity = new EntityItem(mc.theWorld,pos.getX(),pos.getY(), pos.getZ()); | |
if (entity.ticksExisted == 0) | |
{ | |
entity.lastTickPosX = entity.posX; | |
entity.lastTickPosY = entity.posY; | |
entity.lastTickPosZ = entity.posZ; |