[nodejs] Need to know about node.js,npm,aws

2014-12-04 Thread Suryanarayan Jena
HI All, I am new to node.js and AWS.I dont know how/where to start. Kindly guide me the step by step process. Please help me on this. Thanks, Surya -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: http

[nodejs] Can I convert a byte as a string into a real byte?

2014-12-04 Thread P THE AWESOME
I am trying to convert a string with the byte number in it into a real byte. var string = "23"; // Or it could be 4E, CA, 22, FF, or any other byte var byte = somehowConvertStringToByte(string); // The variable "byte" Should look like 0x23 to NodeJS var otherByte = 0x23; // This is 100% equal to

[nodejs] Can nodejs archieve this function?

2014-12-04 Thread Changjun Yao
The app I developed has one-to-one real time vedio function, and it can be used simultaneously in multi-client (iOS、Android、Browser). I have use OpenTok to achieve it, The function I want to archieve is If one of communicates click the button in brwoser , Nodejs will start record the audio bo

[nodejs] Re: DNS (Get/Set)

2014-12-04 Thread Andrey
No idea about Win32 and not sure if there is cross-platform solution, but for Linux you can interface to NetworkManager or Connman using one of node dbus clients ( disclaimer: I'm author of https://github.com/sidorares/node-dbus ) On Thursday, 4 December 2014 04:01:33 UTC+11, Martin Beaudet wro

Re: [nodejs] Can I convert a byte as a string into a real byte?

2014-12-04 Thread Athiwat
This parseInt() something you want? Try parseInt("23", 16) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt I'm on mobile, if anything is incorrect then sorry. On Thu, Dec 4, 2014, 10:22 PM P THE AWESOME wrote: > I am trying to convert a string with the

Re: [nodejs] Can I convert a byte as a string into a real byte?

2014-12-04 Thread Aria Stewart
> On Dec 3, 2014, at 9:36 PM, P THE AWESOME wrote: > > I am trying to convert a string with the byte number in it into a real byte. > > var string = "23"; // Or it could be 4E, CA, 22, FF, or any other byte > var byte = somehowConvertStringToByte(string); // The variable "byte" Should > look l

Re: [nodejs] Need to know about node.js,npm,aws

2014-12-04 Thread Brad Mayes
Take a look at these guides: http://iconof.com/blog/how-to-install-setup-node-js-on-amazon-aws-ec2-complete-guide/ http://thefloppydisk.wordpress.com/2013/04/25/a-node-js-application-on-the-amazon-cloud-part-1-installing-node-on-an-ec2-instance/ http://www.lauradhamilton.com/how-to-set-up-a-node

Re: [nodejs] Can I convert a byte as a string into a real byte?

2014-12-04 Thread P THE AWESOME
Thank you so much. parseInt(string.slice(0,2), 16) worked perfectly! On Thursday, December 4, 2014 9:40:20 AM UTC-6, Aria Stewart wrote: > > > On Dec 3, 2014, at 9:36 PM, P THE AWESOME > > wrote: > > I am trying to convert a string with the byte number in it into a real > byte. > > var string =