Skip to content

Instantly share code, notes, and snippets.

View dip4k's full-sized avatar

Dipak Chauhan dip4k

  • Epam Systems
  • Pune, MAharashtra,India
View GitHub Profile
# oh-my-posh 2
#oh-my-posh --init --shell pwsh --config ~\oh-my-posh\themes\craver.omp.json | Invoke-Expression
#oh-my-posh --init --shell pwsh --config ~\oh-my-posh\themes\p10k_rainbow.omp.json | Invoke-Expression
## theme lists
# "1_shell","agnoster.minimal","agnoster","agnosterplus","aliens","amro","atomic","atomicBit","avit","blue-owl","blueish","bubbles","bubblesextra","bubblesline","capr4n","cert","chips","cinnamon","clean-detailed","cloud-native-azure","cobalt2","craver","darkblood","default","di4am0nd","dracula","easy-term","emodipt-extend","emodipt","festivetech","fish","free-ukraine","gmay","grandpa-style","gruvbox","half-life","honukai","hotstick.minimal","hul10","hunk","huvix","if_tea","iterm2","jandedobbeleer","jblab_2021","jonnychipz","json","jtracey93","jv_sitecorian","kali","kushal","lambda","lambdageneration","larserikfinholt","M365Princess","marcduiker","markbull","material","microverse-power","mojada","montys","mt","multiverse-neon","negligible","neko","night-owl","nordtron","nu4a","onehal
{
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// editor
"editor.fontFamily": "'Cascadia Code Pl','Droid Sans Mono Slashed','Fira Code',Hack,'Source Code Pro',Monaco,'Fira mono','Operator Mono', Inconsolata, Monofur, Menlo,Hack,Consolas",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.wordWrap": "bounded",
"editor.wrappingIndent": "indent",
@dip4k
dip4k / settings_dektop.json
Last active October 10, 2021 10:47
vs code settings
{
"workbench.iconTheme": "vscode-icons",
// editor
"editor.letterSpacing": 0.7,
"editor.lineHeight": 25,
"editor.fontFamily": "'Cascadia Code','Cascadia Code Regular',Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.cursorStyle": "line",
@dip4k
dip4k / cloudSettings
Created November 7, 2019 18:47
vs code lappy settings
{"lastUpload":"2019-11-07T18:46:48.244Z","extensionVersion":"v3.4.3"}
@dip4k
dip4k / cloudSettings
Created November 7, 2019 06:38
Visual Studio Code Insider Settings Sync Gist
{"lastUpload":"2019-11-07T06:38:39.575Z","extensionVersion":"v3.4.3"}
@dip4k
dip4k / front-end-curriculum.md
Created January 26, 2018 15:21 — forked from stevekinney/front-end-curriculum.md
Front-end Curriculum Draft

Module 1

  • Semantic markup
  • HTML standards mode and quirks mode
  • HTML fundamentals
    • Classes and IDs
  • CSS fundamentals
    • Selectors
    • Resets and normalizers
    • The box model
@dip4k
dip4k / gulpfile.js
Created December 26, 2017 05:53 — forked from atelic/gulpfile.js
Basic gulpfile for minify and concat css and javascript
/*
Before using make sure you have:
npm install --save-dev gulp gulp-minify-css gulp-concat gulp-uglify gulp-autoprefixer gulp-sass
Make sure to change the directory names in the default watch function to the CSS/SCSS/SASS directories you are using so it reloads
*/
var gulp = require('gulp'),
minifyCSS = require('gulp-minify-css'),
concat = require('gulp-concat')
@dip4k
dip4k / README.md
Created December 19, 2017 05:20 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@dip4k
dip4k / Media_Queries.css
Created November 6, 2017 05:31 — forked from EmranAhmed/1. main.css
CSS Responsive breakpoint, Media Query break point
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->