Skip to content

Instantly share code, notes, and snippets.

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

Abhisek Pattnaik abhisekp

🏠
Working from home
View GitHub Profile
@abhisekp
abhisekp / dabblet.css
Created February 16, 2016 18:50
Glass Effect Demo
/**
* Glass Effect Demo
*/
* { box-sizing: border-box;}html,body { min-height: 100%; display: flex; flex-direction: column; /*align-content: center;*/ justify-content: center;}body { background: #333; background: url('//crossorigin.me/http://s20.postimg.org/ok95x8kq5/stone_art_min_jpg_rnd_0_201922501437366.jpg') no-repeat 100% 100%/cover; font-family: 'georgia';}.glass { background: rgba(0, 250, 154, .5); cursor: pointer; margin: 0 auto; width: 200px; height: 200px; /*border-radius: 1em;*/ border: 1em solid hsla(0, 0%, 100%, .5); background-clip: padding-box; padding: 1em;}.glass:hover { border-radius: 3em 0; transition: border-radius 1s ease-in-out; background-clip: content-box; /*background: transparent;*/}.glass > div { background-color: hsla(0, 0%, 100%, 1); border: 1em solid hsla(0, 0%, 100%, .5); background-clip: content-box; width: 100%; height: 100%; transition: inherit; opacity: 0.7; padding: .5em; display: flex; align-items: center; justify-content: center; font-
@abhisekp
abhisekp / keybase.md
Created April 13, 2016 16:15
Keybase

Keybase proof

I hereby claim:

  • I am abhisekp on github.
  • I am abhisekp (https://keybase.io/abhisekp) on keybase.
  • I have a public key ASCr-3B6lBNvBgd5P-zdr_jCBmSLe31ED4jS2nRMCVORwwo

To claim this, I am signing this object:

@abhisekp
abhisekp / introrx.md
Created May 23, 2016 21:00 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@abhisekp
abhisekp / # FCC Challenge Explanations.md
Last active April 26, 2017 04:07
FreeCodeCamp Challenge Explanations
@abhisekp
abhisekp / # FCC Quiz.md
Last active December 16, 2018 03:48
FreeCodeCamp Quiz

FreeCodeCamp Quiz

— by Abhisek Pattnaik <[email protected]>

How to format the Quiz?

  • Question filenames are numbers (decimal/integer) with an optional extension of text (txt | text) or markdown (md) or (html) (will be converted to markdown)
  • Answers to the correspoding question must append _ANSWER or .ANSWER or -ANSWER or <space | no-space>ANSWER (lowercase/uppercase/mixedcase/any)
  • Multiple answers to the same question can be numbered by appending a number (integer) after answer string. e.g. 45answer1
  • answer without any appended number is given highest priority
@abhisekp
abhisekp / # Functional Programming.md
Last active December 1, 2023 03:22
Understanding Functional Programming
@abhisekp
abhisekp / # FCC RegExp Solutions.md
Last active April 18, 2017 13:55
Solved using RegExp http://bit.ly/abhisekpFCCRegExpSolns — Solutions to FreeCodeCamp Challenges