Skip to content

Instantly share code, notes, and snippets.

View KaziMdMehediHasan's full-sized avatar
🎯
Focusing

Kazi Md. Mehedi Hasan KaziMdMehediHasan

🎯
Focusing
  • Khulna,Bangladesh
View GitHub Profile

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@KaziMdMehediHasan
KaziMdMehediHasan / AIDA64-LicenseKeys.txt
Created March 26, 2024 05:08 — forked from SkyN9ne/AIDA64-LicenseKeys.txt
AIDA64 license keys for all editions (last confirmed working on 17/02/2023)
NOTE: The last is the updated key for Extreme Edition v6.80
AIDA64 Business v6.30.5500
F2G21YRUD6JBDNRWD2TYFHXU6
UU55DQFID691DNFFDMAYRLWDM
3RSX1B3SD64AD92GD2MYUNSPA
4S8ARI1FD6QZD9IDDGLYRP9SL
1V8J3A1ID6N1DNUKDATYRVBDJ
YVM5FA4ID651DN4ND5AYHV6DD
@KaziMdMehediHasan
KaziMdMehediHasan / js_cookies.md
Created March 23, 2022 05:29 — forked from pronazmul/js_cookies.md
JavaScript Cookies

JavaScript Cookies

Create a Cookie:

  • JavaScript can create, read, and delete cookies with the document.cookie property.
  • Without Expire Time Browser will forget Cookie after reload or close browser. You can also add an expiry date (in UTC time).
  • If set path to root path=/ will be available everywhere inside application. By default, the cookie belongs to the root.
  • If set path to specific URL like path=/about will be available only inside that url.

Default Way:

@KaziMdMehediHasan
KaziMdMehediHasan / regex_exercises_01.js
Created February 19, 2021 05:41 — forked from codebubb/regex_exercises_01.js
Some Regex string testers
const ex1 = 'The quick brown fox jumped over the lazy dog';
const ex2 = 'A1B2C3D4E5F6G7H8I9J10';
const ex3 = 'The salad costs $9.99';
const ex4 = 'Contact customer support on 0800 300 500';
const ex5 = 'You can contact me on Twitter @codebubb or [email protected]';
// Exercise 01
// Using a regex pattern, get the 3 letter words in the ex1 string.