txt
stringlengths
202
72.4k
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: index.md ### ---------------------------------------------------- Document Index =============== - [Air](docs/Air.md) - [Air::Base](docs/Air/Base.md) - [Air::Component](docs/Air/Com...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: dist.ini ### ---------------------------------------------------- name = Air [ReadmeFromPod] enabled = false filename = lib/Air.rakumod [UploadToZef] [Badges] provider = github-ac...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: bin/dunderm.raku ### ---------------------------------------------------- #!/usr/bin/env raku use lib "../lib"; my $p; { use Air::Functional :BASE; use Air::Base; #|...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: bin/minimal.raku ### ---------------------------------------------------- #!/usr/bin/env raku use lib "../lib"; my $p; { use Air::Functional :BASE; use Air::Base; $p ...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: bin/table.raku ### ---------------------------------------------------- #!/usr/bin/env raku use lib "../lib"; my $html; { use Air::Functional :BASE; use Air::Base; my...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: docs/Air.md ### ---------------------------------------------------- Air === Breathing life into the raku **hArc stack** (HTMX, Air, Red, Cro). **Air** aims to be the purest possib...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: docs/Air/Form.md ### ---------------------------------------------------- Air::Form ========= This raku module is one of the core libraries of the raku **Air** distribution. It pro...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: docs/Air/Functional.md ### ---------------------------------------------------- Air::Functional =============== This raku module is one of the core libraries of the raku **Air** dis...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: docs/Air/Base.md ### ---------------------------------------------------- Air::Base ========= This raku module is one of the core libraries of the raku **Air** distribution. It pro...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: docs/Air/Component.md ### ---------------------------------------------------- Air::Component ============== This raku module is one of the core libraries of the raku **Air** distri...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: t/02-body.rakutest ### ---------------------------------------------------- use Test; use Air::Functional; plan 1; #had to fine tune the stock symbol& END newline to make test work...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: t/04-table.rakutest ### ---------------------------------------------------- use Test; # Normalize and compare ignoring order differences sub normalize(Str $html) { return $html...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use Air::Functional; is h1('text', :class<jumbotron>), "\n<h1 class=\"jumbotron\">text</h1>", ...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: t/03-page.rakutest ### ---------------------------------------------------- use Test; # Normalize and compare ignoring order differences sub normalize(Str $html) { return $html....
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air.rakumod ### ---------------------------------------------------- use v6.d; unit module Air; =begin pod =head1 Air Breathing life into the raku B<hArc stack> (HTMX, Air, R...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Base.rakumod ### ---------------------------------------------------- ### -- Chunk 1 of 2 =begin pod =head1 Air::Base This raku module is one of the core libraries of the r...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Base.rakumod ### ---------------------------------------------------- ### -- Chunk 2 of 2 part.map(*.HTML) } multi sub do-part(@part where .all ~~ Array, :$head) { ...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Form.rakumod ### ---------------------------------------------------- =begin pod =head1 Air::Form This raku module is one of the core libraries of the raku B<Air> distribut...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Functional.rakumod ### ---------------------------------------------------- =begin pod =head1 Air::Functional This raku module is one of the core libraries of the raku B<Ai...
### ---------------------------------------------------- ### -- Air ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Component.rakumod ### ---------------------------------------------------- =begin pod =head1 Air::Component This raku module is one of the core libraries of the raku B<Air>...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: service.raku ### ---------------------------------------------------- #!/usr/bin/env raku my $start = now; use lib "../lib"; use Cro::HTTP::Log::File; use Cro::HTTP::Router; ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: META6.json ### ---------------------------------------------------- { "name": "Air::Play", "description": "blah blah blah", "version": "0.0.11", "authors": [ ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyone is permitt...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: README.md ### ---------------------------------------------------- [![License: Artistic-2.0](https://img.shields.io/badge/License-Artistic%202.0-0298c3.svg)](https://opensource...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: .cro.yml ### ---------------------------------------------------- --- "cro": 1 "endpoints": - "host-env": "HTTP_HOST" "id": "http" "name": "HTTP" "port-en...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: dist.ini ### ---------------------------------------------------- name = Air::Play [ReadmeFromPod] enabled = false #filename = lib/Air/Play.rakumod [UploadToZef] [Badges] pr...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use Air::Play; pass "replace me"; done-testing;
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/package-lock.json ### ---------------------------------------------------- { "name": "css", "lockfileVersion": 3, "requires": true, "packages": { "": { ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/package.json ### ---------------------------------------------------- { "dependencies": { "@picocss/pico": "^2.0.6" } }
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/node_modules/.package-lock.json ### ---------------------------------------------------- { "name": "css", "lockfileVersion": 3, "requires": true, "packages":...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/node_modules/@picocss/pico/LICENSE.md ### ---------------------------------------------------- MIT License Copyright (c) 2019-2024 Pico Permission is hereby grante...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/node_modules/@picocss/pico/README.md ### ---------------------------------------------------- <p> <a href="https://picocss.com" target="_blank"> <picture> ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/node_modules/@picocss/pico/package.json ### ---------------------------------------------------- { "name": "@picocss/pico", "version": "2.0.6", "description": ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: static/css/node_modules/@picocss/pico/composer.json ### ---------------------------------------------------- { "name": "picocss/pico", "description": "Minimal CSS Framework...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play.rakumod ### ---------------------------------------------------- unit class Air::Play; #use Air::Play::Site00-Nano; #use Air::Play::Site01-Minimal; use Air::Play:...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site00-Nano.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; sub SITE is export { site page ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site03-Pages.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; class MyPage is Page {...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site06-Semantic.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; sub SITE is export ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site08-SearchTable.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; use Air::Play::S...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site13-FormRed.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Form; use Red:api<2>; model Co...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site15-TodosRed.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; use Red:api<2>; red...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site09-Todos.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; role HxTodo { meth...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site14-CounterRed.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; use Red:api<2>; r...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site04-HarcStack.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; my $htmx = externa...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site10-Counter.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; my &index = &page.as...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site02-Sections.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; # content my %data ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site11-Form.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Form; class Contact does Form { ...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site05-PagesFunc.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; ### PAGE TEMPLATE ### class MyPage is...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site01-Minimal.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; my &planets = &table.assuming( :class<st...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/SearchTable.rakumod ### ---------------------------------------------------- use Air::Functional; use Air::Component; my @components = <SearchTable>; use Red:api...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site12-FormShort.rakumod ### ---------------------------------------------------- # form use Air::Form; class Contact does Form { has Str $.first-names is...
### ---------------------------------------------------- ### -- Air::Play ### -- Licenses: Artistic-2.0 ### -- Authors: librasteve ### -- File: lib/Air/Play/Site07-BaseExamples.rakumod ### ---------------------------------------------------- use Air::Functional :BASE; use Air::Base; use Air::Component; my &index = &p...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: META6.json ### ---------------------------------------------------- { "author" : "cpan:TITSUKI", "authors" : [ "Itsuki Toyota" ], "build-depends" : ...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2015, The Perl Foundation. Eve...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: README.md ### ---------------------------------------------------- [![Build Status](https://travis-ci.org/titsuki/raku-Algorithm-AhoCorasick.svg?branch=master)]...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: .travis.yml ### ---------------------------------------------------- language: perl6 perl6: - latest install: - rakudobrew build-zef - zef --debug --depso...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: dist.ini ### ---------------------------------------------------- name = Algorithm-AhoCorasick [ReadmeFromPod] ; disable = true filename = lib/Algorithm/AhoCor...
### ---------------------------------------------------- ### -- Algorithm::AhoCorasick ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: t/01-basic.t ### ---------------------------------------------------- use v6; use Test; use-ok 'Algorithm::AhoCorasick'; use Algorithm::AhoCorasick; # locate {...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:titsuki", "authors": [ "Itsuki Toyota" ], "build-depends": ...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2015, The Perl Foundation. ...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/titsuki/raku-Algorithm-BinaryIndexedTree/workflow...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: .travis.yml ### ---------------------------------------------------- language: perl6 perl6: - latest install: - rakudobrew build-zef - zef --debug -...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: dist.ini ### ---------------------------------------------------- name = raku-Algorithm-BinaryIndexedTree [ReadmeFromPod] ; disable = true filename = lib...
### ---------------------------------------------------- ### -- Algorithm::BinaryIndexedTree ### -- Licenses: Artistic-2.0 ### -- Authors: Itsuki Toyota ### -- File: t/01-basic.t ### ---------------------------------------------------- use v6; use Test; use Algorithm::BinaryIndexedTree; subtest { my $BIT = Algorit...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: META6.json ### ---------------------------------------------------- { "authors" : [ "yowcow" ], "build-depends" : [ ], "depends" : [ "Digest::MurmurHas...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2016, The Perl Foundation. Everyone i...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: README.md ### ---------------------------------------------------- [![Build Status](https://travis-ci.org/yowcow/p6-Algorithm-BloomFilter.svg?branch=master)](https://t...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: .travis.yml ### ---------------------------------------------------- language: perl6 perl6: - latest install: - rakudobrew build-panda - panda --notests installd...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: t/00-meta.t ### ---------------------------------------------------- use v6; use Test; use Test::META; plan 1; meta-ok; done-testing;
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: t/02-functions.t ### ---------------------------------------------------- use v6; use Algorithm::BloomFilter; use Test; subtest { my Int %filter := Algorithm::Bl...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: t/03-instance.t ### ---------------------------------------------------- use v6; use Algorithm::BloomFilter; use Test; subtest { subtest { dies-ok { Alg...
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: t/01-basic.t ### ---------------------------------------------------- use v6; use Test; use-ok 'Algorithm::BloomFilter'; done-testing;
### ---------------------------------------------------- ### -- Algorithm::BloomFilter ### -- Licenses: Artistic-2.0 ### -- Authors: yowcow ### -- File: eg/benchmark.p6 ### ---------------------------------------------------- use v6; use Algorithm::BloomFilter; my $filter = Algorithm::BloomFilter.new( error-rate =...
### ---------------------------------------------------- ### -- Algorithm::DawkinsWeasel ### -- Licenses: Artistic-2.0, GPL-2.0+ ### -- Authors: Jaldhar H. Vyas ### -- File: META6.json ### ---------------------------------------------------- { "authors" : [ "Jaldhar H. Vyas" ], "build-depends" : [ ], "depen...
### ---------------------------------------------------- ### -- Algorithm::DawkinsWeasel ### -- Licenses: Artistic-2.0, GPL-2.0+ ### -- Authors: Jaldhar H. Vyas ### -- File: LICENSE ### ---------------------------------------------------- Copyright (c) 2017 Consolidated Braincells Inc. All rights reserved. This distr...
### ---------------------------------------------------- ### -- Algorithm::DawkinsWeasel ### -- Licenses: Artistic-2.0, GPL-2.0+ ### -- Authors: Jaldhar H. Vyas ### -- File: README.md ### ---------------------------------------------------- NAME ==== Algorithm::DawkinsWeasel - An Illustration of Cumulative Selection ...
### ---------------------------------------------------- ### -- Algorithm::DawkinsWeasel ### -- Licenses: Artistic-2.0, GPL-2.0+ ### -- Authors: Jaldhar H. Vyas ### -- File: .travis.yml ### ---------------------------------------------------- os: - linux - osx language: perl6 perl6: - latest install: - rakudobr...
### ---------------------------------------------------- ### -- Algorithm::DawkinsWeasel ### -- Licenses: Artistic-2.0, GPL-2.0+ ### -- Authors: Jaldhar H. Vyas ### -- File: t/01-basic.t ### ---------------------------------------------------- use v6.c; use Test; use Algorithm::DawkinsWeasel; my $weasel = Algorithm::D...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:raku-community-modules", "build-depends": [ ], "depends": [ ], "description": "Comput...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyone is permitted t...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: README.md ### ---------------------------------------------------- ### -- Chunk 1 of 2 [![Actions Status](https://github.com/raku-community-modules/Algorithm-Diff/actions/workflows...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: README.md ### ---------------------------------------------------- ### -- Chunk 2 of 2 custom comparison function rather than a key generating function (and who don't mind the sig...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: dist.ini ### ---------------------------------------------------- name = Algorithm-Diff [ReadmeFromPod] ; enabled = false filename = doc/Algorithm-Diff.rakudoc [UploadToZef] [Pr...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: bin/diff.raku ### ---------------------------------------------------- use v6; # `Diff' program in Perl # Current author # Copyright 2010 Philip Mabon (philipmabon@gmail.com) # Ori...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: t/oo.rakutest ### ---------------------------------------------------- use Test; use Algorithm::Diff; plan 801; # Before 'make install' is performed this script should be runnab...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: t/base.rakutest ### ---------------------------------------------------- use Test; use Algorithm::Diff; plan 61; my @d = (2,4,6,8,10); my ($h, $i); $i = Algorithm::Diff::_repl...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: t/issue12.rakutest ### ---------------------------------------------------- use Test; use Algorithm::Diff; plan 2; # This test catches triggers the following error: # Type check...
### ---------------------------------------------------- ### -- Algorithm::Diff ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/Algorithm/Diff.rakumod ### ---------------------------------------------------- class Algorithm::Diff { # # McIlroy-Hunt diff algorithm # # Adapted from the Smalltalk code of ...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:raku-community-modules", "authors": [ "Rob Hoelz", "Raku Community" ...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: LICENSE ### ---------------------------------------------------- Copyright (c) 2015 Rob Hoelz <rob at hoelz.ro> Permission is hereby granted, free of charge, to any...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/raku-community-modules/Algorithm-Elo/actions/workflows/linux...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: dist.ini ### ---------------------------------------------------- name = Algorithm::Elo [ReadmeFromPod] filename = lib/Algorithm/Elo.rakumod [UploadToZef] [Badges...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use Algorithm::Elo; plan 12; ( my $player-a, my $player-b ) = calculate-elo...
### ---------------------------------------------------- ### -- Algorithm::Elo ### -- Licenses: MIT ### -- Authors: Rob Hoelz, Raku Community ### -- File: lib/Algorithm/Elo.rakumod ### ---------------------------------------------------- my constant $k = 32; my sub do-it(Int:D $delta) { 1 / (1 + (10 ** ($delta / 4...
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: META6.json ### ---------------------------------------------------- { "name": "Algorithm::Evolutionary::Simple", "description": "A simple evolutionary ...
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: LICENSE ### ---------------------------------------------------- GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2...
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: README.md ### ---------------------------------------------------- [![Test-install and cache deps](https://github.com/JJ/p6-algorithm-evolutionary-simple/a...
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: _config.yml ### ---------------------------------------------------- theme: jekyll-theme-slate
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: dist.ini ### ---------------------------------------------------- name = Algorithm-Evolutionary-Simple [ReadmeFromPod] ; disable = true filename = lib/Alg...
### ---------------------------------------------------- ### -- Algorithm::Evolutionary::Simple ### -- Licenses: Artistic-2.0 ### -- Authors: JJ Merelo ### -- File: resources/examples/supply.p6 ### ---------------------------------------------------- #!/usr/bin/env perl6 use v6; use Algorithm::Evolutionary::Simple; ...