Solutions to FreeCodeCamp Challenges
See http://www.freecodecamp.com/abhisekp
ShortUrl to Gist: http://j.mp/abhisekpFCCSolns
One Liner Solutions Only: http://j.mp/abhisekpFCCSolnsOneLiners
Solved using RegExp: http://bit.ly/abhisekpFCCRegExpSolns
body { | |
background: #BFCFFE; | |
} | |
#cloud { | |
width: 360px; height: 120px; | |
background: -webkit-linear-gradient(top, #f2f9fe 10%, #d6f0fd 100%); | |
-webkit-border-radius: 100px; | |
position: relative; | |
margin: 200px auto 70px; | |
} |
IDE Roundup | |
Dreamweaver (http://www.adobe.com/in/products/dreamweaver.html) | |
Netbeans (http://netbeans.org/) | |
Notepad++ (not an IDE, simple Editor w/ Powerful features w/ Plugins) | |
Emmet for HTML/CSS | |
Supported by Dreamweaver, Netbeans & Notepad++ | |
WARNING: Dreamweaver & Netbeans needs keyboard shortcuts configured to work efficiently | |
SASS w/ SCSS to css conversion on save |
See http://www.freecodecamp.com/abhisekp
ShortUrl to Gist: http://j.mp/abhisekpFCCSolns
One Liner Solutions Only: http://j.mp/abhisekpFCCSolnsOneLiners
Solved using RegExp: http://bit.ly/abhisekpFCCRegExpSolns
Many of the solutions available around the internet for Bonfire: Where art thou are quite not right even if they pass the tests in FreeCodeCamp (FCC) because they don't adhere to the instructions completely.
Make a function that looks through a list (first argument) and returns an array of all objects that have equivalent property values (second argument).
Here are two solutions that exactly adhere to the instructions given in the Bonfire Challenge.
function URL(url, title) { | |
this.url = url; | |
this.title = title || url; | |
} | |
var contents = $('.Contents'); | |
// console.log(contents); | |
var contentRow = contents.children('.Contents_row'); | |
var urls = []; |
— by Abhisek Pattnaik <[email protected]>
git clone https://github.com/datasift/gitflow hubflow
cd hubflow
<!-- Log4Javascript --> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/log4javascript/1.4.9/log4javascript.min.js" integrity="sha384-HyxhT0r2zuZboqC5s+0xNbD90XZ+XLIDybjcPIl47OZ9BH1dHy8fOuH+k/erMIS8" crossorigin="anonymous"></script> | |
<!-- Handlebars --> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.4/handlebars.min.js" integrity="sha384-agpJgIHg3ozTgYSL5dwjjy7wWwXmA3ATN5ZxbaTHhZot9b9ns39WXNLAII6twYVA" crossorigin="anonymous"></script> | |
<!-- jQuery --> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> | |
<!-- Boostrap CSS --> |
console.clear(); | |
/* GLOBALS */ | |
const GitterBot = { | |
config: { | |
roomId: '546fd572db8155e6700d6eaf', // FreeCodeCamp/FreeCodeCamp // <-- insert the room id | |
token: '', // <-- insert your user token (Get it from https://developer.gitter.im/apps) | |
} | |
}; |
See http://www.freecodecamp.com/abhisekp
ShortUrl to Gist: http://j.mp/abhisekpFCCSolnsOneLiners
Complete list of solutions: http://j.mp/abhisekpFCCSolns
Solved using RegExp: http://bit.ly/abhisekpFCCRegExpSolns