#
parameters
Here are 275 public repositories matching this topic...
good first issue
This is a good issue for someone who wants their contributor's badge
Parameter Validation & Type Coercion for Sinatra
-
Updated
Mar 9, 2022 - Ruby
A simple to use, composable, command line parser for C++ 11 and beyond
cli
parser
options
cpp
command-line
parameters
argument-parser
arguments
cpp14
cpp11
argument-parsing
header-only
cpp17
option-parser
options-parsing
command-line-parser
cmdline-parser
cpp20
-
Updated
Feb 2, 2022 - C++
bootstrap
r
ci
parameters
beta
data-reduction
feature-extraction
pca
confidence-intervals
r-package
pvalues
regression-models
hacktoberfest
statistical-models
fa
feature-reduction
standardize
robust-statistics
easystats
standardized-estimates
-
Updated
Apr 8, 2022 - R
Easy parameters validation/casting with Ecto.Schema, akin to Rails' strong parameters.
-
Updated
Apr 3, 2022 - Elixir
2
maximlt
commented
Jan 13, 2022
I'd like the docstrings of the public API methods and functions of Param to be improved which should improve:
- the API reference page of the website
- the user experience in a code editor
I'm opening this issue to report (later) ideas and findings. For now I would just like to note that Param doesn't seem to follow PEP257 and also doesn't follow a
doc
docs, interactive help, auto-completion, etc
good first issue
Guidance available, not on critical path, help welcome :)
Elixir library that provides macros which allow you to encapsulate business logic and validate incoming parameters with predefined contract.
-
Updated
Jun 13, 2021 - Elixir
-
Updated
Feb 23, 2022 - TypeScript
OpenFrameworks addon serves any number of variables (bool, float, int, enum, string, ofColor) on the network, so that you can modify from outside the OF app. Includes a native OSX Client. OSC based.
-
Updated
May 22, 2021 - C++
A simple, extensible, library to make argument validation in Go palatable.
-
Updated
Feb 10, 2017 - Go
Random vectors: marginal and conditional distributions. Normal, t-distribution, Chi-square and F-distribution... AND A LOT MORE.
distribution
statistics
parameters
random
variable
event
estimation
combinatorics
variables
theorem
theorems
probability-statistics
probablity
-
Updated
May 5, 2021 - R
This plugin provides new scripted, dynamic parameters for freestyle jobs that can be rendered as combo-boxes, check-boxes, radio-buttons or rich HTML UI widgets.
-
Updated
Mar 18, 2022 - Java
Inject AWS SSM Parameters as Environment Variables
-
Updated
Oct 20, 2021 - Go
A simple domain-specific language (DSL) for defining differential equations for use in scientific machine learning (SciML) and other applications
-
Updated
Jan 19, 2022 - Julia
burpsuite extension for check and extract sensitive request parameter
-
Updated
Nov 29, 2020 - Python
A cross-platform toolkit for reading metadata of .rfa, .rvt etc. Reading / writing hared sparameter and type catalog files WITHOUT Revit
metadata
catalog
parameters
enum
version
units
catalogue
enumeration
thumbnail
olefile
revit
catalog-files
ole
thumbnail-images
revit-api
rfa
shared-parameter-file
rvt
part-atom
display-units
-
Updated
Dec 21, 2020 - C#
A small library helping to parse commandline parameters (for C/C++)
-
Updated
Feb 18, 2022 - C++
Simple, basic filtering and validation tool for Node.js.
nodejs
javascript
whitelist
validation
utilities
parameters
whitelist-validation
whitelisting
validation-library
whitelisting-filter
-
Updated
Dec 1, 2017 - JavaScript
Data schema validation in Elixir
-
Updated
Mar 18, 2022 - Elixir
RGB-D extrinsic parameter automatic calibration based on plane detection
-
Updated
Nov 1, 2018 - MATLAB
Collection of Linux Kernel Modules and PoC to discover, learn and practice Linux Kernel Development
c
linux
device
practice
study
parameters
makefile
sandbox
linux-kernel
linux-kernel-module
proc
linux-kernel-hacking
character-device
kernel-development
kernel-ring-buffer
-
Updated
Aug 21, 2020 - C
`Rack::Request.params` validation and type coercion, on Rack.
-
Updated
Feb 2, 2018 - Ruby
A framework base on Koajs2 with Decorator, Params checker and a base of modules (cors, bodyparser, compress, I18n, etc…) to let you develop smart api easily
-
Updated
Mar 11, 2022 - TypeScript
Flutter routing library that adds flexible routing options like parameters and clear route definitions.
-
Updated
Apr 29, 2021 - Dart
The wanna-be-simplest command line arguments library for C++
cli
parser
options
terminal
cpp
command-line
parameters
constexpr
arguments
command-line-parser
cpp20
consteval
constexpr-all-the-things
-
Updated
Mar 28, 2022 - C++
This code uses the algebra solver in Stan (https://mc-stan.org/) to find the parameters of a distribution that produce a desired tail behavior.
-
Updated
Jul 23, 2019 - R
Best Prism MVVM Practice 2020
module
csharp
modules
command
listbox
prism
navigation
parameters
wpf
mvvm
dialog
splash-screen
splashscreen
combobox
dryioc
eventaggregator
tabcontrol
prism-module
selectionchange
-
Updated
Aug 5, 2020 - C#
Schemas come to solve a simple problem. Sometimes we would like to have type-safe guarantee params when parsing HTTP parameters or Hash(String, String) for a request moreover; Schemas is to resolve precisely this problem with the added benefit of performing business rules validation to have the params adhere to a "business schema."
-
Updated
Feb 27, 2022 - Crystal
parascope gem for param-based scope generation
-
Updated
May 11, 2021 - Ruby
Improve this page
Add a description, image, and links to the parameters topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parameters topic, visit your repo's landing page and select "manage topics."
I have defined this route using Fluro.
exchange/:pair
There is a problem! I want
:pair
to be optional. If client typeshttps://host:port/exchange/BNB_BTC
everything goes fine. but assume the user is looking forhttps://host:port/exchange
and he confronts with 404 error cause there is no suchroute/path
.I mean something like
exchange/{:pair}
.