This assumes you already have a Yeoman app and are ready for publishing
Create production directory & assets
| $('a.link').click(function(){ | |
| // `this` is an anchor DOM element in this context | |
| // but it's not wrapped in a jQuery wrapper and doesn't | |
| // have access to any of jQuery's helper methods. | |
| var $a = $(this); | |
| // once you wrap it in jQuery, it has access to them, | |
| // for example to `.attr()`, `.prop()`, `.val()`, etc. | |
| console.log('Clicked on', $a.attr('href')); | |
| }); |
| import java.io.*; | |
| class HelloWorld | |
| { | |
| public static void main(String args[]) | |
| { | |
| InputStreamReader sin = new InputStreamReader(System.in); | |
| BufferedReader br = new BufferedReader(sin); | |
| System.out.println("Type your name: "); | |
| try{ |
| angular | |
| .module('angular-legacy-url', []) | |
| .factory('AngularLegacyUrl', ['$window', function AngularLegacyUrlFactory($window) { | |
| var getQueries = function (search) { | |
| return search | |
| .replace(/(^\?)/, '') | |
| .split('&') | |
| .reduce(function (sum, item) { | |
| if ( item === '' ) { | |
| return sum; |
| https://gemma.herokuapp.com/ | |
| https://github.com/freerange/mocha | |
| http://www.meetup.com/OKC-Ruby/ | |
| http://www.codenewbie.org/blogs/object-oriented-programming-vs-functional-programming | |
| http://phoenix.thefirehoseproject.com/0.html | |
| # put this in your .bash_profile | |
| if [ $ITERM_SESSION_ID ]; then | |
| export PROMPT_COMMAND='echo -ne "\033];${PWD##*/}\007"; ':"$PROMPT_COMMAND"; | |
| fi | |
| # Piece-by-Piece Explanation: | |
| # the if condition makes sure we only screw with $PROMPT_COMMAND if we're in an iTerm environment | |
| # iTerm happens to give each session a unique $ITERM_SESSION_ID we can use, $ITERM_PROFILE is an option too | |
| # the $PROMPT_COMMAND environment variable is executed every time a command is run | |
| # see: ss64.com/bash/syntax-prompt.html |
This assumes you already have a Yeoman app and are ready for publishing
Create production directory & assets
| <html> | |
| <head> | |
| <script src="https://apis.google.com/js/client.js"></script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script> | |
| function auth() { | |
| var config = { | |
| 'client_id': 'OAUTH_CLIENT_ID', | |
| 'scope': 'https://www.google.com/m8/feeds' | |
| }; |
| // Bonfire: Reverse a String | |
| // Author: @twhite96 | |
| // Challenge: http://www.freecodecamp.com/challenges/bonfire-reverse-a-string?solution=function%20reverseString(str)%20%7B%0A%20%20str%20%3D%20str.split(%27%27)%3B%0A%20%20str%20%3D%20str.reverse()%3B%0A%20%20str%20%3D%20str.join(%27%27)%3B%0A%20%20return%20str%3B%0A%7D%0A%0A%0A%0A%0A%0AreverseString(%22hello%22)%3B%0A | |
| // Learn to Code at Free Code Camp (www.freecodecamp.com) | |
| function reverseString(str) { | |
| str = str.split(''); | |
| str = str.reverse(); | |
| str = str.join(''); | |
| return str; |
| // Bonfire: Factorialize a Number | |
| // Author: @twhite96 | |
| // Challenge: http://www.freecodecamp.com/challenges/bonfire-factorialize-a-number?solution=function%20factorialize(num)%20%7B%0A%20%20if%20(num%20%3D%3D%3D%200)%20%7B%0A%20%20%20%20return%201%3B%0A%20%20%7D%0A%20%20%20%20return%20num%20*%20factorialize(num%20-%201)%3B%0A%7D%0A%0Afactorialize(5)%3B%0A | |
| // Learn to Code at Free Code Camp (www.freecodecamp.com) | |
| function factorialize(num) { | |
| if (num === 0) { | |
| return 1; | |
| } | |
| return num * factorialize(num - 1); |
| // Bonfire: Check for Palindromes | |
| // Author: @twhite96 | |
| // Challenge: http://www.freecodecamp.com/challenges/bonfire-check-for-palindromes?solution=function%20palindrome(str)%20%7B%0A%20%20%2F%2F%20Good%20luck!%0A%20%20%0A%20%20str%20%3D%20str.toLowerCase()%3B%0A%20%20%0A%20%20str%20%3D%20str.replace(%2F%5B%5Ea-z%7C1-9%5D%2Fg%2C%20%22%22)%3B%0A%20%20%0A%20%20if%20(str.length%20%3D%3D%3D%200)%7B%0A%20%20%20%20return%20true%3B%0A%20%20%7D%0A%20%20%0A%20%20if%20(str%5B0%5D%20!%3D%3D%20str%5Bstr.length-1%5D)%7B%0A%20%20%20%20return%20false%3B%0A%20%20%7D%0A%20%20%0A%20%20else%20%7B%0A%20%20%20%20return%20palindrome(str.slice(1%2Cstr.length%20-%201))%3B%0A%20%20%7D%0A%7D%0A%0A%0Apalindrome(%22eye%22)%3B%0A | |
| // Learn to Code at Free Code Camp (www.freecodecamp.com) | |
| function palindrome(str) { | |
| str = str.toLowerCase().replace(/[\W_]/g, ''); | |
| for(var i = 0, len = str.length - 1; i < len/2; i++) { | |
| if(str[i] !== str[len-i]) { | |
| return false; |