Skip to content

Instantly share code, notes, and snippets.

View himan20's full-sized avatar
🏠
Working from home

Himanshu himan20

🏠
Working from home
View GitHub Profile
@himan20
himan20 / designer.html
Last active August 29, 2015 14:10
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<link rel="import" href="../core-icons/core-icons.html">
@himan20
himan20 / settings.json
Last active March 21, 2017 02:58
My VS Code Configuration
{
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.cursorBlinking": "smooth",
"workbench.welcome.enabled": true,
"workbench.iconTheme": "vscode-icons",
"zenMode.hideTabs": false,
"files.autoSave": "afterDelay",
"editor.formatOnPaste": true,
@himan20
himan20 / launch.json
Last active March 23, 2017 09:34
VS Code Launch.json file to debug node/react application using babel-node
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Node",
@himan20
himan20 / js_console_tips.js
Created June 20, 2017 04:23
Some examples of usage of Console object for debugging purposes in Javascript. Refer link : https://medium.freecodecamp.com/how-to-get-the-most-out-of-the-javascript-console-b57ca9db3e6d
/*
* Some Examples of Using Javascript Console object more efficiently
*/
/////// SAMPLE DATA
var obj = {
name : 'Mr.Grok',
prof : 'SW',
place : 'CrimeCity',
knownAs : 'SupremeLeader'