<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs">
    <title>gmane.comp.lang.javascript.nodejs</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56442"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56441"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56440"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56439"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56438"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56437"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56436"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56435"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56434"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56433"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56432"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56431"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56430"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56429"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56428"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56427"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56426"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56425"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56424"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56423"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56442">
    <title>Re: How i can install Node v8 on cygwin -windows?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56442</link>
    <description>&lt;pre&gt;Please don't use node+cygwin it is not a supported platform, you can
install and use node without any extra middleware
http://nodejs.org/dist/latest/node-v0.10.12-x86.msi


On Wed, Jun 19, 2013 at 12:39 PM, rayCO RAY &amp;lt;rayman1366-gM/Ye1E23mwN+BqQ9rBEUg&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:


&lt;/pre&gt;</description>
    <dc:creator>Timothy J Fontaine</dc:creator>
    <dc:date>2013-06-19T20:29:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56441">
    <title>How i can install Node v8 on cygwin -windows?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56441</link>
    <description>&lt;pre&gt;hello
How i can install Node v8 on cygwin -windows server 2003?
thanks

&lt;/pre&gt;</description>
    <dc:creator>rayCO RAY</dc:creator>
    <dc:date>2013-06-19T19:39:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56440">
    <title>Re: node-ffi with a function that returns a pointer and a length</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56440</link>
    <description>&lt;pre&gt;I think you're close here... So one of the slightly confusing points is
that Buffer instances already have 1 level of indirection by nature
(they're a pointer to some process memory), so when you do:

var lengthpointer = ref.alloc('uint *');

You're really creating a Buffer that "can store a 'uint *'", so it itself
is a "uint **" Buffer. Does that make sense? You're probably getting NaN
for the length since when you call .deref() you're actually dereffing to a
"uint *" Buffer, rather than a "uint" Number value.

So on that note, try something like this (there's basically just 1 level of
indirection removed from the variables):

  var mylib = ffi.Library('/path/to/mylib', {
    makeData: ['int', ['char **', 'uint *']],
  });

  var lengthpointer = ref.alloc('uint');
  var datapointer = ref.alloc('char *');
  mylib.makeData(datapointer, lengthpointer);
  var length = lengthpointer.deref();
  var data = ref.reinterpret(datapointer.deref(), length);

Warning, untested! But let me know if that works out for you. &lt;/pre&gt;</description>
    <dc:creator>Nathan Rajlich</dc:creator>
    <dc:date>2013-06-19T19:38:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56439">
    <title>[ANN] ndoc 3.0.x released</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56439</link>
    <description>&lt;pre&gt;https://github.com/nodeca/ndoc

Ndoc is javascript documentation generator, supporting the same suntax as 
ruby's pdoc. 
3.0 branch release has completely rewritten parser, solving all known 
syntax issues.
Also error reporting was significantly improved.

Here you can see doc examples:

- http://nodeca.github.com/ndoc/
- http://nodeca.github.io/ndoc/tests/prototype/

&lt;/pre&gt;</description>
    <dc:creator>Vitaly Puzrin</dc:creator>
    <dc:date>2013-06-19T19:16:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56438">
    <title>Re: regarding download pkg of npm for titanium</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56438</link>
    <description>&lt;pre&gt;And I suspect your firewall / proxy is interfering with the installation.


On Wed, Jun 19, 2013 at 11:49 PM, Hage Yaapa &amp;lt;captain-4ruLUV8tPXE36ppACLhNMQ&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:


&lt;/pre&gt;</description>
    <dc:creator>Hage Yaapa</dc:creator>
    <dc:date>2013-06-19T18:20:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56437">
    <title>Re: regarding download pkg of npm for titanium</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56437</link>
    <description>&lt;pre&gt;If you can install it using npm, mostly likely there is a repo for it,
probably on GitHub.


On Wed, Jun 19, 2013 at 9:36 PM, venkatesh guttal &amp;lt;
venkatesh.guttal-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


&lt;/pre&gt;</description>
    <dc:creator>Hage Yaapa</dc:creator>
    <dc:date>2013-06-19T18:19:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56436">
    <title>regarding download pkg of npm for titanium</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56436</link>
    <description>&lt;pre&gt;Hi
I was trying to download and install npm on mac machine with following cmd 
but it was stucked in between.

*sudo npm install titanium -g*

where do i get downloaded pkg or file for npm(titanium)?
Is there any links so that i can download the npm

Regards,
Venkatesh

&lt;/pre&gt;</description>
    <dc:creator>venkatesh guttal</dc:creator>
    <dc:date>2013-06-19T16:06:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56435">
    <title>Re: How to report errors from streams</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56435</link>
    <description>&lt;pre&gt;


One problem with this one is that it doesn't add the request and response
to the domain that it creates. In fact, it doesn't add anything; it seems
to assume you'll do that yourself, which rather defeats the purpose.
Instead, it seems to focus on disposing of the domain explicitly (which I
believe is not generally necessary).




This is better, but if you encounter a problem before your code "goes
async", it won't be handled by the domain error handler, since that isn't
added to the domain until *after* domain.run() (and hence next()) returns.
The calls to run() and on() need to be switched.



Domains are primarily for handling uncaught errors and exceptions. Since it
looks like you have error handlers in most places, it's not clear that an
error from spawn() will reach the domain error handler, if it ends up being
caught and handled elsewhere.

--
Martin Cooper


Here's a simplified example of what I'm working on. This is a small express

&lt;/pre&gt;</description>
    <dc:creator>Martin Cooper</dc:creator>
    <dc:date>2013-06-19T16:36:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56434">
    <title>Re: Re: Graph engine prototype</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56434</link>
    <description>&lt;pre&gt;Great, i'm looking for a way to make a graph engine independent of
database. To plug in any other databases to make a portability of an graph,
and techniques of machine learning to test this concepts.

But I understand the proposals, and will study some ways to insert them.
Or use them as a basis of study, in the case of level graph.

Thanks for all feedback!


2013/6/19 Matteo Collina &amp;lt;matteo.collina-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;


&lt;/pre&gt;</description>
    <dc:creator>Kaique da silva</dc:creator>
    <dc:date>2013-06-19T14:37:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56433">
    <title>Re: PDF File Generated By Node Fails to Load in Adobe Reader. Why?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56433</link>
    <description>&lt;pre&gt;this module is highly outdated as Marak kindly updated his Readme to show.
did you take a look at this &amp;lt;https://www.google.fr/search?q=node.js+PDF&amp;gt; ? 

On Tuesday, 18 June 2013 11:34:24 UTC+2, Aarthi sekar wrote:

&lt;/pre&gt;</description>
    <dc:creator>Floby</dc:creator>
    <dc:date>2013-06-19T13:02:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56432">
    <title>Re: Easiest Way to Slurp a GET</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56432</link>
    <description>&lt;pre&gt;* *I wrote stream-sink which does that, but I only used it for testing.
https://npmjs.org/package/stream-sink

On Monday, 17 June 2013 17:45:55 UTC+2, Alan Gutierrez wrote:

&lt;/pre&gt;</description>
    <dc:creator>Floby</dc:creator>
    <dc:date>2013-06-19T12:56:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56431">
    <title>Re: Re: Graph engine prototype</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56431</link>
    <description>&lt;pre&gt;I've forgot to put the link: https://github.com/mcollina/node-levelgraph


2013/6/19 Matteo Collina &amp;lt;matteo.collina-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;


&lt;/pre&gt;</description>
    <dc:creator>Matteo Collina</dc:creator>
    <dc:date>2013-06-19T11:21:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56430">
    <title>Re: Re: Graph engine prototype</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56430</link>
    <description>&lt;pre&gt;&amp;lt; at &amp;gt;Kaique
You might want to check out my LevelGraph, a graph database built on top of
LevelUp.
It can be ported to work in the browser, if you have some time :).

