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
| { | |
| "keys": [ | |
| { | |
| "kty": "RSA", | |
| "use": "sig", | |
| "alg": "RS256", | |
| "kid": "nullclaw-fleet-key-1", | |
| "n": "y_SLqUDxcvB603jJVl4HoH-D8JtUAUG01pfJrTqM39ThlUkYm0lUQhX7bMt4woJ40TZgVpcyqbz4prhlUMMkaK2qvGz5CdWhnzkqiGu4iHkosatQII5ou6P8HcpnMI-ZsXH-Hr22voTfrxKQpWw18rP3l3Stj1pv2UluOTwycRM3bbn5lnMoxRjowOmivZZBSggu-iRURMrXvG3jPXqU9J5Ai7OQrUFQ7cp6osRC7lc6_-0AbkuvQ8NqzrtKqyQn1jlsyu8S5l_tkpM1Cp45iuoeVor2IyC1EosEFTaV_zGHPF2dfQAyTb7LBz1d7YYToUZlF7HGuVOEu8qCCKQHFQ", | |
| "e": "AQAB" | |
| } |
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
| /***************************************************************************** | |
| * File: LongestRange.java | |
| * Author: Keith Schwarz (htiek@cs.stanford.edu) | |
| * | |
| * An algorithm for finding the longest range of consecutive integers | |
| * contained in an array of unsorted integers. For example, if the input | |
| * array is | |
| * | |
| * 16 1 12 5 4 10 2 11 13 3 15 | |
| * |
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
| app.get '/twitter', | |
| passport.authenticate('twitter'), | |
| (req, res) -> | |
| res.redirect '/' # --- should i send the user object back to ember? | |
| app.get '/twitter/callback', | |
| passport.authenticate('twitter'), | |
| (req, res) -> | |
| res.redirect '/' # --- how do i notify the client of this successful login? |
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
| exports.config = | |
| # See docs at http://brunch.readthedocs.org/en/latest/config.html. | |
| coffeelint: | |
| pattern: /^app\/.*\.coffee$/ | |
| options: | |
| indentation: | |
| value: 2 | |
| level: "error" | |
| files: |