This file contains hidden or 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
| import ROOT_DIR from '../../rootdir' | |
| require('dotenv').config({ path: `${ROOT_DIR}/.env` }) | |
| import axios, { AxiosResponse } from 'axios' | |
| import { Notification, ios, android, openInPayload } from './notifications' | |
| type NamedUser = { | |
| named_user_id: string | |
| attributes: any | |
| channels: any[] | |
| } |
This file contains hidden or 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
| <?php | |
| namespace Medical\CoreBundle\Component\Tool; | |
| class CreatinineCalculator | |
| { | |
| const MDRD = 'MDRD'; | |
| const COCKROFT = 'COCKROFT'; | |
| /** |
This file contains hidden or 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
| extends Node2D | |
| @export var entities_count: int = 5000 | |
| @export var entities_container: Node2D | |
| @export_category("Optimization") | |
| @export var draw_grid: bool = true | |
| @export var grid_color: Color = Color(0.3, 0.8, 1.0, 0.3) | |
| @export var grid_cell_size: float = 100.0 | |
| @export var randomness_frame_update_interval: int = 30 |
OlderNewer