Skip to content

Instantly share code, notes, and snippets.

@yanli0303
yanli0303 / jenkins-with-docker.md
Created July 14, 2023 16:14
Set up Jenkins server with Docker
@yanli0303
yanli0303 / html-script-integrity.sh
Created August 10, 2021 14:11
Shell command for calculating the HTML script tag integrity
cat SCRIPT_FILE | openssl dgst -sha512 -binary | openssl base64 -A
/* https://animista.net/ */
.typing {
animation: typing 2s steps(22), blink .5s step-end infinite alternate;
}
  • build: Build related changes (eg: npm related/ adding external dependencies)
  • chore: A code change that external user won't see (eg: change to .gitignore file or .prettierrc file)
  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation related changes
  • refactor: A code that neither fix bug nor adds a feature. (eg: You can use this when there is semantic changes like renaming a variable/ function name)
  • perf: A code that improves performance
  • style: A code that is related to styling
  • test: Adding new test or making changes to existing test