QuickFuzz
An experimental grammar fuzzer in Haskell using QuickCheck
File Explorer
- Exec.hs
- Gen.hs
- GenTest.hs
- List.hs
- MutTest.hs
- Serve.hs
- Shrink.hs
- Test.hs
- Console.hs
- Decoding.hs
- Generation.hs
- Mutation.hs
- Patch.hs
- Shrink.hs
- Unique.hs
- Args.hs
- Debug.hs
- DeriveDispatcher.hs
- Exception.hs
- Formats.hs
- Fuzzers.hs
- Main.hs
- Process.hs
- Utils.hs
- adding-new-file-format.md
- haskell-style.md
- Actions.hs
- Arbitrary.hs
- Fixable.hs
- Generator.hs
- Mutation.hs
- Mutators.hs
- NFData.hs
- Show.hs
- Tar.hs
- Zip.hs
- ByteString.hs
- Image.hs
- Regex.hs
- String.hs
- Time.hs
- Unicode.hs
- Value.hs
- Vector.hs
- .gitignore
- .travis.yml
- AbsGrammar.hs
- Grammar.cf
- Grammar.hs
- PrintGrammar.hs
- C.hs
- Evm.hs
- GLSL.hs
- Go.hs
- Js.hs
- Lua.hs
- Python.hs
- Css.hs
- EPS.hs
- Html.hs
- PDF.hs
- PS.hs
- Xml.hs
- Gif.hs
- Jpeg.hs
- Png.hs
- SVG.hs
- Tga.hs
- Tiff.hs
- Wav.hs
- HTTP.hs
- ASN1.hs
- CRL.hs
- X509.hs
- Archive.hs
- Base.hs
- Bnfc.hs
- Code.hs
- Document.hs
- FormatInfo.hs
- Image.hs
- Media.hs
- Network.hs
- Pki.hs
- Derive.hs
- Global.hs
- .gitignore
- circle.yml
- install_fuzzers.sh
- LICENSE
- QuickFuzz.cabal
- README.md
- Setup.hs
- stack.yaml
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
alex
View Details ▼
alex
Catch insensitive, inconsiderate writing.
It helps you find gender favouring, polarising, race related, religion inconsiderate, or other unequal phrasing in text.
echo {{His network looks good}} | alex --stdin
Analyze text from `stdin`:
alex
Analyze all files in the current directory:
alex {{path/to/file.md}}
Analyze a specific file:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
stack
View Details ▼
stack
Manage Haskell projects.
stack new {{package}} {{template}}
Create a new package:
stack build
Compile a package:
stack test
Run tests inside a package:
