Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotacat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stephen D
dotacat
Commits
55a42a23
Commit
55a42a23
authored
4 years ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
Flesh out readme, rename project
parent
5e24a23a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Cargo.lock
+9
-9
9 additions, 9 deletions
Cargo.lock
Cargo.toml
+2
-1
2 additions, 1 deletion
Cargo.toml
README.md
+49
-3
49 additions, 3 deletions
README.md
src/main.rs
+1
-1
1 addition, 1 deletion
src/main.rs
with
61 additions
and
14 deletions
Cargo.lock
+
9
−
9
View file @
55a42a23
...
...
@@ -72,6 +72,15 @@ dependencies = [
"winapi",
]
[[package]]
name = "dotacat"
version = "0.1.0"
dependencies = [
"clap",
"colored",
"rand",
]
[[package]]
name = "getrandom"
version = "0.1.15"
...
...
@@ -129,15 +138,6 @@ version = "0.2.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
[[package]]
name = "lolcatrs"
version = "0.1.0"
dependencies = [
"clap",
"colored",
"rand",
]
[[package]]
name = "os_str_bytes"
version = "2.3.2"
...
...
This diff is collapsed.
Click to expand it.
Cargo.toml
+
2
−
1
View file @
55a42a23
[package]
name
=
"
lol
cat
rs
"
name
=
"
dota
cat"
version
=
"0.1.0"
authors
=
[
"Stephen <stephen@scd31.com>"
]
description
=
"Like lolcat, but fast"
edition
=
"2018"
license
=
"MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
...
...
This diff is collapsed.
Click to expand it.
README.md
+
49
−
3
View file @
55a42a23
#
Lolcat.rs
#
dotacat
Why?
dotacat is meant to be a replacement to lolcat.
## Why?
Speed!
```
$ time echo hi | lolcat
real 0m0.422s
user 0m0.393s
sys
0m0.028s
sys
0m0.028s
```
I use lolcat in my
`.bashrc`
file, so this amount of time is not ideal for me.
In contrast:
```
time echo hi | dotacat
real 0m0.045s
user 0m0.030s
sys 0m0.020s
```
## Why the name?
Because Dota is better than LoL (According to people - I play neither)
## Installation
`cargo install dotacat`
## Usage
```
USAGE:
dotacat [FLAGS] [OPTIONS] [files]...
ARGS:
<files>... Files to concatenate(`-` for STDIN)
FLAGS:
-h, --help Prints help information
-i, --invert Invert fg and bg
-V, --version Prints version information
OPTIONS:
-F, --freq <freq> Rainbow frequency [default: 0.1]
-S, --seed <seed> Rainbow seed, 0 = random [default: 0.0]
-p, --spread <spread> Rainbow spread [default: 1.0]
Examples:
dotacat f - g Output f's contents, then stdin, then g's contents.
fortune | dotacat Display a rainbow cookie.
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main.rs
+
1
−
1
View file @
55a42a23
...
...
@@ -8,7 +8,7 @@ mod lol;
#[derive(Clap)]
#[clap(author,
about,
version)]
#[clap(
after_help
=
"Examples:
\n\t
lol
cat
rs
f - g
\t
Output f's contents, then stdin, then g's contents.
\n\t
fortune |
lol
cat
\t
Display a rainbow cookie."
after_help
=
"Examples:
\n\t
dota
cat f - g
\t
Output f's contents, then stdin, then g's contents.
\n\t
fortune |
dota
cat
\t
Display a rainbow cookie."
)]
struct
CmdOpts
{
#[clap(short
=
'p'
,
long,
default_value
=
"1.0"
)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment