Presented by [New Challenger][nch-discord]
Thunderdome is a weekly FT-10 (First To 10) competition hosted by [New Challenger][nch-discord]. The winner of the set is crowned and receives
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="author" content="[email protected]"> |
// Copyright 2019 Nathan Sizemore <[email protected]> | |
// | |
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. | |
// If a copy of the MPL was not distributed with this file, | |
// You can obtain one at http://mozilla.org/MPL/2.0/. | |
extern crate winapi; | |
use std::ffi::OsStr; | |
use std::iter::once; |
#!/bin/sh | |
set -xe | |
openssl req -nodes \ | |
-x509 \ | |
-days 3650 \ | |
-newkey rsa:4096 \ | |
-keyout ca.key \ | |
-out ca.cert \ |
// Copyright 2022 Nathan Sizemore <[email protected]> | |
// | |
// This Source Code Form is subject to the terms of the Mozilla Public | |
// License, v. 2.0. If a copy of the MPL was not distributed with this | |
// file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
extern crate libtabellarius; | |
#[macro_use] | |
extern crate log; | |
extern crate uuid; |
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2015 - 2016 Samsung Electronics | |
* Krzysztof Opasiak <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person | |
* obtaining a copy of this software and associated documentation | |
* files (the "Software"), to deal in the Software without | |
* restriction, including without limitation the rights to use, copy, |