Skip to content

Instantly share code, notes, and snippets.

View albertoxamin's full-sized avatar
🚀
LFG!

Alberto Xamin albertoxamin

🚀
LFG!
View GitHub Profile
{
"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)!",
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%
# 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
@albertoxamin
albertoxamin / Configuration.h
Created February 17, 2020 16:55
Anet A8 Marlin configurations
/**
* 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
@albertoxamin
albertoxamin / year.md
Created October 23, 2019 16:52
Last-Year activity

aaaa

#!/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")
@albertoxamin
albertoxamin / Client.cs
Created February 8, 2019 07:50
ITIS Barsanti Backend
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;