This file contains 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
ake tools | |
make -C config tools | |
make[3]: Nothing to be done for `tools'. | |
make -C editline tools | |
make[3]: Nothing to be done for `tools'. | |
make -C shell tools | |
make[3]: Nothing to be done for `tools'. | |
make -C jsapi-tests tools | |
make[3]: Nothing to be done for `tools'. | |
make -C tests tools |
This file contains 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by libnet configure 1.1.6, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/libnet/1.1.6 | |
## --------- ## | |
## Platform. ## |
This file contains 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
// When the document is ready to be manipulated.. | |
$(document).ready(function(){ | |
// connect to sokcet io | |
var socket = io.connect('http://localhost:1337'); | |
var $box = $("#box"); | |
$box.draggable({ | |
drag: function(){ | |
socket.emit("box_moved", { | |
offsetTop : this.offsetTop, |
This file contains 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
class ImportWorker | |
include Sidekiq::Worker | |
include Sidekiq::Status::Worker | |
def get_command | |
# This command just returns the "git-tf clone .." command, getting from config file the paramters | |
# and concating all | |
command | |
end |
This file contains 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
[2013-04-27T11:04:50+00:00] INFO: Processing execute[gitlab-development-setup] action run (gitlab::vagrant line 190) | |
[2013-04-27T11:05:28+00:00] INFO: execute[gitlab-development-setup] ran successfully | |
[2013-04-27T11:05:28+00:00] INFO: Processing execute[gitlab-development-seed] action run (gitlab::vagrant line 198) | |
================================================================================ | |
Error executing action `run` on resource 'execute[gitlab-development-seed]' | |
================================================================================ | |
Mixlib::ShellOut::ShellCommandFailed | |
------------------------------------ |
This file contains 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
➜ test git:(master) git svn clone http://protobuf.googlecode.com/svn/ test --stdlayout -Ttags/ | |
.. GIT SVN RESULTS .. | |
➜ test git:(master) git tag -l | |
➜ test git:(master) git branch -a | |
* master | |
remotes/maven-plugin | |
remotes/maven-plugin@94 | |
remotes/tags/2.0.2 | |
remotes/tags/2.0.2@60 | |
remotes/tags/2.0.3 |
This file contains 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 one_arity(first_arg) { | |
console.log("one_arity: " + first_arg); | |
} | |
function two_arity(first_arg, second_arg) { | |
console.log("two_arity: " + first_arg, second_arg); | |
} | |
function caller() { |
This file contains 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
// Removed toJSON, just for beautifying :) | |
/* CONSTRUCTOR -> */ function expression() { | |
}; | |
Object.defineProperty(expression.prototype, "_type", | |
{ | |
get : function(){ |
This file contains 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 replace(newData) { | |
var nindex = crossfilter_range(newData.length); | |
// Update indexes. | |
removeDataListeners.forEach(function(l) { | |
l(nindex); | |
}); | |
// Remove all matching records from groups. |
This file contains 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: XamarinStudio [12766] | |
Path: /Applications/Xamarin Studio.app/Contents/MacOS/XamarinStudio | |
Identifier: com.xamarin.monodevelop | |
Version: 4.2.2.2 (4.2.2.2) | |
Code Type: X86 (Native) | |
Parent Process: launchd [241] | |
Responsible: XamarinStudio [12766] | |
User ID: 501 | |
Date/Time: 2014-01-04 00:53:58.540 +0200 |
OlderNewer