View full.js
m = function() { | |
this.nb_books = this.books.length; | |
emit(this._id, this); | |
} | |
r = function(k,v) { | |
return v[0]; | |
} | |
db[db.authors.mapReduce(m, r).result].find().sort({nb_books:-1}) |
View autocompletion_fail.sh
_test_completion() | |
{ | |
php -r "echo 'coucou';" > /dev/null # useless call to PHP | |
# Any call to PHP will make this occur: I was trying to parse the output of Symfony2's app/console | |
# and had a huge headache before I just made this test... and gave up. | |
COMPREPLY=( $(compgen -W "world myself everyone") ) | |
} | |
complete -o default -F _test_completion hello |
View config.yml
services: | |
dumb: | |
class: Acme\DumbService | |
arguments: | |
- "name" | |
- "hello": { "world": { "foo": %mailer_host% } } |
View DashboardLayout.java
/* | |
* Copyright 2011 Google Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
View default.vcl
backend default { | |
.host = "test-esi.localhost"; | |
.port = "8000"; | |
} | |
sub vcl_fetch { | |
esi; | |
} |
View es5.js
function ajax(options) { | |
options = Object.extend({ | |
"method": "POST", | |
"error": function() {}, | |
"success": function() {}, | |
// ... | |
}, options || {}) | |
try { |
View app.js
/** Liste des threads du forum */ | |
const threads = [ | |
{ id: 1, title: 'First thread' }, | |
{ id: 33, title: 'Oh noes, Jesus died' }, | |
{ id: 42, title: 'Ze answer' } | |
] | |
/** Déclaration de l'application */ | |
var app = require('express').createServer().configure(function() { |
View enableMultipleViewRoots.js
// Usage: | |
// var express = require('express') | |
// require('enableMultipleViewRoots')(express) | |
module.exports = function(express) { | |
var old = express.view.lookup; | |
function lookup(view, options) { | |
// If root is an array of paths, let's try each path until we find the view | |
if (options.root instanceof Array) { |
View app.js
var express = require('express') | |
var app = express.createServer() | |
// Configuration | |
app.configure(function() { | |
this.set('views', __dirname + '/views') | |
.set('view engine', 'jade') | |
.use(express.static(__dirname + '/public')) | |
.set('view options', {title: 'Express'}) |
View class.php
<?php | |
class c { | |
public $f; | |
public function __construct() { | |
$this->f = function() { echo 'coucou'; }; | |
} | |
} | |
// Note: "public $f = function() {...}" is a syntax error... |
OlderNewer