Search is not available for this dataset
project
stringlengths
1
235
source
stringclasses
16 values
language
stringclasses
48 values
content
stringlengths
909
64.8M
crossvalidationCP
cran
R
Package ‘crossvalidationCP’ May 22, 2023 Title Cross-Validation for Change-Point Regression Version 1.1 Depends R (>= 3.3.0) Imports changepoint (>= 2.0), fpopw(>= 1.1), wbs (>= 1.4), stats Suggests testthat (>= 2.0.0) Description Implements the cross-validation methodol- ...
pipefittr
cran
R
Package ‘pipefittr’ October 14, 2022 Type Package Title Convert Nested Functions to Pipes Version 0.1.2 Author <NAME>, <NAME>, <NAME>, <NAME>, <NAME> Maintainer <NAME> <<EMAIL>> Description To take nested function calls and convert them to a more readab...
github.com/Azure/azure-sdk-for-go/sdk/storage/azfile
go
Go
README [¶](#section-readme) --- ### Azure File Storage SDK for Go > Service Version: 2022-11-02 Azure File Shares offers fully managed file shares in the cloud that are accessible via the industry standard [Server Message Block (SMB) protocol](https://docs.microsoft.com/windows/desktop/FileIO/microsoft-smb-protocol-...
NRejections
cran
R
Package ‘NRejections’ October 12, 2022 Type Package Title Metrics for Multiple Testing with Correlated Outcomes Version 1.2.0 Author <NAME>, <NAME> Maintainer <NAME> <<EMAIL>> Description Implements methods in Mathur and VanderWeele (in preparation) to character- ize g...
stock-analysis-engine
readthedoc
YAML
# Stock Analysis Engine # Stock Analysis Engine¶ Build and tune investment algorithms for use with artificial intelligence (deep neural networks) with a distributed stack for running backtests using live pricing data on publicly traded companies with automated datafeeds from: IEX Cloud, Tradier and FinViz (includes: ...
pop3mail
hex
Erlang
Pop3mail === Download email from the inbox and store them (including attachments) in a subdirectory per email. Reads incoming mail via the POP3 protocol, using an Erlang Epop client with SSL support. Decodes multipart content, quoted-printables, base64 and encoded-words. The module also contains functions to perform...
@mpxjs/url-loader
npm
JavaScript
`mpx-url-loader` === > solve url in mpx 受限于小程序既有的能力,目前在小程序中加载本地图片资源会有诸多限制: * `<style>`中的css属性值只能使用base64引用图片,无法用本地路径 * `<template>`中的`<cover-image>`组件的src属性只能通过本地路径,不能使用base64 * `<template>`中的其他组件,例如`<image>`的src属性既可以用本地路径,又可以用base64 `@mpxjs/url-loader`对这些限制提供了增强。开发者在源码中无需书写base64,通过统一的路径方式引入图片资源,最终编译成小程序支持的代码。 > 想...
pyod
readthedoc
Python
pyod 1.1.0 documentation Hide navigation sidebar Hide table of contents sidebar Toggle site navigation sidebar [pyod](#) Toggle Light / Dark / Auto color theme Toggle table of contents sidebar [pyod](#) Getting Started * [Installation](index.html#document-install) * [Model Save & Load](index.html#document-mode...
django-staticfilesplus
readthedoc
JavaScript
# Installation and Configuration¶ ``` $ pip install django-staticfilesplus ``` In settings.py replace the default STATICFILES_FINDERS definition with this: ``` STATICFILES_FINDERS = ( 'staticfilesplus.finders.FileSystemFinder', 'staticfilesplus.finders.AppDirectoriesFinder', ) ``` And enable the default pro...
@aws-sdk/client-sagemaker
npm
JavaScript
[@aws-sdk/client-sagemaker](#aws-sdkclient-sagemaker) === [Description](#description) --- AWS SDK for JavaScript SageMaker Client for Node.js, Browser and React Native. Provides APIs for creating and managing SageMaker resources. Other Resources: * [SageMaker Developer Guide](https://docs.aws.amazon.com/sagemaker...
GITHUB_papers-we-love_papers-we-love.zip_unzipped_principal-type-schemes-for-functional-programs.pdf
free_programming_book
Unknown
Principal type-schemes for functional programs <NAME> First published in POPL 82: Proceedings of the 9th ACM SIGPLAN-SIGACT symposium on Principles of programming languages, ACM, pp. 207212 Permission to copy without fee all or part of this material is granted provided that the copies are not made or distributed for di...
nima
readthedoc
SQL
nima 0.7.4 documentation [Skip to main content](#main-content) Back to top `Ctrl`+`K` [None](#) Site Navigation * [Command-line tool](#) * [Tutorials](#) * [API references](#) * [Development references](#) Site Navigation * [Command-line tool](#) * [Tutorials](#) * [API references](#) * [Development re...
Android.pdf
free_programming_book
Unknown
Android Android Notes for Professionals Notes for Professionals 1000+ pages of professional hints and tricks GoalKicker.com Free Programming Books Disclaimer This is an unocial free book created for educational purposes and is not aliated with ocial Android group(s) or company(s). All trademarks and registered trademar...
msdf-sys
rust
Rust
Struct msdf_sys::_IO_FILE === ``` #[repr(C)]pub struct _IO_FILE { pub _flags: c_int, pub _IO_read_ptr: *mutc_char, pub _IO_read_end: *mutc_char, pub _IO_read_base: *mutc_char, pub _IO_write_base: *mutc_char, pub _IO_write_ptr: *mutc_char, pub _IO_write_end: *mutc_char, pub _IO_buf_base: *mutc_char, pub _IO_b...
statprograms
cran
R
Package ‘statprograms’ October 14, 2022 Title Graduate Statistics Program Datasets Version 0.2.0 Description A small collection of data on graduate statistics programs from the United States. URL http://brettklamer.com/work/statprograms/ License MIT + file LICENSE Depends R (>=...
github.com/clickvisual/clickvisual
go
Go
README [¶](#section-readme) --- ### ClickVisual [![GitHub stars](https://img.shields.io/github/stars/clickvisual/clickvisual)](https://github.com/clickvisual/clickvisual/stargazers) [![GitHub issues](https://img.shields.io/github/issues/clickvisual/clickvisual)](https://github.com/clickvisual/clickvisual/issues) [![...
snarkos-node
rust
Rust
Struct snarkos_node::Validator === ``` pub struct Validator<N: Network, C: ConsensusStorage<N>> { /* private fields */ } ``` A validator is a full node, capable of validating blocks. Implementations --- ### impl<N: Network, C: ConsensusStorage<N>> Validator<N, C#### pub async fn new( node_ip: SocketAddr, rest_ip:...
github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty
go
Go
README [¶](#section-readme) --- ### go-isatty isatty for golang #### Usage ``` package main import ( "fmt" "github.com/mattn/go-isatty" "os" ) func main() { if isatty.IsTerminal(os.Stdout.Fd()) { fmt.Println("Is Terminal") } else { fmt.Println("Is Not Terminal") } } ``` #### Installation ``` $ go get gi...
campsis
cran
R
Package ‘campsis’ April 24, 2023 Type Package Title Generic PK/PD Simulation Platform CAMPSIS Version 1.4.1 Description A generic, easy-to-use and intuitive pharmacokinetic/pharmacodynamic (PK/PD) simulation platform based on R packages 'rxode2', 'RxODE' and 'mr...
gopkg.in/beevik/etree.v1
go
Go
README [¶](#section-readme) --- [![Build Status](https://travis-ci.org/beevik/etree.svg?branch=master)](https://travis-ci.org/beevik/etree) [![GoDoc](https://godoc.org/github.com/beevik/etree?status.svg)](https://godoc.org/github.com/beevik/etree) ### etree The etree package is a lightweight, pure go package that e...
TDCor
cran
R
Package ‘TDCor’ October 12, 2022 Type Package Title Gene Network Inference from Time-Series Transcriptomic Data Version 0.1-2 Date 2015-10-05 Author <NAME> Maintainer <NAME> <<EMAIL>> Imports parallel Depends R (>= 3.1.2), deSolve Description The Time-Delay Correlation algor...
cairo-blur
rust
Rust
Crate cairo_blur === cairo-blur --- Apply a Gaussian blur to your Cairo ImageSurface. ``` let radius = 15; let mut surf = cairo::ImageSurface::create(Format::ARgb32, 200, 100).expect("Couldn’t create surface"); cairo_blur::blur_image_surface(&mut surf, radius); ``` The code in this crate is a translation of the code...
abnf_parsec
hex
Erlang
AbnfParsec === Generates a parser from ABNF definition - text (`:abnf`) or file path (`:abnf_file`) An entry rule can be defined by `:parse`. If defined, a `parse/1` function and a `parse!/1` function will be generated with the entry rule. By default, every chunk defined by a rule is wrapped (in list) and tagged by...
whitestorm
npm
JavaScript
``` <p align="center"><i><b>Framework for developing 3D web apps with physics.</b></i></p> ``` --- FEATURES --- * **Simple shape crafting** — We use a JSON-like structure for creating objects from inputted data and adding them to your 3D world. * **Physics with WebWorkers** — We use the [Physi.js](https://github....
trillium-sessions
rust
Rust
Crate trillium_sessions === Trillium sessions --- Trillium sessions is built on top of `async-session`. Sessions allows trillium to securely attach data to a browser session allowing for retrieval and modification of this data within trillium on subsequent visits. Session data is generally only retained for the dura...
ambethia-recaptcha
ruby
Ruby
reCAPTCHA === Author <NAME> ([ambethia.com](http://ambethia.com)) Copyright Copyright © 2007 <NAME> License [MIT](http://creativecommons.org/licenses/MIT/) Info [ambethia.com/recaptcha](http://ambethia.com/recaptcha) Git [github.com/ambethia/recaptcha/tree/master](https://github.com/ambethia/recaptcha/tree/ma...
packagetrackr
cran
R
Package ‘packagetrackr’ October 14, 2022 Type Package Title Track R Package Downloads from RStudio's CRAN Mirror Version 0.1.1 Date 2015-09-22 Author <NAME> Maintainer <NAME> <<EMAIL>> Description Allows to get and cache R package download log files from RStudio's CRAN m...
lexiconPT
cran
R
Package ‘lexiconPT’ October 13, 2022 Type Package Title Lexicons for Portuguese Text Analysis Version 0.1.0 Description Provides easy access for sentiment lexicons for those who want to do text analysis in Por- tuguese texts. As of now, two Portuguese lexicons are av...
mmodely
cran
R
Package ‘mmodely’ May 17, 2023 Version 0.2.5 Date 2023-05-05 Title Modeling Multivariate Origins Determinants - Evolutionary Lineages in Ecology Author <NAME> Maintainer <NAME> <<EMAIL>> Depends R (>= 2.0.0),caper Imports stats, caroline, ape Description Perform multiva...
github.com/aws/aws-sdk-go-v2/service/macie
go
Go
None Documentation [¶](#section-documentation) --- ### Overview [¶](#pkg-overview) Package macie provides the API client, operations, and parameter types for Amazon Macie. Amazon Macie Classic Amazon Macie Classic has been discontinued and is no longer available. A new Amazon Macie is now available with signific...
dictator
hex
Erlang
Dictator === Dictator is a plug-based authorization mechanism. Dictate what your users can access in fewer than 10 lines of code: ``` # config/config.exs config :dictator, repo: Client.Repo # lib/client_web/controllers/thing_controller.ex defmodule ClientWeb.ThingController do use ClientWeb, :controller plug Dict...
aglm
cran
R
Package ‘aglm’ June 9, 2021 Type Package Title Accurate Generalized Linear Model Version 0.4.0 Description Provides functions to fit Accurate Generalized Linear Model (AGLM) models, visual- ize them, and predict for new data. AGLM is defined as a regularized GLM whic...
github.com/reactiveops/vpa-analysis
go
Go
README [¶](#section-readme) --- ### VPA Analysis A tool to quickly summarize suggestions for resource requests in your Kubernetes cluster. #### How? By using the kubernetes vertical-pod-autoscaler in recommendation mode, we can se a suggestion for resource requests on each of our apps. This tool just creates a bun...
DZNEmptyDataSet
cocoapods
Objective-C
dznemptydataset === ## Description The DZNEmptyDataSet library is a powerful and flexible solution for managing empty datasets in your iOS applications. It provides an elegant way to display placeholder views whenever there is no content to present. This library is easy to use and highly customizable, all...
docstring
cran
R
Package ‘docstring’ October 13, 2022 Type Package Title Provides Docstring Capabilities to R Functions Version 1.0.0 Date 2017-03-16 Author <NAME> [aut, cre], <NAME> [ctb] Maintainer <NAME> <<EMAIL>> Imports roxygen2, utils, tools Suggests devtools, rstudioapi, knitr, rma...
gen_queue
hex
Erlang
Toggle Theme GenQueue === [![Build Status](https://travis-ci.org/nsweeting/gen_queue.svg?branch=master)](https://travis-ci.org/nsweeting/gen_queue) [![GenQueue Version](https://img.shields.io/hexpm/v/gen_queue.svg)](https://hex.pm/packages/gen_queue) GenQueue is a specification for queues. This project currently pr...
ropenblas
cran
R
Package ‘ropenblas’ October 14, 2022 Type Package Title Download, Compile and Link 'OpenBLAS' Library with R Version 0.3.0 Maintainer <NAME> <<EMAIL>> Description The 'ropenblas' package (<https://prdm0.github.io/ropenblas/>) is use- ful for users of any 'GNU/Linux' dist...
@yckao/postgres
npm
JavaScript
* [🚀 Fastest full featured PostgreSQL node client](https://github.com/porsager/postgres-benchmarks#results) * 🚯 1250 LOC - 0 dependencies * 🏷 ES6 Tagged Template Strings at the core * 🏄‍♀️ Simple surface API * 💬 Chat on [Gitter](https://badges.gitter.im/porsager/postgres.svg) Getting started --- **In...
LSDinterface
cran
R
Package ‘LSDinterface’ October 12, 2022 Type Package Title Interface Tools for LSD Simulation Results Files Version 1.2.1 Date 2022-5-12 Description Interfaces R with LSD simulation models. Reads object-oriented data in re- sults files (.res[.gz]) produced by LSD and c...
spyking-circus
readthedoc
Markdown
SpyKING CIRCUS 1.0.1 documentation [SpyKING CIRCUS](index.html#document-index) --- Welcome to the SpyKING CIRCUS’s documentation![¶](#welcome-to-the-spyking-circus-s-documentation) === The SpyKING CIRCUS is a massively parallel code to perform semi automatic spike sorting on large extra-cellular recordings. Using a...
nat
cran
R
Package ‘nat.nblast’ June 14, 2023 Type Package Title NeuroAnatomy Toolbox ('nat') Extension for Assessing Neuron Similarity and Clustering Version 1.6.7 Description Extends package 'nat' (NeuroAnatomy Toolbox) by providing a collection of NBLAST-related functions ...
@finos/perspective-esbuild-plugin
npm
JavaScript
[`@finos/perspective-esbuild-plugin`](#finosperspective-esbuild-plugin) === Applications bundled with `esbuild` can make use of the `@finos/perspective-esbuild-plugin` module. A full example can be found in the repo under [`examples/esbuild-example`](https://github.com/finos/perspective/tree/master/examples/esbuild-ex...
oxygengine-ai
rust
Rust
Struct oxygengine_ai::AiSystemInstallerSetup === ``` pub struct AiSystemInstallerSetup<'a, C>where C: Component,{ pub postfix: &'a str, pub behaviors: AiBehaviors<C>, } ``` Fields --- `postfix: &'a str``behaviors: AiBehaviors<C>`Auto Trait Implementations --- ### impl<'a, C> !RefUnwindSafe for AiSystemInst...
carat
cran
R
Package ‘carat’ September 5, 2023 Type Package Title Covariate-Adaptive Randomization for Clinical Trials Version 2.2.1 Date 2023-09-05 Author <NAME> [aut], <NAME> [aut, cre], <NAME> [aut, ths], <NAME> [aut, ths] Maintainer <NAME> <<EMAIL>> Description Pr...
github.com/unionj-cloud/go-doudou
go
Go
README [¶](#section-readme) --- [![Vite logo](https://go-doudou.github.io/hero.png)](https://go-doudou.github.io) [![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go) [![GoDoc](https://godoc.org/github.com/unionj-cloud/go-doudou?status.png)](https://godoc.or...
sars
cran
R
Package ‘sars’ December 14, 2022 Type Package Title Fit and Compare Species-Area Relationship Models Using Multimodel Inference Version 1.3.6 Description Implements the basic elements of the multi-model inference paradigm for up to twenty species-area relationship m...
zenoh-result
rust
Rust
Crate zenoh_result === ⚠️ WARNING ⚠️ This crate is intended for Zenoh’s internal use. Click here for Zenoh’s documentation Macros --- * anyhowConstruct an ad-hoc error from a string or existing non-`anyhow` error value. * bail * to_zerror * zerror Structs --- * NegativeI8 * ShmError * ZError Traits --- * ErrNo...
graphite-api
readthedoc
Unknown
Graphite-API Documentation Release 1.1.3 <NAME> Oct 25, 2017 Contents 2.1 Installatio... 5 2.2 Configuratio... 6 2.3 Deploymen... 9 2.4 HTTP AP... 13 2.5 Built-in function... 33 2.6 Storage finder... 54 2.7 Custom function... 56 2.8 Graphite-API release... 57 ...
EATME
cran
R
Package ‘EATME’ October 12, 2022 Type Package Title Exponentially Weighted Moving Average with Adjustments to Measurement Error Version 0.1.0 Description The univariate statistical quality control tool aims to address measurement error ef- fects when constructing...
pyreadstat
readthedoc
Unknown
pyreadstat 1.2.3 documentation [pyreadstat](index.html#document-index) --- Welcome to pyreadstat’s documentation![¶](#welcome-to-pyreadstat-s-documentation) === Metadata Object Description[¶](#metadata-object-description) === Each parsing function returns a metadata object in addition to a pandas dataframe. That o...
onhtml
rust
Rust
Crate onhtml === by ontology A dsl (domain specific language) for writing html. This is NOT an html template (there are lots of those). This library is not complete and most possibly will never be -html is huge. ### usage ``` use onhtml::* ; fn myhomepage1() ->String { let mut x = Title("a page") ; x += &meta()...
CondIndTests
cran
R
Package ‘CondIndTests’ October 12, 2022 Type Package Title Nonlinear Conditional Independence Tests Version 0.1.5 Date 2019-11-11 Author <NAME> <<EMAIL>>, <NAME> <<EMAIL>>, <NAME> <<EMAIL>> Depends R (>= 3.1.0) Maintainer <NAME> <<EMAIL>> Description Code for a va...
ExtUtils-ParseXS
cpan
Perl
Changes for version 3.51 --- * Initialize $self correctly in EU::PXS::Utilities::death() * C++ builds: avoid generating C<< extern "C" extern "C" >[ Show lessShow more ] Documentation --- [xsubpp](/dist/ExtUtils-ParseXS/view/lib/ExtUtils/xsubpp) compiler to convert Perl XS code into C code Modules --- [ExtUtils...
web3_rust_wrapper
rust
Rust
Macro web3_rust_wrapper::switch === ``` macro_rules! switch { ($v:expr; $($a:expr => $b:expr,)* _ => $e:expr $(,)?) => { ... }; } ``` Emulates a `switch` statement. The syntax is similar to `match` except that every left-side expression is interpreted as an expression rather than a pattern. The expression to com...
task_bunny
hex
Erlang
Toggle Theme TaskBunny === [![Hex.pm](https://img.shields.io/hexpm/v/task_bunny.svg "Hex")](https://hex.pm/packages/task_bunny) [![Build Status](https://travis-ci.org/shinyscorpion/task_bunny.svg?branch=master)](https://travis-ci.org/shinyscorpion/task_bunny) [![Inline docs](http://inch-ci.org/github/shinyscorpion/ta...
LinkedGASP
cran
R
Package ‘LinkedGASP’ October 12, 2022 Type Package Title Linked Emulator of a Coupled System of Simulators Version 1.0 Date 2018-11-24 Author <NAME>, k<EMAIL> Maintainer <NAME> <<EMAIL>> Depends nloptr, spBayes Suggests MASS Description Prototypes for construction of a Gauss...
mosaico
npm
JavaScript
Mosaico - Responsive Email Template Editor === Mosaico is a JavaScript library (or maybe a single page application) supporting the editing of email templates. The great thing is that Mosaico itself does not define what you can edit or what styles you can change: this is defined by the template. This makes Mosaico very...
marble
cran
R
Package ‘marble’ May 10, 2023 Type Package Title Robust Marginal Bayesian Variable Selection for Gene-Environment Interactions Version 0.0.2 Date 2023-05-09 Description Recently, multiple marginal variable selection methods have been devel- oped and shown to be e...
@getstation/slack
npm
JavaScript
### A [Slack Web API](https://api.slack.com/methods) client 🌱🙌💕 * Written in modern JavaScript; tested for Node and the browser * Complete support for the [Slack Web API](https://api.slack.com/methods) * Perfect symmetry: JS method signatures match Web API docs * Choose your async adventure: all methods accept eit...
grinpy
readthedoc
Unknown
GrinPy Documentation Release latest <NAME>, <NAME> May 30, 2019 Contents 4.1 Tutoria... 9 4.2 Referenc... 10 4.3 Licens... 38 i ii GrinPy Documentation, Release lates...
hpfilter
cran
R
Package ‘hpfilter’ May 28, 2023 Type Package Title The One- And Two-Sided Hodrick-Prescott Filter Version 1.0.2 Author <NAME> Maintainer <NAME> <<EMAIL>> URL https://www.alexandrumonahov.eu.org/projects Description Provides two functions that implement the one-sided and ...
biclustermd
cran
R
Package ‘biclustermd’ October 12, 2022 Type Package Title Biclustering with Missing Data Version 0.2.3 Maintainer <NAME> <<EMAIL>> Description Biclustering is a statistical learning technique that simultaneously partitions and clusters rows and columns of a data matrix. ...
equateMultiple
cran
R
Package ‘equateMultiple’ October 17, 2022 Type Package Title Equating of Multiple Forms Version 0.1.1 Author <NAME> Maintainer <NAME> <<EMAIL>> Description Equating of multiple forms using Item Response Theory (IRT) methods (Bat- tauz M. (2017) <doi:10.1007/s11336-016-951...
pupper
readthedoc
Markdown
Stanford Pupper 2020 documentation [Stanford Pupper](index.html#document-index) --- Welcome to Pupper’s documentation![¶](#welcome-to-pupper-s-documentation) === About Pupper[¶](#about-pupper) --- Stanford Pupper is a small quadruped robot that can hop, trot, and run around. We hope that its low cost and simple de...
wrappr
cran
R
Package ‘wrappr’ May 23, 2023 Title A Collection of Helper and Wrapper Functions Version 0.1.0 Description Helper functions to easily add functionality to functions. The package can assign functions to have an lazy evaluation allowing you to save and update the a...
kirby21
cran
R
Package ‘kirby21.base’ October 13, 2022 Type Package Title Example Data from the Multi-Modal MRI 'Reproducibility' Resource Version 1.7.3 Date 2020-07-02 Author <NAME> <<EMAIL>> Maintainer <NAME> <<EMAIL>> Description Multi-modal magnetic resonance imaging ('MRI') data fr...
GrimR
cran
R
Package ‘GrimR’ October 12, 2022 Type Package Title Calculate Optical Parameters from Spindle Stage Measurements Version 0.5 Date 2018-05-28 Author <NAME> [aut, cre] Maintainer <NAME> <<EMAIL>> Description Calculates optical parameters of crystals like the optical axes...
describedata
cran
R
Package ‘describedata’ October 13, 2022 Title Miscellaneous Descriptive Functions Version 0.1.0 Description Helper functions for descriptive tasks such as making print-friendly bivariate tables, sample size flow counts, and visualizing sample distributions. Also co...
RKelly
cran
R
Package ‘RKelly’ October 12, 2022 Type Package Title Translate Odds and Probabilities Version 1.0 Description Calculates the Kelly criterion (Kelly, J.L. (1956) <doi:10.1002/j.1538- 7305.1956.tb03809.x>) for bets given quoted prices, model predictions and commissions. ...
@reframe/default-kit
npm
JavaScript
Reframe's default kit `@reframe/default-kit` === The default kit includes: * [@reframe/react](https://github.com/reframejs/reframe/blob/HEAD/react) * [@reframe/path-to-regexp](https://github.com/reframejs/reframe/blob/HEAD/path-to-regexp) * And other things. (See the default kit's source code to see these things.) ...
qrious
npm
JavaScript
``` .d88888b. 8888888b. d8b d88P" "Y88b 888 Y88b Y8P 888 888 888 888 888 888 888 d88P 888 .d88b. 888 888 .d8888b 888 888 8888888P" 888 d88""88b 888 888 88K 888 Y8b 888 888 T88b 888 888 888 888 888 "Y8888b. Y88b.Y8b88P 888 T88b 888 Y88..88P Y88b 888 X88 "Y888888" 888 T88b 888 "...
github.com/tevino/abool/v2
go
Go
None Documentation [¶](#section-documentation) --- ### Overview [¶](#pkg-overview) Package abool provides atomic Boolean type for cleaner code and better performance. ### Index [¶](#pkg-index) * [type AtomicBool](#AtomicBool) * + [func New() *AtomicBool](#New) + [func NewBool(ok bool) *AtomicBool](#NewBool) * ...
FunCC
cran
R
Package ‘FunCC’ October 12, 2022 Title Functional Cheng and Church Bi-Clustering Version 1.0 Author <NAME> [aut, cre], <NAME> [aut, cre], <NAME> [aut], <NAME>- tini[aut] Maintainer <NAME> <<EMAIL>> Description The FunCC algorithm allows to apply the FunCC algorithm to simu...
fontdue
rust
Rust
Crate fontdue === Fontdue is a font parser, rasterizer, and layout tool. This is a no_std crate, but still requires the alloc crate. Modules --- * layoutTools for laying out strings of text. Structs --- * FontRepresents a font. Fonts are immutable after creation and owns its own copy of the font data. * FontSetti...
pathml
readthedoc
Python
`PathML` is a toolkit supporting each step in the computational pathology research workflow. We aim to accelerate research, reduce barriers to entry for new researchers, and promote open science in computational pathology. We provide pre-built tools, public datasets, and documentation to allow anyone with beginner ...
TSdist
cran
R
Package ‘TSdist’ October 12, 2022 Type Package Title Distance Measures for Time Series Data Version 3.7.1 Encoding UTF-8 Date 2022-08-30 Depends R (>= 3.0.3), proxy Imports cluster, dtw, graphics, KernSmooth, locpol, longitudinalData, methods, pdc, stats, TSclust, xts, ...
ecoregime
cran
R
Package ‘ecoregime’ September 10, 2023 Title Analysis of Ecological Dynamic Regimes Version 0.1.3 Description A toolbox for implementing the Ecological Dynamic Regime framework (Sánchez-Pinillos et al., 2023 <doi:10.1002/ecm.1589>) to characterize and compare groups ...
twital
readthedoc
HTML
Twital 1.0-alpha documentation [Twital](index.html#document-index) --- What is Twital?[¶](#what-is-twital) === Twital is a small “plugin” for [Twig](http://twig.sensiolabs.org/) (a template engine for PHP) that adds some shortcuts and makes Twig’s syntax more suitable for HTML based (XML, HTML5, XHTML, SGML) templa...
ECOTOXr
cran
R
Package ‘ECOTOXr’ October 9, 2023 Type Package Title Download and Extract Data from US EPA's ECOTOX Database Version 1.0.5 Date 2023-10-09 Author <NAME> [aut, cre, dtc] (<https://orcid.org/0000-0002-7961-6646>) Maintainer <NAME> <<EMAIL>> Description The US EPA ECOTOX ...
voteSim
cran
R
Package ‘voteSim’ June 23, 2023 Type Package Title Generate Simulated Data for Voting Rules using Evaluations Version 0.1.0 Maintainer <NAME> <<EMAIL>> Description Provide functions to generate random simulated evaluations on candidates by voters for evalua- tion-...
broadsheet
npm
JavaScript
The Times Component Library === ### Purpose Home of The Times' `react`/`react native` components, using [react-native-web](https://github.com/necolas/react-native-web) to share across platforms ### Dev Environment We require MacOS with [Node.js](https://nodejs.org) (version >=8 with npm v5), [yarn](https://yarnpkg....
cellOrigins
cran
R
Package ‘cellOrigins’ October 12, 2022 Type Package Title Finds RNASeq Source Tissues Using In Situ Hybridisation Data Version 0.1.3 Author <NAME> Maintainer <NAME> <<EMAIL>> Description Finds the most likely originating tissue(s) and developmental stage(s) of tissue-sp...
github.com/hexops/vecty
go
Go
README [¶](#section-readme) --- ![](https://github.com/vecty/vecty-logo/raw/master/horizontal_color_tagline.png) Vecty lets you build responsive and dynamic web frontends in Go using WebAssembly, competing with modern web frameworks like React & VueJS. [![Build Status](https://travis-ci.org/hexops/vecty.svg?branch=...
favnums
cran
R
Package ‘favnums’ October 13, 2022 Type Package Depends R (>= 2.10) Title A Dataset of Favourite Numbers Version 1.0.0 Date 2015-07-21 Author <NAME> [aut, cre], <NAME> [cph] Maintainer <NAME> <<EMAIL>> Description A dataset of favourite numbers, selected from an online pol...
github.com/batchcorp/plumber
go
Go
README [¶](#section-readme) --- ![Brief Demo](https://github.com/batchcorp/plumber/raw/v1.16.0/assets/plumber_logo_full.png) [![Master build status](https://github.com/batchcorp/plumber/workflows/master/badge.svg)](https://github.com/batchcorp/plumber/actions/workflows/master-test.yaml) [![Go Report Card](https://go...
github.com/aliyun/alibaba-cloud-sdk-go
go
Go
README [¶](#section-readme) --- English | [简体中文](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/v1.62.581/README-CN.md) [![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)](https://www.alibabacloud.com) Alibaba Cloud SDK for Go === [![Go](https://github.com/aliyun/alibaba-cloud-sdk-go/actions/work...
anabel
cran
R
Package ‘anabel’ May 11, 2023 Title Analysis of Binding Events + l Version 3.0.1 Description A free software for a fast and easy analysis of 1:1 molecular interaction studies. This package is suitable for a high-throughput data analysis. Both the online app an...
wgsl-inline
rust
Rust
Crate wgsl_inline === WGSL Inline --- ![crates.io](https://img.shields.io/crates/v/wgsl-inline.svg) ![docs.rs](https://img.shields.io/docsrs/wgsl-inline) ![crates.io](https://img.shields.io/crates/l/wgsl-inline.svg) WGSL Inline adds a macro, `wgsl!`, which takes WGSL sourcecode and validates it, reporting any errors...
KZPlayground
cocoapods
Objective-C
kzplayground === Introduction --- Welcome to the documentation for **kzplayground**, a powerful and versatile iOS framework for integrating multimedia and interactive components into your applications. This documentation will provide you with detailed information on how to get started, the various features and functi...
geocoder
readthedoc
Markdown
geocoder 1.17.3 documentation ### Navigation * [geocoder 1.17.3 documentation](index.html#document-index) » Geocoder: Simple, Consistent[¶](#geocoder-simple-consistent) === Release v1.17.3. ([Installation](index.html#install)) Simple and consistent geocoding library written in Python. Many online providers such a...
django-safedelete
readthedoc
Python
django-safedelete 0.4 documentation [django-safedelete](index.html#document-index) --- Django safedelete[¶](#django-safedelete) === What is it ?[¶](#what-is-it) --- For various reasons, you may want to avoid deleting objects from your database. This Django application provides an abstract model, that allows you t...
icrawler
readthedoc
Python
icrawler 0.6.6 documentation [icrawler](index.html#document-index) --- Welcome to icrawler[¶](#welcome-to-icrawler) === icrawler[¶](#icrawler) === Introduction[¶](#introduction) --- Documentation: <http://icrawler.readthedocs.io/Try it with `pip install icrawler` or `conda install -c hellock icrawler`. This pack...
cdcmd
ctan
TeX
# The cdcmd package <NAME> (Longaster Email: <EMAIL> Released October 12, 2021, version v1.0 ###### Abstract cdcmd is a package that allows you define 'polymorphic' command. Like styledcmd package, you can define \protected command, but cdcmd can define expandable conditional command as well. ## 1 Main Interface ...
smoothROCtime
cran
R
Package ‘smoothROCtime’ October 14, 2022 Type Package Title Smooth Time-Dependent ROC Curve Estimation Version 0.1.0 Author <NAME> <<EMAIL>> Maintainer <NAME> <<EMAIL>> Imports ks Suggests KMsurv,lattice, survival Description Computes smooth estimations for the Cumulative/Dy...
snek
hex
Erlang
Snek === A framework for defining Battlesnake-compatible rulesets and board positions. This top-level module is just a namespace. Check the submodules for all the interesting bits. Snek.Board === A struct for representing a board position. This may be used to keep track of state in a game, each turn of the game pr...
recase
hex
Erlang
Recase === Recase allows you to convert string from any to any case. This module contains public interface. [Link to this section](#summary) Summary === [Functions](#functions) --- [to_camel(value)](#to_camel/1) Converts string to camelCase. [to_constant(value)](#to_constant/1) Converts string to CONSTANT_C...
gTests
cran
R
Package ‘gTests’ October 13, 2022 Version 0.2 Date 2017-12-6 Title Graph-Based Two-Sample Tests Author <NAME> and <NAME> Maintainer <NAME> <<EMAIL>> Depends R (>= 3.0.1) Imports ade4 Description Four graph-based tests are provided for testing whether two sam- ples are fr...
github.com/knadh/koanf/maps
go
Go
None Documentation [¶](#section-documentation) --- ### Overview [¶](#pkg-overview) Package maps provides reusable functions for manipulating nested map[string]interface{} maps are common unmarshal products from various serializers such as json, yaml etc. ### Index [¶](#pkg-index) * [func Copy(mp map[string]inte...
wpp2012
cran
R
Package ‘wpp2012’ October 12, 2022 Version 2.2-1 Date 2014-8-21 Title World Population Prospects 2012 Author <NAME> (<EMAIL>), <NAME> (<EMAIL>), <NAME> (an- <EMAIL>), <NAME> (<EMAIL>), <NAME> (<EMAIL>), <NAME> (spooren- <EMAIL>) Maintainer <NAME> <<EMAIL>> Depends ...
iced_futures
rust
Rust
Crate iced_futures === Asynchronous tasks for GUI programming, inspired by Elm. ![The foundations of the Iced ecosystem](https://github.com/iced-rs/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/foundations.png?raw=true) Re-exports --- * `pub use executor::Executor;` * `pub use subscription::Subscri...