This file has been truncated, but you can view the full file.
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
; generated by Slic3r 1.3.1-dev on 2020-07-06 at 18:24:55 | |
; Printer Config Notes: | |
; Retract settings for A10M [for untouched firmware here] | |
; | |
; Cura 6.5mm/25mm [8.5 / 33] + wipe | |
; | |
; Ender 6.8mm / 60mm (for A10) + Z-hop 0.6mm + wipe | |
; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
<title>Drinks Order</title> | |
<!-- bootstrap CSS enable --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" | |
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> |
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
12:38:27.282 : OpenGL version:4.6.0 NVIDIA 445.87 | |
12:38:27.283 : OpenGL extensions:GL_AMD_multi_draw_indirect GL_AMD_seamless_cubemap_per_texture GL_AMD_vertex_shader_viewport_index GL_AMD_vertex_shader_layer GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_ES3_1_compatibility GL_A |
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 <IRremote.h> | |
#include <IRremoteInt.h> | |
int IRPIN = 2; | |
int ledPin = 13; | |
IRrecv irrecv(IRPIN); | |
bool active = false; | |
decode_results result; |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"definitions": { | |
"range": { | |
"type": "object", | |
"properties": { | |
"from": { "type": "string" }, | |
"to": { "type": "string" } | |
}, | |
"required": [ "from" ] |
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
plugins { | |
id 'java' | |
id 'war' | |
id "org.akhikhl.gretty" version "2.0.0" | |
} | |
gretty { | |
httpPort = 8080 | |
contextPath = 'spring4' | |
servletContainer = 'jetty9' |
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
//Amount is now the total number of items in the chest - we will need this later | |
if (amount >= shop.getQuantity()) { | |
//We have enough items so sell to the shopper | |
player.sendMessage("You paid $" + shop.getBuyPrice() + " for " + shop.getQuantity() + " " + shop.getDescription()); | |
PayDay.getInstance().getEconomyService().subtract(player, shop.getBuyPrice()); | |
PayDay.getInstance().getEconomyService().add(shop.getPlayerName(), shop.getBuyPrice()); | |
player.getInventory().addItem(item); | |
amount = amount - shop.getQuantity(); | |
int remaining = amount; | |
chest.getInventory().clear(); |
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 Block getTargetBlock(Player player, int range) { | |
Location loc = player.getEyeLocation(); | |
Vector dir = loc.getDirection().normalize(); | |
Block b = null; | |
for (int i = 0; i <= range; i++) { | |
b = loc.add(dir).getBlock(); | |
} |
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
10:14:14 [WARNING] Could not load plugin from file plugins\ApocChat-1.0.jar | |
Cannot create property=description for JavaBean=PluginDescription(name=ApocChatBridge, main=org.apocgaming.apocchat.bukkit.ApocChatBridge, version=null, author=null, depends=[], file=null) | |
in 'reader', line 1, column 1: | |
name: ApocChatBridge | |
^ | |
Unable to find property 'description' on class: net.md_5.bungee.api.plugin.PluginDescription | |
in 'reader', line 3, column 14: | |
description: Proof | |
^ |
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
// Called every frame | |
void UOpenDoor::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) | |
{ | |
Super::TickComponent(DeltaTime, TickType, ThisTickFunction); | |
//Poll the trigger volume | |
if (GetTotalMassOfActorsOnPlate() > TriggerMass) //ToDo make into a param | |
{ | |
if (!isOpen) | |
{ |
NewerOlder