Skip to content

Instantly share code, notes, and snippets.

View sanketss84's full-sized avatar
๐Ÿ‘†
Fly Higher

Sanket Sonavane sanketss84

๐Ÿ‘†
Fly Higher
  • Mumbai, India
  • 08:21 (UTC +05:30)
View GitHub Profile
@sanketss84
sanketss84 / sample.md
Created March 31, 2018 06:45 — forked from bradtraversy/sample.md
Markdown Cheat Sheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

This text is italic

@sanketss84
sanketss84 / 0_reuse_code.js
Last active August 29, 2015 14:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@sanketss84
sanketss84 / JS : Show Window Resolution in DIV using jQuery
Last active August 29, 2015 14:12
JS : Show Window Resolution in DIV using jQuery
HTML
<section>
<div id="pageresol"></div>
</section>
//Window Resize
var wh = "";
wh = $(window).width() + ' x ' + $(window).height();
$('#pageresol').text(wh);
Add to Pocket Backtick command
backtick.io
NOTE : Each user might have his own bookmarklet code please fork this and change the command.js with your bookmarklet code.
Log in to your pocket account and get your bookrmarklet from here
https://getpocket.com/add
ReadMore Here
http://help.getpocket.com/customer/portal/articles/483627-using-the-pocket-bookmarklet
@sanketss84
sanketss84 / CSS : Enjoy CSS : 3D Text Effect
Created December 27, 2014 06:13
CSS : Enjoy CSS : 3D Text Effect
/*
Enjoy CSS : 3D Text Effect
http://enjoycss.com/
*/
.enjoy-css {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
cursor: pointer;
@sanketss84
sanketss84 / CSS : Blue Neon Glow around TextBox and TextArea on Focus
Created December 27, 2014 06:12
CSS : Blue Neon Glow around TextBox and TextArea on Focus
/*
Neon Glow for Text and Text Area
http://css-tricks.com/snippets/css/glowing-blue-input-highlights/
*/
input[type=text], textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
@sanketss84
sanketss84 / CSS Palette Colors JSON
Last active August 29, 2015 14:11
CSS Palettes Colors JSON
/* http://www.colourlovers.com/palettes */
var colors = {"Monokai":{"Black":"#272822","Pink":"#F92672","SkyBlue":"#66D9EF","LimeGreen":"#A6E22E","Orange":"#FD971F"},"GiantGoldFish":{"SkyBlue":"#69D2E7","MuddySkyBlue":"#A7DBD8","Muddy":"#E0E4CC","Orange":"#F38630","FlashyOrange":"#FA6900"},"Solarized":{"Base03":"#002B36","Base02":"#073642","Base01":"#586E75","Base00":"#657B83","Base0":"#839496","Base1":"#93A1A1","Base2":"#EEE8D5","Base3":"#FDF6E3","Yellow":"#B58900","Orange":"#CB4B16","Red":"#DC322F","Magenta":"#D33682","Violet":"#6C71C4","Blue":"#268BD2","Cyan":"#2AA198","Green":"#859900"},"Glow":{"Blue":"#51CBEE"}};
var colors = {
"Monokai":{"Black":"#272822","Pink":"#F92672","SkyBlue":"#66D9EF","LimeGreen":"#A6E22E","Orange":"#FD971F"},
"GiantGoldFish":{"SkyBlue":"#69D2E7","MuddySkyBlue":"#A7DBD8","Muddy":"#E0E4CC","Orange":"#F38630","FlashyOrange":"#FA6900"},
"Solarized":{"Base03":"#002B36","Base02":"#073642","Base01":"#586E75","Base00":"#657B83",
"Base0":"#839496","Base1":"#93A1A1","Base2":"#EEE
/*
Check Color Codes Online
http://www.color-hex.com/
*/
/*
Solarized
http://ethanschoonover.com/solarized
*/
@sanketss84
sanketss84 / HTML Sample for Selector Test
Created December 22, 2014 09:43
HTML Sample for Selector Test
<!--
Important Links
http://snipplr.com/view.php?codeview&id=8121
http://www.99lime.com/elements/#list-example
http://codylindley.com/jqueryselectors/
http://www.w3schools.com/jquery/jquery_ref_selectors.asp
-->
<html>
<head>
@sanketss84
sanketss84 / CSS : CSS Reset By Meyers
Last active August 29, 2015 14:11
CSS : CSS Reset By Meyers
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
/* Meyers CSS Reset Starts */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,