Try using uploadfs for image processing and file storage instead. It does image conversions efficiently in multiple sizes in a single imagemagick pipeline, and can store your files in your local fs or in S3, so it's easy to move to S3 later. It can also store uploaded files that are not images.
On Thu, Feb 13, 2014 at 10:17 PM, <[email protected]> wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/nodejs/topics > > Simple server script using express doesn't set Content-Type when sending > files [1 Update] > How MEAN have you got :-) [1 Update] > What type of syntax is this ? [2 Updates] > Myyna - Node.js Pineterst Clone script, developed on sleek.js framework. [4 > Updates] > What to do to make it easier to translate(i18n) learnGitBranching [4 > Updates] > printing thread id [6 Updates] > Alternative to GYP? o.o [3 Updates] > chaining a promise and array of promises [1 Update] > Web Scraping Frameworks for Node.JS? (e.g. like Python's Scrapy) [1 Update] > Checkout MVC for node js :: Sleek.js [1 Update] > node-gd does not work. [6 Updates] > Where exactly is the error?[Beginner] [1 Update] > > Simple server script using express doesn't set Content-Type when sending > files > > David Karr <[email protected]> Feb 13 06:04PM -0800 > > I've written a simple server script that is intended to be used as a tool > for front-end developers to shorten their dev cycle. It serves all local > files, but proxies calls to a web service to an ...more > > Back to top > > How MEAN have you got :-) > > Babu Subramanian <[email protected]> Feb 14 06:31AM +0530 > > Hi > > Would like to know from guys, who have used the MEAN stack, how you found > it? Any useful pointers will be welcome! > > Thanks & Regards > > Babu Subramanian > +91 98452 02337 > ...more > > Back to top > > What type of syntax is this ? > > Ziobudda <[email protected]> Feb 14 12:26AM +0100 > > Hi all, I have found this syntax in node-gd page on npmjs.org: > > > gd.openPng "test.png", (err, input_img) -> > console.log "width: ", input_img.width > console.log "height: ", input_img.width > > ...more > > Back to top > > Kevin Ingwersen <[email protected]> Feb 14 01:04AM +0100 > > Thats CoffeeScript o.o > Am Fr. Feb. 14 2014 00:26:16 schrieb Ziobudda: > > ...more > > Back to top > > Myyna - Node.js Pineterst Clone script, developed on sleek.js framework. > > Robin Samuel <[email protected]> Feb 13 05:55AM -0800 > > Say Hello to your own private Pinterest! Today, Cubet Techno Labs is > introducing Myyna, a major Node.Js based Pinterest clone script built on > Sleek.js framework that helps you to make your own ...more > > Back to top > > Ziobudda <[email protected]> Feb 13 03:10PM +0100 > > Wow. Great works. With some bugs but a great works. > > Can you explain us about your framework choice ? Why sleek.js and not > express.js or use angular.js ? > > Thanks for all. > > M. > ...more > > Back to top > > Ziobudda <[email protected]> Feb 13 03:12PM +0100 > > Can you explain us about your framework choice ? Why sleek.js and not > express.js or use angular.js ? > Sorry, sleek.js depend on express.js. > > The other questions remain. > > M. > > ...more > > Back to top > > Alex Kocharin <[email protected]> Feb 14 03:56AM +0400 > > Opened the page, looked at the white screen for a couple of seconds, closed > again... > > Is it supposed to be so, or should I bother adding this host to NoScript > exceptions which I do very rarely? > ...more > > Back to top > > What to do to make it easier to translate(i18n) learnGitBranching > > Fabio Caritas Barrionuevo da Luz <[email protected]> Feb 12 08:01PM -0800 > > Hello, > This is the largest community of users of technologies derived from > Javascript I know, so I thought it is the best place to get help. > > I would like to help you to find the best solution ...more > > Back to top > > Alex Kocharin <[email protected]> Feb 13 09:28AM +0400 > > gettext is the way to go. And there are plenty of node.js modules that > support gettext files. > > All node.js modules (except native ones) are able to work in the browser. > For example, browserify can ...more > > Back to top > > Fabio Caritas Barrionuevo da Luz <[email protected]> Feb 13 03:50AM -0800 > > Alex, > > you could create a working example that works* only on the client sid*e and > use *gettext* > > A pull request would be much appreciated...XD > ...more > > Back to top > > Alex Kocharin <[email protected]> Feb 14 03:39AM +0400 > > It looks like Jed is good way to solve this. Why do you think it won't work? > > Anyway, here is what I came up with in 20 minutes with zero knowledge of any > existing i18n tools: > > $ yapm install ...more > > Back to top > > printing thread id > > Pawel Por <[email protected]> Feb 13 04:01AM -0800 > > Hi > > How can I print thread id in node js ? > I mean thread ID (TID) not process ID (PID). > > thanks for answer > ...more > > Back to top > > Alan Hoffmeister <[email protected]> Feb 13 10:04AM -0200 > > I think that Node.js don't have threads, so no TID... > -- > Att, > Alan Hoffmeister > > > ...more > > Back to top > > Pawel Por <[email protected]> Feb 13 04:11AM -0800 > > but "ps" linux command shows that my node application consumes 2 threads. > > thanks for reply > > On Thursday, February 13, 2014 1:04:57 PM UTC+1, Alan Hoffmeister wrote: > ...more > > Back to top > > greelgorke <[email protected]> Feb 13 04:43AM -0800 > > node.js does have threads under the hood, i.e. fs calles are processed by a > threadpool. there is however no public api for thread id detection. only > way i could think of currently is to make a ...more > > Back to top > > Sam Roberts <[email protected]> Feb 13 01:27PM -0800 > >> but "ps" linux command shows that my node application consumes 2 threads. > > Yeah, but your javascript always runs in the main process, which has a > tid === pid. > > What exactly are you looking for? ...more > > Back to top > > Alexey Petrushin <[email protected]> Feb 13 01:30PM -0800 > > You can have fibers instead. They are close to threads, and you can assign > id to it or use fiber local storage > ...more > > Back to top > > Alternative to GYP? o.o > > Kevin Ingwersen <[email protected]> Feb 13 07:30PM +0100 > > Hey. > > Is there an actual alternative to node-gyp? GYP is barely documented, and > its hard to figure things out. > I am just being curios, as I am currently lurking into different build > systems. > ...more > > Back to top > > mscdex <[email protected]> Feb 13 10:40AM -0800 > > On Thursday, February 13, 2014 1:30:35 PM UTC-5, Kevin Ingwersen wrote: >> its hard to figure things out. >> I am just being curios, as I am currently lurking into different build >> systems. > ...more > > Back to top > > Kevin Ingwersen <[email protected]> Feb 13 07:51PM +0100 > > Postbuilds, refactoring, proper .framework creation, information on how to > properly set up the link settings - because you have target/libraries and > target/link_settings/libraries. It also doesnt ...more > > Back to top > > chaining a promise and array of promises > > Reza Razavipour <[email protected]> Feb 13 10:01AM -0800 > > I am using Q for my promise library. > I have a promise that if success calls and array of promises. > > The code is: > > getCount(client).then(function (count) { // ...more > > Back to top > > Web Scraping Frameworks for Node.JS? (e.g. like Python's Scrapy) > > Alexey Petrushin <[email protected]> Feb 13 06:32AM -0800 > > Guess what - problem with RAM - when I switched from micro to medium EC2 > instance problem dissapeared ... > > On Wednesday, 12 February 2014 22:47:20 UTC+4, Matt Sergeant wrote: > ...more > > Back to top > > Checkout MVC for node js :: Sleek.js > > Robin Samuel <[email protected]> Feb 13 05:52AM -0800 > > Our first #sleekjs <https://twitter.com/search?q=%23sleekjs&src=hash> based > application, #pinterest > <https://twitter.com/search?q=%23pinterest&src=hash>clone is live now.. Take > a look at ...more > > Back to top > > node-gd does not work. > > Ziobudda <[email protected]> Feb 13 09:59AM +0100 > > Hi all, I'm creating a little node.js app (for test) that get image from a > FORM, save it in a directory and create a thumbnail version. > Form and upload works with no problem, but I can not create ...more > > Back to top > > Luca Morettoni <[email protected]> Feb 13 10:07AM +0100 > >> The function gd.open(...) set always "png" variables to "undefined". I >> don't >> understand where is my error. >> Thanks in advance and sorry for my bad english. > > hello Zio! I don't know the gd ...more > > Back to top > > Ziobudda <[email protected]> Feb 13 10:10AM +0100 > > Can you drive me to the documentation of the "gd" lib? > Hi Luca, I have get node-gd from github: > > https://github.com/taggon/node-gd > > > > M. > > -- > Michel 'ZioBudda' Morelli ...more > > Back to top > > Alex Kocharin <[email protected]> Feb 13 01:12AM -0800 > > First argument of openPng is an error. If you don't have an error, it will > be undefined. > > PS: I think "node-gd" library is a great example of why npm should have > namespaces :P > > ...more > > Back to top > > Luca Morettoni <[email protected]> Feb 13 10:14AM +0100 > >> First argument of openPng is an error. If you don't have an error, it will >> be undefined. > > https://github.com/taggon/node-gd#using-gd > > I think the Michel code is ok... later I'll try to run ...more > > Back to top > > Alex Kocharin <[email protected]> Feb 13 03:11AM -0800 > > What node-gd are we talking about? > > taggon/node-gd? mikesmullin/node-gd? andris9/node-gd? > hanssonlarsson/node-gd? > > Okay, I see it's the first one. I just mistook it for ...more > > Back to top > > Where exactly is the error?[Beginner] > > Anurag Prasad <[email protected]> Feb 13 10:34AM +0530 > > @Shuan- Thanks a lot! > > > > -- > Anurag Prasad > Birla Institute of Technology & Science, Pilani > Pilani Campus > Pilani, India. 333 031 > Mobile: +91 - 9001250705 ...more > > Back to top > > -- > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "nodejs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. -- Tom Boutell Lead Developer P'unk Avenue 215 755 1330 punkave.com window.punkave.com -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
