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 typing import Dict, Any, DefaultDict, Optional, TYPE_CHECKING | |
from collections import defaultdict | |
if TYPE_CHECKING: | |
TreeDict = Dict[Any, Union[Any, "TreeDict"]] | |
TreeDefaultDict = DefaultDict[Any, Union[Any, "TreeDefaultDict"]] | |
def tree_dict_factory(nested_dict: Optional["TreeDict"] = None) -> "TreeDefaultDict": | |
""" |
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
use bevy::prelude::*; | |
use rand::{thread_rng, Rng}; | |
fn main() { | |
App::new() | |
.insert_resource(ClearColor(Color::srgb(1.0, 0.0, 0.0))) | |
.add_plugins(DefaultPlugins) | |
.add_systems(Startup, setup) | |
.add_systems(Update, point_out) | |
.run(); |
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
# theory: starting at 3,4,5 use the "maximise" function to compute what a multiple of this triple exactly inside the limit looks like | |
# this is far from a ideal triple, as the quotient of a/b closer to 1 means a more ideal triple starting point (triangle sides which are the most equal possible) | |
# so we generate all triples with a, b=a+1, c using the method described in this link: | |
# https://math.stackexchange.com/questions/3399189/looking-for-the-best-way-to-find-pythagorean-triples-where-b-a-pm1 | |
# then we maximise the found triple and check whether its product is larger than the previous largest | |
# we stop once all triples which unmaximised fit into the limit have been checked, as any larger ones can't be used anyways | |
# largest value which will fit | |
limit = int("9" * 10_000) |
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 typing import Callable, ParamSpec, TypeVar, cast | |
P = ParamSpec("P") | |
T = TypeVar("T") | |
def copy_sig(source_func: Callable[P, T]) -> Callable[[Callable[..., T]], Callable[P, T]]: | |
"""Decorator to copy the function signature from source_func | |
Especially useful when overwriting methods with many arguments |
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
trait Lerp<T> { | |
fn lerp(self, from: T, to: T) -> T; | |
fn inv_lerp(self, from: T, to: T) -> T; | |
fn remap(self, from_range: (T, T), to_range: (T, T)) -> T; | |
} | |
macro_rules! lerp_impl { | |
($one:literal, $typ:ty) => { | |
impl Lerp<$typ> for $typ { | |
#[inline(always)] |
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
.tw-tower { | |
flex-flow: row wrap; | |
flex-direction: column; | |
} | |
.tw-tower article { | |
flex-direction: row-reverse !important; | |
} | |
.tw-tower article > div > div > div { |
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
""" | |
Copyright 2023 laundmo | |
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, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER D |
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
docker-compose() { | |
if [[ $@ == "up" ]]; then | |
read -p "Without a -d flag, all containers will attach to the current terminal and will need to be stopped to detach. Are you sure?" | |
command docker-compose "$@" | |
else | |
command docker-compose "$@" | |
fi | |
} |
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 rust:1.65 as rust-builder | |
WORKDIR /usr/src/gt_bot | |
# Copy cargo | |
COPY ./Cargo.toml . | |
COPY ./Cargo.lock . | |
# Create fake main.rs file in src and build for dependencies | |
RUN mkdir ./src && echo 'fn main() { println!("Dummy!"); }' >./src/main.rs | |
RUN cargo build --release |
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
/* License: MIT https://opensource.org/licenses/MIT | |
* Made by: GEOsens GmbH 2023 | |
* | |
* Usage: Italicize the file path. The italicized file or folder can be opened with a double click. | |
* | |
* Note: there is not indication that a path is clickable, thanks ckeditor. | |
*/ | |
async function onClickOpenPath(event) { | |
// check if event was on Italicised |
NewerOlder