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
Chris-Burkharts-MacBook-Pro-2:Me ctide$ brew install clucene | |
==> Downloading http://downloads.sourceforge.net/project/clucene/clucene-core-stable/0.9.21/clucene-core-0.9.21.tar.bz2 | |
######################################################################## 100.0% | |
==> ./configure --prefix=/usr/local/Cellar/clucene/0.9.21 --disable-debug --disable-dependency-tracking | |
==> make install | |
/usr/local/Cellar/clucene/0.9.21: 136 files, 4.9M, built in 59 seconds | |
Chris-Burkharts-MacBook-Pro-2:Me ctide$ l | |
Chris-Burkharts-MacBook-Pro-2:Locker ctide$ npm install | |
> [email protected] install /development/Locker/node_modules/clucene |
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
15 Aug 17:46:51 - info: [Search] proxying GET /Me/search/query?q=ctide to http://localhost:18044//query?q=ctide | |
15 Aug 17:46:51 - error: [Locker Search] | |
15 Aug 17:46:51 - error: [Locker Search] undefined:1 | |
15 Aug 17:46:51 - error: [Locker Search] pment/Locker/Me/ | |
15 Aug 17:46:51 - error: [Locker Search] ^^ | |
15 Aug 17:46:51 - error: [Locker Search] SyntaxError: Unexpected token ILLEGAL |
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
render: function(config){ | |
// default to empty | |
config = config || {}; | |
var filteredCollection, | |
contactsEl, contactTemplate, contactsHTML, | |
searchFilter, addContactToHTML; | |
var that = this; | |
filteredCollection = this.collection; |
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 app = require('express').createServer(); | |
var processInfo; | |
app.get('/', function(req, res) { | |
res.writeHead(200, {'content-type':'application/json'}); | |
res.end(JSON.stringify(processInfo)); | |
}); | |
process.stdin.setEncoding('utf8'); | |
process.stdin.on('data', function (chunk) { |
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
1 Sep 19:33:46 - info: [Links] a({"link":"http://www.facebook.com/photo.php?v=2392164203831"}) b({"link":"http://www.facebook.com/photo.php?v=2392164203831"}) | |
1 Sep 19:33:46 - info: [Links] a({"link":"http://www.facebook.com/photo.php?v=2392164203831"}) b({}) | |
1 Sep 19:33:46 - info: [Links] Going to add http://www.facebook.com/photo.php?v=2392164203831 | |
1 Sep 19:33:46 - info: [Links] Added http://www.facebook.com/photo.php?v=2392164203831 | |
1 Sep 19:33:46 - error: [Links] QUEUE SIZE: 3 |
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
[email protected] /development/Locker | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ └── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├── [email protected] |
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
[ctide@Chris-Burkharts-MacBook-Pro-2 /development/integral/site] [master]:~$ npm install -g forever | |
> [email protected] preinstall /Users/ctide/.nvm/v0.4.11/lib/node_modules/forever/node_modules/daemon | |
> node-waf configure build | |
Checking for program g++ or c++ : /usr/bin/g++ | |
Checking for program cpp : /usr/bin/cpp | |
Checking for program ar : /usr/bin/ar | |
Checking for program ranlib : /usr/bin/ranlib | |
Checking for g++ : ok |
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
[ctide@Chris-Burkharts-MacBook-Pro-2 /development/Locker/APps] [master]:~$ git status | |
# On branch master | |
# Changes not staged for commit: | |
# (use "git add <file>..." to update what will be committed) | |
# (use "git checkout -- <file>..." to discard changes in working directory) | |
# | |
# modified: MergedContacts (new commits) |
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
function parse_git_branch_and_add_brackets { | |
/usr/bin/git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \[\1\]/' | |
} | |
NM="\[\033[0;38m\]" #means no background and white lines | |
HI="\[\033[0;37m\]" #change this for letter colors | |
HII="\[\033[0;31m\]" #change this for letter colors | |
HIB="\[\033[0;32m\]" #change this for bg colors | |
SI="\[\033[0;33m\]" #this is for the current directory | |
IN="\[\033[0m\]" |
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
curl -H "content-type: application/json" -d '{"data": [ { "obj" : {"id" : 500, "someData":"BAM"}, "type" : "new", "timestamp" : 1312325283581 }]}' http://localhost:8042/push/test | |
curl http://localhost:8042/push/test/getCurrent | |
curl http://localhost:8042/push/test/500 |