QuickFuzz

(★ 196)

An experimental grammar fuzzer in Haskell using QuickCheck

파일 탐색기

  • .gitignore
  • circle.yml
  • install_fuzzers.sh
  • LICENSE
  • QuickFuzz.cabal
  • README.md
  • Setup.hs
  • stack.yaml

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

alex

설명 보기 ▼

민감하지 않고, 사려깊지 않은 글을 잡는 도구.
이것은 당신이 선호 성별, 양극화, 인종 관련, 종교에 대한 고려가 불분명하거나 다른 문구가 아닌 문구를 찾는데 도움이 됩니다.
더 많은 정보: <https://github.com/get-alex/alex>.

echo {{His network looks good}} | alex --stdin

`stdin`으로부터 텍스트 분석:

alex

현재 디렉토리의 모든 파일 분석:

alex {{path/to/file.md}}

특정 파일 분석:

🔍

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

설명 보기 ▼

Haskell 프로젝트 관리 도구.
더 많은 정보: <https://docs.haskellstack.org/en/stable/commands/>.

stack new {{package}} {{template}}

새 패키지 생성:

stack build

패키지 컴파일:

stack test

패키지 내 테스트 실행:

// repository documentation