Stream

 





NodeCopter comes to Brighton: https://tito.io/leftlogic/nodecopter-brighton… limited hacker spaces, we need more drones - sponsor us & make it awesome!!!
‐ Also on:
Mentions:
Philip Borenstein
@rem @rmurphey So excited until I realized you meant the Brighton in UK, not the one in MA,US ;)



In reply to this conservation:
Remy Sharp
Dear Brighton: need a venue at short notice (nov-10), hold 20-60 people. Open space (as in for flying objects) & has Internet. Ideas?
‐ Also on:
Mentions:
Seb Lee-Delisle
Remy Sharp
@seb_ly @glennjones @laurencehill I called them, clueless guy said "no in today, not sure when the guy is in…". Wonderful. I'll call back
laurencehill
@rem @seb_ly @glennjones sorry for clueless guy - am in and out a lot :-/ what are you after?
Remy Sharp
@laurencehill availability of fabrica for Nov-10 @ 10:00-19:30, whether there’s wifi & costs (plus site visit). Email events@leftlogic.com
Remy Sharp
@laurencehill sorry, squeezed a lot in that last tweet. We’re running a very last minute hack event & looking for a venue that fits our need
Remy Sharp
@laurencehill fabrica was then suggested by a number of locals, @seb_ly et al
laurencehill
@rem hi there - unfortunately we have an exhibition running to end Nov so no availability I’m afraid
Remy Sharp
@laurencehill cheers and cheers for the quick reply
Andy Parker
@rem how much space do you need because you might be able to use @welovecreate ?
Remy Sharp
@theavangelist this is what they used in Berlin: http://nodecopter.com/img/venue-big.jpg… we're looking to house 20 or 60 ppl. likely nowhere near as big
Andy Parker
@rem well, I think it may be worth asking them, it's photo studio in NEH so there is plenty of room, it's a blank canvas.
Create
@theavangelist @rem @laurencehill If you're looking for venue hire, we can hire all or part of our space. Get in touch if you'd like info
Remy Sharp
@welovecreate @theavangelist I see the largest room is 90x90 which is too small for the hacking day
Andy Parker
@rem it's a shame you can't hire out the North Laines, that place is bloody massive inside!.. but it is a pub
Create
@rem we also have the front unit Space http://welovecreate.com/blog/space-at-create/… you are welcome to come and look around, the installation walls are temporary.
Andy Parker
@rem had any joy with hackday location?

In reply to this conservation:
Glenn Jones
Looks like node.js for windows is not there yet. Cannot get jsdom onto Azure https://www.windowsazure.com/en-us/develop/nodejs/… works perfectly on http://microformat-node.jit.su/
Yavor Georgiev
@glennjones jsdom is one of the remaining native modules that don't work on Windows, working on it /cc @gblock
Dave Ward
@theyavor @glennjones @gblock Cheerio is a great jsdom alternative on Windows in situations that it does what's needed: http://encosia.com/cheerio-faster-windows-friendly-alternative-jsdom/
@Encosia @gblock Now got microformat-node working on Azure node.js hosting. Moved from JSDom to Cheerio great module https://github.com/MatthewMueller/cheerio
‐ Also on:
Mentions:
Glenn Block
@glennjones @Encosia great to hear. Been meaning to try out Cheerio. Jsdom does work, you just have to push the pre built binary.


Faster version of microformat-node

I have just uploaded a new version of microformat-node. The parser now takes between 30-40 milliseconds to parse an average page, about 8 times the speed of the last version.

Features of new version

  • About 8x faster at parsing
  • Will now load onto Windows based hosting solutions correctly
  • Inbuilt cache system, which can be customised
  • Upgraded logging and trace options
  • Upgraded unit test system
  • Added support for JavaScript promise

 

Example: http://microformat-node.jit.su/ /> Code: https://github.com/glennjones/microformat-node

 

I have changed how the method calls work so if you are using the last version you may have to update your code. The parse methods parseHtml and parseUrl now follow the standard pattern used in node.js and return an error and data object rather than just the data object.

with URL


var microformat = require("microformat-node");

microformat.parseUrl('http://glennjones.net/about', function(err, data){
    // do something with data
});

or with raw html


var microformat = require('microformat-node');

var html = '

Glenn Jones

'; microformat.parseHtml(html, function(err, data){ // do something with data });

using a promise


var microformat = require("microformat-node");

microformat.parseUrl('http://glennjones.net/about').then( function(err, data){
    // do something with data
}));
  • JavaScript
  • Microformats
  • node.js









Data formats:

API