- URL: /category/
- @params: -
- @return: categories [object]
GET /category/
From 65c619b6c0e988406e4d338ecd7cb49e472c5b51 Mon Sep 17 00:00:00 2001 | |
From: Florent Jaby <[email protected]> | |
Date: Wed, 28 Jul 2010 13:09:27 +0200 | |
Subject: [PATCH] Added an experimental support for lines with streams | |
+ added function sys.lines(stream) which sets up a few utilities for streams | |
++ adds a function stream.writeln(string) which is a shorthand for stream.write(string + "\n") | |
++ add a listener on data events on this stream | |
+++ do nothing if the encoding is binary | |
+++ bufferize characters other than "\n" |
#!/usr/bin/env node | |
var cp = require('child_process'); | |
var sys = require ('sys') | |
var fs = require ('fs') | |
var lines = require ('lines') | |
var nextAddress; | |
var i=1, j=1, k=1; | |
nextAddress = function() { | |
++k; |
then in client code, a JS var is exposed with the passed in token | |
and the first thing it does upon connection si sending the token |
var fs = require('fs'); | |
var child_process = require('child_process'); | |
var spawn = child_process.spawn; | |
function openEditor(file) { | |
var cp = spawn(process.env.EDITOR, [file], { | |
customFds: [ | |
process.stdin, | |
process.stdout, | |
process.stderr |
info it worked if it ends with ok | |
verbose cli [ 'node', '/usr/local/bin/npm', 'update', '-g' ] | |
info using [email protected] | |
info using [email protected] | |
verbose config file /home/floby/.npmrc | |
verbose config file /usr/local/etc/npmrc | |
silly testEngine { name: 'meme', | |
silly testEngine description: 'a CLI utility to generate memes using memegenerator.net', | |
silly testEngine keywords: [ 'meme', 'cli' ], | |
silly testEngine version: '0.1.2', |
npm info it worked if it ends with ok | |
npm info using [email protected] | |
npm info using [email protected] | |
npm WARN [email protected] package.json: bugs['web'] should probably be bugs['url'] | |
npm info preinstall [email protected] | |
Setting srcdir to : /home/floby/dev/node/gui | |
Setting blddir to : /home/floby/dev/node/gui/build | |
Checking for program g++ or c++ : /usr/bin/g++ | |
Checking for program cpp : /usr/bin/cpp | |
Checking for program ar : /usr/bin/ar |
#!/usr/bin/env node | |
// installer les packages `format` et `irc` depuis npm | |
var chan = '#zftalk-fr' | |
var irc = require('irc'); | |
var format = require('format'); | |
var client = new irc.Client('irc.freenode.net', 'BiduleChose', { |
<?php | |
class Search_Bootstrap extends Centurion_Application_Module_Bootstrap | |
{ | |
protected function _initSignals() | |
{ | |
Centurion_Signal::factory('post_delete')->connect(array($this, 'postDeleteRow'), 'Centurion_Db_Table_Row_Abstract'); | |
} |
SELECT DISTINCT `mediacenter_media`.* | |
FROM `mediacenter_media` | |
WHERE ( `mediacenter_media`.`id` IN ((SELECT `mediacenter_media`.`id` | |
FROM `mediacenter_media` | |
INNER JOIN `media_file` | |
ON `media_file`.`id` = | |
`mediacenter_media`.`media_id` | |
LEFT JOIN `media_tag_file` | |
ON `media_tag_file`.`file_id` = | |
`media_file`.`id` |