I hereby claim:
- I am laurenclark on github.
- I am dedlymufin (https://keybase.io/dedlymufin) on keybase.
- I have a public key ASA00sIrjd73MQpT-MbBn3sbVc8uLGRlzVk2qH9kyDfFmwo
To claim this, I am signing this object:
| const textInputs = document.querySelectorAll('input[type=text]'); | |
| const emailInputs = document.querySelectorAll('input[type=email]'); | |
| const allInputs = [...textInputs, ...emailInputs]; | |
| const textAreas = document.querySelectorAll('textarea'); | |
| for (let i = 0; i < allInputs.length; i++) { | |
| allInputs[i].value = "Read my CV!" | |
| } |
| module.exports = { | |
| root: true, | |
| env: { | |
| node: true | |
| }, | |
| extends: [ | |
| 'plugin:vue/essential', | |
| 'plugin:prettier/recommended', | |
| '@vue/prettier' | |
| ], |
| module.exports = { | |
| singleQuote: true, | |
| printWidth: 80, | |
| 'editor.formatOnSave': true, | |
| proseWrap: 'always', | |
| tabWidth: 4, | |
| requireConfig: false, | |
| useTabs: false, | |
| bracketSpacing: true, | |
| jsxBracketSameLine: true, |
| # copy from line 3 to 12 and paste in terminal | |
| sudo mkdir -p /Users/$USER/mongo/db; # to ask for a password at the beginning | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"; # install homebrew | |
| brew install wget; wget https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-4.2.1.tgz; | |
| tar -zxvf mongodb-macos-x86_64-4.2.1.tgz; | |
| cd mongodb-macos-x86_64-4.2.1; | |
| sudo cp ./bin/* /usr/local/bin/; sudo ln -s ./bin/* /usr/local/bin/; | |
| cd ..; rm -rf mongodb-macos-x86_64-4.2.1 mongodb-macos-x86_64-4.2.1.tgz; |
I hereby claim:
To claim this, I am signing this object:
| /* normal flexbox */ | |
| .flexbox .flex-container { | |
| display: -webkit-flex; | |
| display: -moz-flex; | |
| display: -ms-flex; | |
| display: flex; | |
| } | |
| .flexbox .flex-container.vertical { | |
| display: -webkit-flex; | |
| display: -moz-flex; |
| /*********************************************************************************************************************** | |
| *********************************************************************************************************************** | |
| * CONTENTS: | |
| * Native Object | |
| * Object Literal | |
| * Basic Object | |
| * Psuedo-Class | |
| * Self Executing/Invoking Structure | |
| * Lazy Function | |
| * Module Pattern |
| <div class="footer-social-icons"> | |
| <h4 class="_14">Follow us on</h4> | |
| <ul class="social-icons"> | |
| <li><a href="" class="social-icon"> <i class="fa fa-facebook"></i></a></li> | |
| <li><a href="" class="social-icon"> <i class="fa fa-twitter"></i></a></li> | |
| <li><a href="" class="social-icon"> <i class="fa fa-rss"></i></a></li> | |
| <li><a href="" class="social-icon"> <i class="fa fa-youtube"></i></a></li> | |
| <li><a href="" class="social-icon"> <i class="fa fa-linkedin"></i></a></li> | |
| <li><a href="" class="social-icon"> <i class="fa fa-google-plus"></i></a></li> | |
| </ul> |
| var offset = 700; | |
| var duration = 500; | |
| $(window).scroll(function() { | |
| if ($(this).scrollTop() > offset) { | |
| $('.back-to-top').fadeIn(duration); | |
| } else { | |
| $('.back-to-top').fadeOut(duration); | |
| } | |
| }); | |
| $('.back-to-top').click(function(event) { |
| var $url = $(location).attr('href'); | |
| var str = $url; | |
| var tmp = str.split("/"); | |
| var page = +tmp.pop() + 1; | |
| $('#pageNo').html("Current Page: <strong>" + page + "<strong>"); |