[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"content:legacy:page:\u002Fcheatsheets\u002Fsql":3,"content:legacy:surround:\u002Fcheatsheets\u002Fsql":491,"content:legacy:navigation":500},{"id":4,"title":5,"body":6,"description":479,"extension":480,"icon":481,"meta":482,"modifiedAt":483,"navigation":90,"path":484,"publishedAt":485,"seo":486,"sitemap":487,"stem":489,"updatedAt":488,"__hash__":490},"cheatsheets\u002Fcheatsheets\u002Fsql.md","SQL",{"type":7,"value":8,"toc":477},"minimark",[9,14,50,54,128,132,185,189,256,260,280,284,314,318,333,337,362,366,444,448,473],[10,11,13],"h5",{"id":12},"️-database","🗄️ Database",[15,16,21],"pre",{"className":17,"code":18,"language":19,"meta":20,"style":20},"language-sql shiki shiki-themes github-light github-dark","CREATE DATABASE mydb;\nDROP DATABASE mydb;\nUSE mydb;\nSHOW DATABASES;\n","sql","",[22,23,24,32,38,44],"code",{"__ignoreMap":20},[25,26,29],"span",{"class":27,"line":28},"line",1,[25,30,31],{},"CREATE DATABASE mydb;\n",[25,33,35],{"class":27,"line":34},2,[25,36,37],{},"DROP DATABASE mydb;\n",[25,39,41],{"class":27,"line":40},3,[25,42,43],{},"USE mydb;\n",[25,45,47],{"class":27,"line":46},4,[25,48,49],{},"SHOW DATABASES;\n",[10,51,53],{"id":52},"table","📁 Table",[15,55,57],{"className":17,"code":56,"language":19,"meta":20,"style":20},"CREATE TABLE users (\n  id INT PRIMARY KEY AUTO_INCREMENT,\n  name VARCHAR(100),\n  age INT\n);\n\nDROP TABLE users;\nALTER TABLE users ADD COLUMN email VARCHAR(255);\nALTER TABLE users DROP COLUMN age;\nRENAME TABLE users TO people;\nSHOW TABLES;\nDESCRIBE users;\n",[22,58,59,64,69,74,79,85,92,98,104,110,116,122],{"__ignoreMap":20},[25,60,61],{"class":27,"line":28},[25,62,63],{},"CREATE TABLE users (\n",[25,65,66],{"class":27,"line":34},[25,67,68],{},"  id INT PRIMARY KEY AUTO_INCREMENT,\n",[25,70,71],{"class":27,"line":40},[25,72,73],{},"  name VARCHAR(100),\n",[25,75,76],{"class":27,"line":46},[25,77,78],{},"  age INT\n",[25,80,82],{"class":27,"line":81},5,[25,83,84],{},");\n",[25,86,88],{"class":27,"line":87},6,[25,89,91],{"emptyLinePlaceholder":90},true,"\n",[25,93,95],{"class":27,"line":94},7,[25,96,97],{},"DROP TABLE users;\n",[25,99,101],{"class":27,"line":100},8,[25,102,103],{},"ALTER TABLE users ADD COLUMN email VARCHAR(255);\n",[25,105,107],{"class":27,"line":106},9,[25,108,109],{},"ALTER TABLE users DROP COLUMN age;\n",[25,111,113],{"class":27,"line":112},10,[25,114,115],{},"RENAME TABLE users TO people;\n",[25,117,119],{"class":27,"line":118},11,[25,120,121],{},"SHOW TABLES;\n",[25,123,125],{"class":27,"line":124},12,[25,126,127],{},"DESCRIBE users;\n",[10,129,131],{"id":130},"crud","📝 CRUD",[15,133,135],{"className":17,"code":134,"language":19,"meta":20,"style":20},"INSERT INTO users (name, age) VALUES ('Alice', 30);\nINSERT INTO users (name, age) VALUES ('Bob', 25), ('Carol', 22);\n\nSELECT * FROM users;\nSELECT name, age FROM users WHERE age > 25;\nSELECT * FROM users ORDER BY age DESC LIMIT 5;\nSELECT COUNT(*) FROM users;\n\nUPDATE users SET age = 31 WHERE name = 'Alice';\nDELETE FROM users WHERE name = 'Carol';\n",[22,136,137,142,147,151,156,161,166,171,175,180],{"__ignoreMap":20},[25,138,139],{"class":27,"line":28},[25,140,141],{},"INSERT INTO users (name, age) VALUES ('Alice', 30);\n",[25,143,144],{"class":27,"line":34},[25,145,146],{},"INSERT INTO users (name, age) VALUES ('Bob', 25), ('Carol', 22);\n",[25,148,149],{"class":27,"line":40},[25,150,91],{"emptyLinePlaceholder":90},[25,152,153],{"class":27,"line":46},[25,154,155],{},"SELECT * FROM users;\n",[25,157,158],{"class":27,"line":81},[25,159,160],{},"SELECT name, age FROM users WHERE age > 25;\n",[25,162,163],{"class":27,"line":87},[25,164,165],{},"SELECT * FROM users ORDER BY age DESC LIMIT 5;\n",[25,167,168],{"class":27,"line":94},[25,169,170],{},"SELECT COUNT(*) FROM users;\n",[25,172,173],{"class":27,"line":100},[25,174,91],{"emptyLinePlaceholder":90},[25,176,177],{"class":27,"line":106},[25,178,179],{},"UPDATE users SET age = 31 WHERE name = 'Alice';\n",[25,181,182],{"class":27,"line":112},[25,183,184],{},"DELETE FROM users WHERE name = 'Carol';\n",[10,186,188],{"id":187},"query-join","🔍 Query & Join",[15,190,192],{"className":17,"code":191,"language":19,"meta":20,"style":20},"SELECT * FROM users WHERE age BETWEEN 20 AND 30;\nSELECT * FROM users WHERE name LIKE 'A%';\nSELECT * FROM users WHERE age IN (22, 25, 30);\n\n-- INNER JOIN\nSELECT users.name, orders.amount\nFROM users\nINNER JOIN orders ON users.id = orders.user_id;\n\n-- LEFT JOIN\nSELECT users.name, orders.amount\nFROM users\nLEFT JOIN orders ON users.id = orders.user_id;\n",[22,193,194,199,204,209,213,218,223,228,233,237,242,246,250],{"__ignoreMap":20},[25,195,196],{"class":27,"line":28},[25,197,198],{},"SELECT * FROM users WHERE age BETWEEN 20 AND 30;\n",[25,200,201],{"class":27,"line":34},[25,202,203],{},"SELECT * FROM users WHERE name LIKE 'A%';\n",[25,205,206],{"class":27,"line":40},[25,207,208],{},"SELECT * FROM users WHERE age IN (22, 25, 30);\n",[25,210,211],{"class":27,"line":46},[25,212,91],{"emptyLinePlaceholder":90},[25,214,215],{"class":27,"line":81},[25,216,217],{},"-- INNER JOIN\n",[25,219,220],{"class":27,"line":87},[25,221,222],{},"SELECT users.name, orders.amount\n",[25,224,225],{"class":27,"line":94},[25,226,227],{},"FROM users\n",[25,229,230],{"class":27,"line":100},[25,231,232],{},"INNER JOIN orders ON users.id = orders.user_id;\n",[25,234,235],{"class":27,"line":106},[25,236,91],{"emptyLinePlaceholder":90},[25,238,239],{"class":27,"line":112},[25,240,241],{},"-- LEFT JOIN\n",[25,243,244],{"class":27,"line":118},[25,245,222],{},[25,247,248],{"class":27,"line":124},[25,249,227],{},[25,251,253],{"class":27,"line":252},13,[25,254,255],{},"LEFT JOIN orders ON users.id = orders.user_id;\n",[10,257,259],{"id":258},"indexes","🧩 Indexes",[15,261,263],{"className":17,"code":262,"language":19,"meta":20,"style":20},"CREATE INDEX idx_name ON users(name);\nDROP INDEX idx_name ON users;\nSHOW INDEX FROM users;\n",[22,264,265,270,275],{"__ignoreMap":20},[25,266,267],{"class":27,"line":28},[25,268,269],{},"CREATE INDEX idx_name ON users(name);\n",[25,271,272],{"class":27,"line":34},[25,273,274],{},"DROP INDEX idx_name ON users;\n",[25,276,277],{"class":27,"line":40},[25,278,279],{},"SHOW INDEX FROM users;\n",[10,281,283],{"id":282},"️-aggregate","🛡️ Aggregate",[15,285,287],{"className":17,"code":286,"language":19,"meta":20,"style":20},"SELECT AVG(age) FROM users;\nSELECT MIN(age), MAX(age) FROM users;\nSELECT SUM(age) FROM users;\nSELECT age, COUNT(*) FROM users GROUP BY age;\nHAVING COUNT(*) > 1;\n",[22,288,289,294,299,304,309],{"__ignoreMap":20},[25,290,291],{"class":27,"line":28},[25,292,293],{},"SELECT AVG(age) FROM users;\n",[25,295,296],{"class":27,"line":34},[25,297,298],{},"SELECT MIN(age), MAX(age) FROM users;\n",[25,300,301],{"class":27,"line":40},[25,302,303],{},"SELECT SUM(age) FROM users;\n",[25,305,306],{"class":27,"line":46},[25,307,308],{},"SELECT age, COUNT(*) FROM users GROUP BY age;\n",[25,310,311],{"class":27,"line":81},[25,312,313],{},"HAVING COUNT(*) > 1;\n",[10,315,317],{"id":316},"constraints","🔑 Constraints",[15,319,321],{"className":17,"code":320,"language":19,"meta":20,"style":20},"ALTER TABLE users ADD CONSTRAINT unique_email UNIQUE (email);\nALTER TABLE users ADD CONSTRAINT fk_order FOREIGN KEY (id) REFERENCES orders(user_id);\n",[22,322,323,328],{"__ignoreMap":20},[25,324,325],{"class":27,"line":28},[25,326,327],{},"ALTER TABLE users ADD CONSTRAINT unique_email UNIQUE (email);\n",[25,329,330],{"class":27,"line":34},[25,331,332],{},"ALTER TABLE users ADD CONSTRAINT fk_order FOREIGN KEY (id) REFERENCES orders(user_id);\n",[10,334,336],{"id":335},"import-export","📦 Import & Export",[15,338,340],{"className":17,"code":339,"language":19,"meta":20,"style":20},"-- MySQL\nSOURCE backup.sql;\n-- PostgreSQL\n\\i backup.sql\n",[22,341,342,347,352,357],{"__ignoreMap":20},[25,343,344],{"class":27,"line":28},[25,345,346],{},"-- MySQL\n",[25,348,349],{"class":27,"line":34},[25,350,351],{},"SOURCE backup.sql;\n",[25,353,354],{"class":27,"line":40},[25,355,356],{},"-- PostgreSQL\n",[25,358,359],{"class":27,"line":46},[25,360,361],{},"\\i backup.sql\n",[10,363,365],{"id":364},"backup-restore","💾 Backup & Restore",[15,367,371],{"className":368,"code":369,"language":370,"meta":20,"style":20},"language-bash shiki shiki-themes github-light github-dark","mysqldump -u user -p mydb > backup.sql\nmysql -u user -p mydb \u003C backup.sql\n\npg_dump mydb > backup.sql\npsql mydb \u003C backup.sql\n","bash",[22,372,373,400,418,422,433],{"__ignoreMap":20},[25,374,375,379,383,387,390,393,397],{"class":27,"line":28},[25,376,378],{"class":377},"sScJk","mysqldump",[25,380,382],{"class":381},"sj4cs"," -u",[25,384,386],{"class":385},"sZZnC"," user",[25,388,389],{"class":381}," -p",[25,391,392],{"class":385}," mydb",[25,394,396],{"class":395},"szBVR"," >",[25,398,399],{"class":385}," backup.sql\n",[25,401,402,405,407,409,411,413,416],{"class":27,"line":34},[25,403,404],{"class":377},"mysql",[25,406,382],{"class":381},[25,408,386],{"class":385},[25,410,389],{"class":381},[25,412,392],{"class":385},[25,414,415],{"class":395}," \u003C",[25,417,399],{"class":385},[25,419,420],{"class":27,"line":40},[25,421,91],{"emptyLinePlaceholder":90},[25,423,424,427,429,431],{"class":27,"line":46},[25,425,426],{"class":377},"pg_dump",[25,428,392],{"class":385},[25,430,396],{"class":395},[25,432,399],{"class":385},[25,434,435,438,440,442],{"class":27,"line":81},[25,436,437],{"class":377},"psql",[25,439,392],{"class":385},[25,441,415],{"class":395},[25,443,399],{"class":385},[10,445,447],{"id":446},"️-misc","🛠️ Misc",[15,449,451],{"className":17,"code":450,"language":19,"meta":20,"style":20},"SHOW PROCESSLIST;\nSHOW STATUS;\nSHOW VARIABLES;\nSELECT @@version;\n",[22,452,453,458,463,468],{"__ignoreMap":20},[25,454,455],{"class":27,"line":28},[25,456,457],{},"SHOW PROCESSLIST;\n",[25,459,460],{"class":27,"line":34},[25,461,462],{},"SHOW STATUS;\n",[25,464,465],{"class":27,"line":40},[25,466,467],{},"SHOW VARIABLES;\n",[25,469,470],{"class":27,"line":46},[25,471,472],{},"SELECT @@version;\n",[474,475,476],"style",{},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html pre.shiki code .sScJk, html code.shiki .sScJk{--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .sj4cs, html code.shiki .sj4cs{--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}html pre.shiki code .szBVR, html code.shiki .szBVR{--shiki-default:#D73A49;--shiki-dark:#F97583}",{"title":20,"searchDepth":34,"depth":34,"links":478},[],"A comprehensive guide to SQL (Structured Query Language).","md","material-icon-theme:database",{},null,"\u002Fcheatsheets\u002Fsql","2025-08-14",{"title":5,"description":479},{"loc":484,"lastmod":488},"2025-08-25T11:45:43+07:00","cheatsheets\u002Fsql","xSmfjLZ2uPJBTBwBfwQHe7f87UuISnBbOMTzl_x1lr8",[492,496],{"title":493,"path":494,"stem":495,"children":-1},"Redis","\u002Fcheatsheets\u002Fredis","cheatsheets\u002Fredis",{"title":497,"path":498,"stem":499,"children":-1},"Typescript","\u002Fcheatsheets\u002Ftypescript","cheatsheets\u002Ftypescript",[501,651,750,771],{"title":502,"icon":503,"path":504,"stem":505,"children":506,"page":516},"Posts","fluent-color:data-bar-vertical-ascending-24","\u002Fposts","posts",[507,517,535,561,571,585,595,605,615,641],{"title":508,"icon":481,"redirect":509,"path":510,"stem":511,"children":512,"page":516},"Database","\u002Fposts\u002Fdatabase\u002Freplication-strategy","\u002Fposts\u002Fdatabase","posts\u002Fdatabase",[513],{"title":514,"path":509,"stem":515,"icon":483},"Database Replication strategy in large systems","posts\u002Fdatabase\u002Freplication-strategy",false,{"title":518,"icon":519,"redirect":520,"path":521,"stem":522,"children":523,"page":516},"Docker","vscode-icons:file-type-docker2","\u002Fposts\u002Fdocker\u002Fdocker-commands","\u002Fposts\u002Fdocker","posts\u002Fdocker",[524,527,531],{"title":525,"path":520,"stem":526,"icon":483},"Docker commands essentials","posts\u002Fdocker\u002Fdocker-commands",{"title":528,"path":529,"stem":530,"icon":483},"Some useful Dockerfile templates","\u002Fposts\u002Fdocker\u002Fdockerfile-templates","posts\u002Fdocker\u002Fdockerfile-templates",{"title":532,"path":533,"stem":534,"icon":483},"Setup Docker environment on Windows","\u002Fposts\u002Fdocker\u002Fsetup-docker-on-window","posts\u002Fdocker\u002Fsetup-docker-on-window",{"title":536,"icon":537,"redirect":538,"path":539,"stem":540,"children":541,"page":516},"Git & GitHub","material-icon-theme:git","\u002Fposts\u002Fgit\u002Fbrightly-decorate-graph","\u002Fposts\u002Fgit","posts\u002Fgit",[542,545,549,553,557],{"title":543,"path":538,"stem":544,"icon":483},"Brightly decorate your GitHub Graph","posts\u002Fgit\u002Fbrightly-decorate-graph",{"title":546,"path":547,"stem":548,"icon":483},"Download a specific folder on GitHub repository","\u002Fposts\u002Fgit\u002Fdownload-specific-folder","posts\u002Fgit\u002Fdownload-specific-folder",{"title":550,"path":551,"stem":552,"icon":483},"Syncing Git Tags across to other repositories","\u002Fposts\u002Fgit\u002Fsyncing-tags-across-repositories","posts\u002Fgit\u002Fsyncing-tags-across-repositories",{"title":554,"path":555,"stem":556,"icon":483},"Unlocking GitHub Achievement badges","\u002Fposts\u002Fgit\u002Funlocking-achievement-badges","posts\u002Fgit\u002Funlocking-achievement-badges",{"title":558,"path":559,"stem":560,"icon":483},"Essential Git commands every developer should master","\u002Fposts\u002Fgit\u002Fuseful-commands-like-pro","posts\u002Fgit\u002Fuseful-commands-like-pro",{"title":562,"icon":563,"redirect":564,"path":565,"stem":566,"children":567,"page":516},"Golang","material-icon-theme:go","\u002Fposts\u002Fgolang\u002Foptimizing-performance-with-pgo","\u002Fposts\u002Fgolang","posts\u002Fgolang",[568],{"title":569,"path":564,"stem":570,"icon":483},"Optimizing Performance in Go Applications with PGO","posts\u002Fgolang\u002Foptimizing-performance-with-pgo",{"title":572,"icon":573,"redirect":574,"path":575,"stem":576,"children":577,"page":516},"JavaScript","vscode-icons:file-type-js","\u002Fposts\u002Fjavascript\u002F9-lines-of-tips","\u002Fposts\u002Fjavascript","posts\u002Fjavascript",[578,581],{"title":579,"path":574,"stem":580,"icon":483},"9 lines of JavaScript replace 50 lines of code","posts\u002Fjavascript\u002F9-lines-of-tips",{"title":582,"path":583,"stem":584,"icon":483},"Javascript Promises - Specific functions and use cases","\u002Fposts\u002Fjavascript\u002Fpromises-cheatsheet","posts\u002Fjavascript\u002Fpromises-cheatsheet",{"title":586,"icon":587,"redirect":588,"path":589,"stem":590,"children":591,"page":516},"Node","material-icon-theme:nodejs-alt","\u002Fposts\u002Fnodejs\u002Fevent-loop","\u002Fposts\u002Fnodejs","posts\u002Fnodejs",[592],{"title":593,"path":588,"stem":594,"icon":483},"Secret about Event Loop flow in Nodejs","posts\u002Fnodejs\u002Fevent-loop",{"title":596,"icon":597,"redirect":598,"path":599,"stem":600,"children":601,"page":516},"Nuxt","vscode-icons:file-type-nuxt","\u002Fposts\u002Fnuxt\u002Fenable-pwa-in-nuxt","\u002Fposts\u002Fnuxt","posts\u002Fnuxt",[602],{"title":603,"path":598,"stem":604,"icon":483},"Enable PWA and Service Worker in Nuxt","posts\u002Fnuxt\u002Fenable-pwa-in-nuxt",{"title":606,"icon":607,"redirect":608,"path":609,"stem":610,"children":611,"page":516},"Performance","emojione:rocket","\u002Fposts\u002Fperformance\u002Fbackground-image-injection-problem","\u002Fposts\u002Fperformance","posts\u002Fperformance",[612],{"title":613,"path":608,"stem":614,"icon":483},"Background-Image injection problem in UX","posts\u002Fperformance\u002Fbackground-image-injection-problem",{"title":616,"icon":617,"redirect":618,"path":619,"stem":620,"children":621,"page":516},"Tutorial","fluent-color:book-open-lightbulb-24","\u002Fposts\u002Ftutorial\u002Fclassification-and-functionality-of-the-servers","\u002Fposts\u002Ftutorial","posts\u002Ftutorial",[622,625,629,633,637],{"title":623,"path":618,"stem":624,"icon":483},"Classification and functionality of the servers","posts\u002Ftutorial\u002Fclassification-and-functionality-of-the-servers",{"title":626,"path":627,"stem":628,"icon":483},"What is the difference between localhost and 127.0.0.1?","\u002Fposts\u002Ftutorial\u002Fdifferent-between-localhost-and-127-0-0-1","posts\u002Ftutorial\u002Fdifferent-between-localhost-and-127-0-0-1",{"title":630,"path":631,"stem":632,"icon":483},"8 essential network protocols every programmer should know","\u002Fposts\u002Ftutorial\u002Fessential-network-protocols","posts\u002Ftutorial\u002Fessential-network-protocols",{"title":634,"path":635,"stem":636,"icon":483},"Pre rels in header link tag - SEO technique enhancement","\u002Fposts\u002Ftutorial\u002Fpre-rels-in-header-link-tag","posts\u002Ftutorial\u002Fpre-rels-in-header-link-tag",{"title":638,"path":639,"stem":640,"icon":483},"Better code with SOLID principles","\u002Fposts\u002Ftutorial\u002Fwhat-is-solid","posts\u002Ftutorial\u002Fwhat-is-solid",{"title":642,"icon":643,"redirect":644,"path":645,"stem":646,"children":647,"page":516},"UI\u002FUX","devicon:figma","\u002Fposts\u002Fuiux\u002Fcommon-button-mistake","\u002Fposts\u002Fuiux","posts\u002Fuiux",[648],{"title":649,"path":644,"stem":650,"icon":483},"Common Button Mistake in UI\u002FUX","posts\u002Fuiux\u002Fcommon-button-mistake",{"title":652,"icon":653,"path":654,"stem":655,"children":656,"page":516},"Cheatsheets","fluent-color:paw-16","\u002Fcheatsheets","cheatsheets",[657,662,667,670,675,678,683,687,692,697,702,707,712,717,721,725,730,732,733,735,740,745],{"title":658,"path":659,"stem":660,"icon":661},"Bash","\u002Fcheatsheets\u002Fbash","cheatsheets\u002Fbash","material-icon-theme:powershell",{"title":663,"path":664,"stem":665,"icon":666},"CSS","\u002Fcheatsheets\u002Fcss","cheatsheets\u002Fcss","vscode-icons:file-type-css2",{"title":518,"path":668,"stem":669,"icon":519},"\u002Fcheatsheets\u002Fdocker","cheatsheets\u002Fdocker",{"title":671,"path":672,"stem":673,"icon":674},"Git","\u002Fcheatsheets\u002Fgit","cheatsheets\u002Fgit","devicon:git",{"title":562,"path":676,"stem":677,"icon":563},"\u002Fcheatsheets\u002Fgo","cheatsheets\u002Fgo",{"title":679,"path":680,"stem":681,"icon":682},"HTML","\u002Fcheatsheets\u002Fhtml","cheatsheets\u002Fhtml","material-icon-theme:html",{"title":572,"path":684,"stem":685,"icon":686},"\u002Fcheatsheets\u002Fjavascript","cheatsheets\u002Fjavascript","material-icon-theme:javascript",{"title":688,"path":689,"stem":690,"icon":691},"Latex","\u002Fcheatsheets\u002Flatex","cheatsheets\u002Flatex","material-icon-theme:latexmk",{"title":693,"path":694,"stem":695,"icon":696},"Linux","\u002Fcheatsheets\u002Flinux","cheatsheets\u002Flinux","devicon:linux",{"title":698,"path":699,"stem":700,"icon":701},"Markdown","\u002Fcheatsheets\u002Fmarkdown","cheatsheets\u002Fmarkdown","material-icon-theme:markdown",{"title":703,"path":704,"stem":705,"icon":706},"Mongo","\u002Fcheatsheets\u002Fmongo","cheatsheets\u002Fmongo","devicon:mongodb",{"title":708,"path":709,"stem":710,"icon":711},"Nest","\u002Fcheatsheets\u002Fnest","cheatsheets\u002Fnest","material-icon-theme:nest",{"title":713,"path":714,"stem":715,"icon":716},"Next","\u002Fcheatsheets\u002Fnext","cheatsheets\u002Fnext","logos:nextjs-icon",{"title":586,"path":718,"stem":719,"icon":720},"\u002Fcheatsheets\u002Fnode","cheatsheets\u002Fnode","material-icon-theme:nodejs",{"title":596,"path":722,"stem":723,"icon":724},"\u002Fcheatsheets\u002Fnuxt","cheatsheets\u002Fnuxt","material-icon-theme:nuxt",{"title":726,"path":727,"stem":728,"icon":729},"React","\u002Fcheatsheets\u002Freact","cheatsheets\u002Freact","material-icon-theme:react",{"title":493,"path":494,"stem":495,"icon":731},"vscode-icons:folder-type-redis-opened",{"title":5,"path":484,"stem":489,"icon":481},{"title":497,"path":498,"stem":499,"icon":734},"material-icon-theme:typescript",{"title":736,"path":737,"stem":738,"icon":739},"Vercel","\u002Fcheatsheets\u002Fvercel","cheatsheets\u002Fvercel","vscode-icons:file-type-light-vercel",{"title":741,"path":742,"stem":743,"icon":744},"Vue","\u002Fcheatsheets\u002Fvue","cheatsheets\u002Fvue","material-icon-theme:vue",{"title":746,"path":747,"stem":748,"icon":749},"Windows","\u002Fcheatsheets\u002Fwindow","cheatsheets\u002Fwindow","material-icon-theme:folder-windows",{"title":751,"icon":752,"path":753,"stem":754,"children":755,"page":516},"Templates","fluent-color:data-pie-24","\u002Ftemplates","templates",[756,759,762,765,768],{"title":562,"path":757,"stem":758,"icon":563},"\u002Ftemplates\u002Fgo","templates\u002Fgo",{"title":713,"path":760,"stem":761,"icon":716},"\u002Ftemplates\u002Fnext","templates\u002Fnext",{"title":596,"path":763,"stem":764,"icon":724},"\u002Ftemplates\u002Fnuxt","templates\u002Fnuxt",{"title":726,"path":766,"stem":767,"icon":729},"\u002Ftemplates\u002Freact","templates\u002Freact",{"title":741,"path":769,"stem":770,"icon":744},"\u002Ftemplates\u002Fvue","templates\u002Fvue",{"title":772,"icon":653,"path":773,"stem":774,"children":775,"page":516},"Interviews","\u002Finterviews","interviews",[776],{"title":679,"path":777,"stem":778,"icon":682},"\u002Finterviews\u002Fhtml","interviews\u002Fhtml"]