Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View MajhiRockzZ's full-sized avatar
learning coding and hacking

Sumesh Majhi ⚡ MajhiRockzZ

learning coding and hacking
View GitHub Profile
@MajhiRockzZ
MajhiRockzZ / VSCodeTipsandTricks.md
Created March 30, 2020 19:56
VS Code | Tips and Tricks 🎹

VS Code | Tips and Tricks 🎹

  • Command palette : Ctrl + Shift + P
  • Quick open : Ctrl + P 🎁 ?
  • Open recent : Ctrl + R
  • Errors and warning : Ctrl + Shift + M
  • Change language mode : Ctrl + K M
  • Change theme : Ctrl + K Ctrl + T
  • Customize Shortcuts : Ctrl + K Ctrl + S
  • Open settings : Ctrl + ,
@MajhiRockzZ
MajhiRockzZ / settings.json
Last active October 9, 2019 10:31
⚡ My VSCode Settings
{
/* ==== DEMOS ! ==== */
"update.mode": "none",
"extensions.autoCheckUpdates": true,
/* ==== SETTINGS ==== */
"workbench.settings.editor": "json",
/* ==== EDITOR ==== */
"editor.cursorSmoothCaretAnimation": true,
@MajhiRockzZ
MajhiRockzZ / ajax-fetch-json.js
Created August 29, 2019 16:43
AJAX JSON FETCH
const DOG_URL = "https://dog.ceo/api/breeds/image/random";
// console.log(DOG_URL);
// const promise = fetch(DOG_URL);
const doggos = document.querySelector(".doggos");
// console.log(promise);
function addNewDoggo() {