Skip to content

Instantly share code, notes, and snippets.

View umeshmk's full-sized avatar
💭
Debugging Life !

Umesh Kadam umeshmk

💭
Debugging Life !
View GitHub Profile
hotkeys:
shell: {}
profile: {}
toggle-window: []
new-tab:
- - Ctrl-Shift-T
- - Ctrl-T
next-tab:
- - Ctrl-Shift-Right
- - Ctrl-Tab
@umeshmk
umeshmk / postcss.code-snippets
Last active February 10, 2021 15:27
Css snippets for Vscode
// emmet snippets foo.code-snippets
// src - https://github.com/emmetio/emmet/blob/master/snippets/css.json
// script to create - https://gist.github.com/umeshmk/41dc6e4f153c617db821d5cff83a58bd#file-script-js
// v3 - added correct colons, semicolons, spaces, ${0}
// v2 - prefix is changed to body. Better intellisense. eg: "ac" --> "align-content:center"
// v1 - prefix is shorter eg: "ac" for align-content
{
"@f": {
@umeshmk
umeshmk / vscode-settings.json
Created November 18, 2021 11:08
Vscode settings
{
"editor.fontLigatures": true,
// "editor.fontFamily": "'JetBrains Mono','Source Code Pro', 'Cascadia Code', Consolas, 'Courier New', monospace",
// "editor.fontFamily": "'JetBrains Mono'",
"editor.fontFamily": "'Source Code Pro'",
"editor.fontSize": 18,
"editor.suggestSelection": "first",
"editor.snippetSuggestions": "inline",
// "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// Run on browser
const c = (...arg) => {
console.log(...arg);
};
function hackWorkSpan(date) {
const api = `https://jsonmock.hackerrank.com/api/stocks?date=${date}`;
const print = (stock) => {
c('Open:', stock.open);