Skip to content

Instantly share code, notes, and snippets.

View minsung521's full-sized avatar

Minsung minsung521

  • IMPACT
  • Incheon,korea
  • 01:49 (UTC -12:00)
  • Instagram mingsung_521
View GitHub Profile
<!DOCTYPE html>
<html>
<body>
<script>
const dbReq = indexedDB.open('opentutorials',1);
let db;
dbReq.addEventListener('success', function(event){
db = event.target.result;
});
dbReq.addEventListener('error', function(event){

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example