&amp;lt; at &amp;gt;Spion
I can't find the sources of your library in a git repo. Only a gist.

Cheers,

Matteo


2013/6/19 spion &amp;lt;gorgi.kosev-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;


&lt;/pre&gt;</description>
    <dc:creator>Matteo Collina</dc:creator>
    <dc:date>2013-06-19T11:20:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56429">
    <title>Re: How to store current versions of modules (analogue of gemfile.lock in ruby bundler)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56429</link>
    <description>&lt;pre&gt;Hi!

npm shrinkwrap

Cheers,
Fedor.


On Wed, Jun 19, 2013 at 12:30 PM, Руслан Корнев &amp;lt;oganer-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


&lt;/pre&gt;</description>
    <dc:creator>Fedor Indutny</dc:creator>
    <dc:date>2013-06-19T11:11:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56428">
    <title>How to store current versions of modules (analogue of gemfile.lock in ruby bundler)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56428</link>
    <description>&lt;pre&gt;Hi, all. Sorry for bad English. I'am new in node.js and started using 
package manager npm. I don't want to specify specific versions in 
package.json and sit on last releases. But i want to find in repository 
history (for example git) when things go wrong after npm install and 
restore previous snapshots of node_modules. I don't want to add npm_modules 
to repository. In rails it's done with file gemfile.lock, wich stores all 
versions and dependencies. Is there analogues in npm?

