This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JOKE=$(curl https://icanhazdadjoke.com) | |
| say -v Daniel "$JOKE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Test' | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Non-accessible link --> | |
| <a href="products.html">Link opens in a new window: Products</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Non-accessible link --> | |
| <a href="action.html">Click here</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Non-accessible link --> | |
| <a href="#" onmouseover="dropdownmenu()">Products</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Bad headings --> | |
| <h1>Cool company name</h1> | |
| <h3>Buy stuff</h3> | |
| <h3>Jobs</h3> | |
| <h2>Get our app</h2> | |
| <!-- Great headings --> | |
| <h1>Cool company name</h1> | |
| <h2>Buy stuff</h2> | |
| <h2>Jobs</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
| <title>Facebook login</title> | |
| <script> | |
| $(document).ready(function() { | |
| $.ajaxSetup({ cache: true }); | |
| $.getScript('//connect.facebook.net/en_US/sdk.js', function(){ | |
| FB.init({ | |
| appId: 'APP_ID', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| import myTemplate from '../templates/suggestion-template' | |
| import footerTemplate from '../templates/footer-template' | |
| export default Ember.Controller.extend({ | |
| suggestionTemplate: myTemplate, | |
| footerTemplate: footerTemplate, | |
| actions: { | |
| doSomething: function() { | |
| this.set('clicked', true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
NewerOlder