QuickFuzz
An experimental grammar fuzzer in Haskell using QuickCheck
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
alex
설명 보기 ▼
alex
민감하지 않고, 사려깊지 않은 글을 잡는 도구.
이것은 당신이 선호 성별, 양극화, 인종 관련, 종교에 대한 고려가 불분명하거나 다른 문구가 아닌 문구를 찾는데 도움이 됩니다.
더 많은 정보: <https://github.com/get-alex/alex>.
echo {{His network looks good}} | alex --stdin
`stdin`으로부터 텍스트 분석:
alex
현재 디렉토리의 모든 파일 분석:
alex {{path/to/file.md}}
특정 파일 분석:
git clone
설명 보기 ▼
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
설명 보기 ▼
stack
Haskell 프로젝트 관리 도구.
더 많은 정보: <https://docs.haskellstack.org/en/stable/commands/>.
stack new {{package}} {{template}}
새 패키지 생성:
stack build
패키지 컴파일:
stack test
패키지 내 테스트 실행:
