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
{ | |
"trademark": "Bang! is a trademark owned by DVGiochi", | |
"tip_1": "Better with friends!", | |
"tip_2": "The 🤖️ icon means that a player is a bot!", | |
"tip_3": "You can click on the cards of characters and equipments of the other players if you wish to know more!", | |
"tip_4": "Dodge City, High Noon, Fistful Of Cards included!", | |
"tip_5": "Found a bug? Message us on discord!", | |
"tip_6": "Now with a discord server!", | |
"tip_7": "If you want to help us translate the game in your language, ping us on discord!", | |
"tip_8": "If you disconnect during in an ongoing game you will be replaced by a bot (while you are gone)!", |
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 PrusaSlicer 2.2.0+ on 2020-04-29 at 12:33:28 UTC | |
avoid_crossing_perimeters = 0 | |
bottom_fill_pattern = rectilinear | |
bottom_solid_layers = 3 | |
bottom_solid_min_thickness = 0 | |
bridge_acceleration = 0 | |
bridge_angle = 0 | |
bridge_flow_ratio = 1 | |
bridge_speed = 60 | |
brim_width = 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
/** | |
* Marlin 3D Printer Firmware | |
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | |
* | |
* Based on Sprinter and grbl. | |
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
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
Vue.js 10 hrs 1 min ██████████░░░░░░░░░░░ 47.7% | |
JavaScript 5 hrs 35 mins █████▌░░░░░░░░░░░░░░░ 26.6% | |
C# 2 hrs 15 mins ██▎░░░░░░░░░░░░░░░░░░ 10.8% | |
YAML 1 hr 11 mins █▏░░░░░░░░░░░░░░░░░░░ 5.6% | |
Other 31 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.5% |
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 | |
# Judge script | |
# For personal use only, not to be used on a real judge system | |
# Execution: put the executable in the same folder with the inputs as .in files and expected outputs as .ans | |
for input in *.in; do | |
for ((i=0; i<=3; i++)); do | |
./a.out < "$input" > "temp" | |
filename=$(basename ${input%.*}.ans) | |
result=$(diff -w "$filename" "temp") |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using Windows.Networking.Connectivity; | |
using System.Net.Http; | |
using System.Xml.Linq; | |
using HtmlAgilityPack; |