Skip to content

Instantly share code, notes, and snippets.

View hypackel's full-sized avatar

Hypackel hypackel

View GitHub Profile
@hypackel
hypackel / Cheet-sheet.md
Created January 22, 2022 20:22
mongodb Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@hypackel
hypackel / index.js
Created January 13, 2022 03:45
Recapcha set required
window.onload = function() {
var $recaptcha = document.querySelector('#g-recaptcha-response');
if($recaptcha) {
$recaptcha.setAttribute("required", "required");
}
};
@hypackel
hypackel / index.html
Created January 13, 2022 03:42
Html Document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>