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
| <script lang="ts"> | |
| import * as Select from "@Shadcn/select"; | |
| import Badge from "@Shadcn/badge/badge.svelte"; | |
| import Button from "@Shadcn/button/button.svelte"; | |
| import { faXmark } from "@fortawesome/pro-duotone-svg-icons"; | |
| import Icon from "svelte-awesome"; | |
| export let value: ValueType[] = []; | |
| export let data: ValueType[] = []; | |
| export let keys: string[] = []; |
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
| // chunking loop for languages that have slices of array | |
| // in R | |
| proccessed <- 1 | |
| bufferSize <- 4 | |
| x <- 1:50 | |
| while(proccessed < length(x)) { | |
| slice <- x[proccessed: (proccessed + bufferSize)] | |
| sliceStripNA <- slice[!is.na(slice)] |
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
| use actix_web::{middleware, web, App, HttpServer, Responder}; | |
| fn test() -> impl Responder { | |
| "Hello, world!" | |
| } | |
| fn main() { | |
| std::env::set_var("RUST_LOG", "actix_web=debug"); | |
| std::env::set_var("RUST_BACKTRACE", "1"); | |
| env_logger::init(); |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <location path="." inheritInChildApplications="false"> | |
| <system.webServer> | |
| <handlers> | |
| <add name="aspNetCore" | |
| path="*" | |
| verb="*" | |
| modules="AspNetCoreModuleV2" | |
| resourceType="Unspecified" /> |