&lt;/pre&gt;</description>
    <dc:creator>Руслан Корнев</dc:creator>
    <dc:date>2013-06-19T10:30:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56427">
    <title>node-ffi with a function that returns a pointer and a length</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56427</link>
    <description>&lt;pre&gt;This is my first day of trying to use node-ffi, and I'm going mad trying to get it to work with a function that has this signature:

int makeData(char **data, unsigned int *length);

This function will return a pointer to some data and an unsigned int saying how many bytes long the data is. The data might be text or binary.

How do I define this function in node-ffi? What kind of variables do I need to declare and pass to it? And how do I get the data out in the end? I have spent hours on this already, finding very little information on Google and only a single example in the node-ffi repository (which doesn't cover this use case), and sparse documentation.

What I have at the moment is:

var mylib = ffi.Library('/path/to/mylib', {
  makeData: ['int', ['char **', 'uint *']],
});

var lengthpointer = ref.alloc('uint *');
var datapointer = ref.alloc('char *');
mylib.makeData(datapointer, lengthpointer);
var length = lengthpointer.deref();
var data = ref.reinterpret(datapointer.deref(), length);

The problem is&lt;/pre&gt;</description>
    <dc:creator>Ryan Schmidt</dc:creator>
    <dc:date>2013-06-19T09:20:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56426">
    <title>Re: Graph engine prototype</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56426</link>
    <description>&lt;pre&gt;You could consider using a more functional approach. The user usually has 
model classes and basic functions already, so why write model classes for 
vertices and edges? Instead, write awesome algorithms that take function 
arguments such as getNeighbors: (node) =&amp;gt; node array, getDistance: (node, 
node) =&amp;gt; number, etc.

At least, that was my thinking when I wrote async-bfs - 
https://npmjs.org/package/async-bfs


On Saturday, June 15, 2013 8:44:19 PM UTC+2, Kaique da silva wrote:

&lt;/pre&gt;</description>
    <dc:creator>spion</dc:creator>
    <dc:date>2013-06-19T01:31:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56425">
    <title>building process in win7</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56425</link>
    <description>&lt;pre&gt;hi i'm new with node.JS i don't think this is the good place to publish 
this sorry about that..

i'm trying to run an application witch use python nodeJS
* make (GNU Make 3.81) 
***************************************
Building is done using a `Makefile` which in turn uses `npm` and 
`component` for packages and `jade` and `stylus` for templating.
and i should run it with $make

the makefile 
JADE = $(shell find views/*.jade)
STYLUS=$(shell find stylesheets/ -name "*.styl" -type f)
GEOMETRY=$(wildcard lib/renderer-3d/geometry/*.obj)
GEOMETRY_JSON=$(GEOMETRY:.obj=.json)
GEOMETRY_JS=$(GEOMETRY:.obj=.js)
SHADERS=$(wildcard lib/renderer-3d/shaders/*.glsl)
SHADERS_JS=$(SHADERS:.glsl=.js)
LIB=$(shell find lib -name "*.js" -type f)
LIB_3D=$(shell find lib/renderer-3d -name "*.js" -type f)
LIB_CSS=$(shell find lib/renderer-css -name "*.js" -type f)
COMPONENTS=$(shell find components -name "*.js" -type f)
MINIFY=build build/build-3d.min.js public/javascript/slam.min.js 
public/javascript/renderer-3d.min.js public/jav&lt;/pre&gt;</description>
    <dc:creator>seif haddada</dc:creator>
    <dc:date>2013-06-19T00:36:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56424">
    <title>Re: DOMQuery: Lightweight jQuery Alternative For The Projects Using Browserify, OneJS etc</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56424</link>
    <description>&lt;pre&gt;Looks good, but the problem is lots of plugins require jQuery, so it's no 
so easy to throw it.

понедельник, 17 июня 2013 г., 9:26:55 UTC+3 пользователь azer написал:

&lt;/pre&gt;</description>
    <dc:creator>Yuri Karadzhov</dc:creator>
    <dc:date>2013-06-19T08:47:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56423">
    <title>Re: Expressjs &amp;&amp; Java</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56423</link>
    <description>&lt;pre&gt;you probably should describe your problem better...

Am Mittwoch, 19. Juni 2013 09:52:08 UTC+2 schrieb Cenk bircanoğlu:

&lt;/pre&gt;</description>
    <dc:creator>greelgorke</dc:creator>
    <dc:date>2013-06-19T07:53:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56422">
    <title>Expressjs &amp;&amp; Java</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.nodejs/56422</link>
    <description>&lt;pre&gt;How i can use java applets in express js. or can i use???

&lt;/pre&gt;</description>
    <dc:creator>Cenk bircanoğlu</dc:creator>
    <dc:date>2013-06-19T07:52:08</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.javascript.nodejs">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.javascript.nodejs</link>
  </textinput>
</rdf:RDF>
