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
| Process: MongoHub [18473] | |
| Path: /Applications/MongoHub.app/Contents/MacOS/MongoHub | |
| Identifier: com.thepeppersstudio.MongoHub | |
| Version: 2.0.9 (2.0.9) | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [129] | |
| Date/Time: 2010-05-29 22:58:41.429 -0700 | |
| OS Version: Mac OS X 10.6.3 (10D2094) | |
| Report Version: 6 |
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
Show hidden characters
| { | |
| "folders": | |
| [ | |
| { | |
| "path": "./common", | |
| "folder_exclude_patterns": ["3rdparty"] | |
| }, | |
| { | |
| "path": "./includes", | |
| "folder_exclude_patterns": ["3rdparty"] |
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
| diff --git a/chosen/chosen.proto.js b/chosen/chosen.proto.js | |
| index e5049b0..0200299 100644 | |
| --- a/chosen/chosen.proto.js | |
| +++ b/chosen/chosen.proto.js | |
| @@ -408,14 +408,15 @@ Copyright (c) 2011 by Harvest | |
| Chosen.prototype.container_mousedown = function(evt) { | |
| var target_closelink; | |
| if (!this.is_disabled) { | |
| - target_closelink = evt != null ? evt.target.hasClassName("search-choice-close") : false; | |
| + var target = evt != null && evt.target ? $(evt.target) : null |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>fileTypes</key> | |
| <array> | |
| <string>tpl</string> | |
| <string>html</string> | |
| </array> | |
| <key>foldingStartMarker</key> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Kris - based on Railscasts</string> | |
| <key>settings</key> | |
| <array> | |
| <dict> | |
| <key>settings</key> |
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
| { | |
| "dependencies": { | |
| "handlebars": "2.0.0", | |
| "jquery": "^1.11.1", | |
| "ember": "~1.9.1", | |
| "ember-data": "1.0.0-beta.14.1", | |
| "ember-resolver": "~0.1.10", | |
| "loader.js": "stefanpenner/loader.js#1.0.1", | |
| "ember-cli-shims": "stefanpenner/ember-cli-shims#0.0.3", | |
| "ember-cli-test-loader": "rwjblue/ember-cli-test-loader#0.0.4", |
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
| var jwt = require('jsonwebtoken') | |
| module.exports = { | |
| issue: function(payload) { | |
| sails.log.silly(__filename + ':' + __line + ' [Service.Passport.deserializeUser() called]') | |
| return jwt.sign(payload, sails.config.jwt.secret) | |
| }, | |
| verify: function(token, next) { |
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
| /** | |
| * Passport Model | |
| * | |
| * The Passport model handles associating authenticators with users. An authen- | |
| * ticator can be either local (password) or third-party (provider). A single | |
| * user can have multiple passports, allowing them to connect and use several | |
| * third-party strategies in optional conjunction with a password. | |
| */ | |
| var bcrypt = require('bcrypt') |
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
| SET statement_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; | |
| SET check_function_bodies = false; | |
| SET client_min_messages = warning; | |
| CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; | |
| COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; | |
| CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; |
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
| user KRIS has entered room | |
| analyst Khareen has entered room | |
| Khareen: Hello KRIS_, Thank you for contacting Comcast Live Chat Support. My name is Khareen. Please give me one moment to review your information. | |
| Khareen: Hi! I hope you are doing well. I would be more than happy to assist you with your concern today. | |
| KRIS_: My Issue: intermittent connection issues to various websites, not all but many. |
OlderNewer