Re: [Ilugc] SixthSense - Became Open Source now

2011-12-14 Thread Shrinivasan T

 where is the code?

Apologies for forwarding that mail without a deep check of the links.

The source code is still not available and the people are asking for
code for a longer time.

check here.
http://code.google.com/p/sixthsense/wiki/Software

Lot of people asking in the wiki and mailing to pranav to update the code.
Still no info available on code.

Let us hope they release it soon.


-- 
Regards,
T.Shrinivasan


My Life with GNU/Linux : http://goinggnu.wordpress.com
Free/Open Source Jobs : http://fossjobs.in

Get CollabNet Subversion Edge :     http://www.collab.net/svnedge
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SixthSense - Became Open Source now

2011-12-14 Thread kenneth gonsalves
On Wed, 2011-12-14 at 14:20 +0530, Shrinivasan T wrote:
 Lot of people asking in the wiki and mailing to pranav to update the
 code.
 Still no info available on code. 

anyone knows where I can get a windows computer to try out the code
(when it is available)
-- 
regards
Kenneth Gonsalves

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [TIP] perl tutorial XI (perl references)

2011-12-14 Thread Girish Venkatachalam
Well just a reference would not cut it.

In English the language that I am not a master of and neither would I
want to be a
 master of come what may, there are two words.

Infer
Imply

Both mean more or less the same thing. You say, implied meaning and you say,
 I infer from this the following.

Anyway in programming languages references or pointers and the C
language idea of
 call by reference and call by value all have something to do with
what I wrote above in
 English.

Basically the concept is that in the normal idea in which a variable
holds a value, like

$a = 50;

in the case of a reference or a pointer, you have a certain
associativity as in math like this:

a - b - c

a - (refers to) - b - (refers to) - c

So you say something like this in perl.

$a = 50;
$ref = \$a;

So now it is like this:

$ref - $a - $50

So you can easily dereference $ref and say,

${$ref} and you will get 50.

As you can see a scalar reference is not like a C variable pointer. It
is not that
 useful.

What makes us wonder at perl's genius and the cleverness of the design is in
assigning an array pointer.

Like this:

@a = (1,3,4,40);

$aref = \@a;

Now it is fun.

You can do a lot of cool things with it but that will take time. For
now say, you can
do this:

print @{$aref};

And as you can guess you can pass the entire array in one variable by
passing a reference to it.

There are lot of other very useful clever things you can do too.

You can build an array of references.

@refarray = ($aref, $aref2, $aref3);

where,

$aref = [1,3,4,10];
$aref2=[2,3,4,200];
$aref3=[100,girish, 20];

Now you have what can be argued is a 2 dimensional array.

Hmm, things are getting a bit involved no?

Hold on. Be with me.

But before that how do these become array references? I just changed the
 () to [] and how do these become references?

That is a perl idiom. Always use funny characters to say what you mean.

So instead of :

@a = (1,3,4);
$ref = \@a;

you say,

$ref = [1,3,4];

Now to dereference you say,

@a = @{$ref};

You can obtain a reference with:

\

and you can dereference with:

@{ }

Try examples.

$ perldoc perlref

-Girish
-- 
G3 Tech
Networking appliance company
web: http://g3tech.in  mail: gir...@g3tech.in
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] FOSS for Organization chart

2011-12-14 Thread Suraj Kumar
On Tue, Dec 13, 2011 at 3:14 PM, Arun Khan knu...@gmail.com wrote:

 On Tue, Dec 13, 2011 at 1:40 PM, freeos freeos...@gmail.com wrote:
 
 Any idea about free software for organization chart which
  includes templates?

 Install dia  It has templates for a host of other things besides org
 charts.


dia can be used to make very good, professional looking diagrams indeed.

If you're looking for outlining a large org chart (or any other such
hierarchy) quickly and dirtily, the freemind mind mapping software might be
helpful too.

cheers,

  -Suraj
-- 
Career Gear - Industry Driven Talent Factory
http://careergear.in/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] FOSS for Organization chart

2011-12-14 Thread Suraj Kumar
On Tue, Dec 13, 2011 at 3:14 PM, Arun Khan knu...@gmail.com wrote:

 On Tue, Dec 13, 2011 at 1:40 PM, freeos freeos...@gmail.com wrote:
 
 Any idea about free software for organization chart which
  includes templates?

 Install dia  It has templates for a host of other things besides org
 charts.


dia can be used to make very good, professional looking diagrams. However,
if its a very large chart, freemind (or any other suitable) mind mapping
software might be helpful in representing your org structure.

regards,

  -Suraj

-- 
Career Gear - Industry Driven Talent Factory
http://careergear.in/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread Suraj Kumar
On Tue, Dec 13, 2011 at 11:34 AM, 0 0...@0throot.com wrote:


 
  I find dotcloud.com very interesting - it may not be open source, but
  supports many open source stacks.

 Its an interesting system. I wonder how they protect their system from
 malicious users, considering they provide a service to run background
 processes.

 http://docs.dotcloud.com/guides/daemons/


dotcloud is a VPS: http://en.wikipedia.org/wiki/Virtual_private_server and
due to its inherently 'compartmentalized' nature it allows a hosting
service provider to divide a physical server into logical spaces.

There are many other VPS providers such as 'linode.com' who provide VPS
instances of many GNU/Linux stacks.

regards,

  -Suraj

-- 
Career Gear - Industry Driven Talent Factory
http://careergear.in/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] (no subject)

2011-12-14 Thread yuvaraj csts

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SixthSense - Became Open Source now

2011-12-14 Thread Arun Khan
On Wed, Dec 14, 2011 at 3:20 PM, kenneth gonsalves
law...@thenilgiris.com wrote:
 On Wed, 2011-12-14 at 14:20 +0530, Shrinivasan T wrote:
 Lot of people asking in the wiki and mailing to pranav to update the
 code.
 Still no info available on code.

 anyone knows where I can get a windows computer to try out the code
 (when it is available)

AFAIK that a Windows 7 Enterprise 90 day eval version is available
from Microsoft.

Search for Windows 7 evaluation gave this link that might perhaps
meet your needs.
http://technet.microsoft.com/en-us/evalcenter/cc442495.aspx.

-- Arun Khan
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] New Packages in debian

2011-12-14 Thread Raman.P
Dear all

Appended below is the lit of some noteworthy packages newly included in debian

Raman.P
blog:http://ramanchennai.wordpress.com/


The Debian Projecthttp://www.debian.org/
Debian Project Newsdebian-public...@lists.debian.org
December 14th, 2011   http://www.debian.org/News/weekly/2011/15/


New and noteworthy packages
---

  761 packages were added to the unstable Debian archive recently. Among many
others [98] are:

  * 4digits -- guess-the-number game, aka Bulls and Cows [99]
  * guacamole -- HTML5 web application for accessing remote desktops [100]
  * knot -- authoritative domain name server [101]
  * mgen -- packet generator for IP network performance tests [102]
  * minetest -- InfiniMiner/Minecraft-inspired open game world [103]
  * musique -- simple but sophisticated graphical music player [104]
  * pinpoint -- hacker-friendly presentation program [105]
  * r8168-dkms -- dkms source for the r8168 network driver [106]
  * redsocks -- redirect any TCP connection to a SOCKS or HTTPS proxy server 
[107]
  * uhub -- high performance Advanced Direct Connect p2p hub [108]

   98 : http://packages.debian.org/unstable/main/newpkg
   99 : http://packages.debian.org/unstable/main/4digits
   100 : http://packages.debian.org/unstable/main/guacamole
   101 : http://packages.debian.org/unstable/main/knot
   102 : http://packages.debian.org/unstable/main/mgen
   103 : http://packages.debian.org/unstable/main/minetest
   104 : http://packages.debian.org/unstable/main/musique
   105 : http://packages.debian.org/unstable/main/pinpoint
   106 : http://packages.debian.org/unstable/main/r8168-dkms
   107 : http://packages.debian.org/unstable/main/redsocks
   108 : http://packages.debian.org/unstable/main/uhub




___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread kenneth gonsalves
On Wed, 2011-12-14 at 18:24 +0530, Suraj Kumar wrote:
 dotcloud is a VPS:
 http://en.wikipedia.org/wiki/Virtual_private_server and
 due to its inherently 'compartmentalized' nature it allows a hosting
 service provider to divide a physical server into logical spaces. 

it is not a VPS.
-- 
regards
Kenneth Gonsalves

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SixthSense - Became Open Source now

2011-12-14 Thread kenneth gonsalves
On Wed, 2011-12-14 at 21:26 +0530, Arun Khan wrote:
  anyone knows where I can get a windows computer to try out the code
  (when it is available)
 
 AFAIK that a Windows 7 Enterprise 90 day eval version is available
 from Microsoft.
 
 Search for Windows 7 evaluation gave this link that might perhaps
 meet your needs.
 http://technet.microsoft.com/en-us/evalcenter/cc442495.aspx. 

just what I wanted - now to wait for the code.
-- 
regards
Kenneth Gonsalves

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [TIP] perl tutorial XII (hashes and references)

2011-12-14 Thread Girish Venkatachalam
References in perl are nothing but pointers but you can't use it like
you do it in C with subtraction, increment and so on.

Perl is a higher level language the references have to be used the perl way.

For instance references allow us to have a hash of arrays. A big array
can be coverted into one element easily with a reference
 and you can use that as a value in a hash.

For that matter you can even use function pointers are hash values.
This is in fact a common perl idiom. Of course in perl you
 don't call it a function pointer; instead you say subroutine reference.

Anyway now let us look at a hash.

%h = ( 1 = first, 2 = second );

$h{1} is first and $h{2} is second.

Now

%h = ( 1 = [1,2,45,100], 2 = $a);

$a = [1,100,girish];

Of course the second line should come on top of first.

Now you can do like this:

$aref = $h{1};

@arr = @{$aref};

You can build an array of references like this also.

@a = (1,2,3,4, [10,30,4], [1,3,4]);

$a[#a][0], $a[#a][1], $a[#a][2] will give 1,3,4

You can also obtain a reference to a hash.

%hs = ( 123 = 35, 100 = 20);

$ref = \%hs;

%hash = %{$ref};

Now, $hash{123} will give 35.

$ perldoc perllol

-Girish
-- 
G3 Tech
Networking appliance company
web: http://g3tech.in  mail: gir...@g3tech.in
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread Suraj Kumar
On Thu, Dec 15, 2011 at 8:03 AM, kenneth gonsalves
law...@thenilgiris.comwrote:

 On Wed, 2011-12-14 at 18:24 +0530, Suraj Kumar wrote:
  dotcloud is a VPS:
  http://en.wikipedia.org/wiki/Virtual_private_server and
  due to its inherently 'compartmentalized' nature it allows a hosting
  service provider to divide a physical server into logical spaces.

 it is not a VPS.


Then please explain what it is other than saying it is not a VPS. Would
like to know (they are too abstract on their website).
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread Suraj Kumar
On Thu, Dec 15, 2011 at 10:17 AM, Suraj Kumar su...@careergear.in wrote:



 On Thu, Dec 15, 2011 at 8:03 AM, kenneth gonsalves law...@thenilgiris.com
  wrote:

 On Wed, 2011-12-14 at 18:24 +0530, Suraj Kumar wrote:
  dotcloud is a VPS:
  http://en.wikipedia.org/wiki/Virtual_private_server and
  due to its inherently 'compartmentalized' nature it allows a hosting
  service provider to divide a physical server into logical spaces.

 it is not a VPS.


 Then please explain what it is other than saying it is not a VPS. Would
 like to know (they are too abstract on their website).


Never mind - they build on top of Amazon EC2 and sell themselves as a
platform as a service. Business/Marketing jargon but they are essentially
still a VPS (IMO, a VPS--) underneath.





-- 
Career Gear - Industry Driven Talent Factory
http://careergear.in/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread 0


 Never mind - they build on top of Amazon EC2 and sell themselves as a
 platform as a service. Business/Marketing jargon but they are essentially
 still a VPS (IMO, a VPS--) underneath.


No, they are not. VPS and PaaS are very different. dotcloud seems to 
offer various services you can use to build you application while in a 
VPS you can go nuts and do *whatever* you want with your guest OS since 
you get root access.

-- 
0
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread Ravi Kumar Tenneti
Hi,

Never mind - they build on top of Amazon EC2 and sell themselves as a

platform as a service.


They don't sell it as Platform as a Service (which is known as PaaS) but
they say that it is Infrastructure as a Service (IaaS). There is lot of
difference between the two and of course Amazon has also an offering for
PaaS on their IaaS. Right now everybody is offering more of IaaS but may be
three to four years down the line, it becomes a commodity item (IaaS) and
the real juice lies with PaaS.

All the best!

Regards

Ravi Kumar




 --
 Career Gear - Industry Driven Talent Factory
 http://careergear.in/
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT]free hosting

2011-12-14 Thread 0

 Right. They offer the services of ops which in the VPS world is to be
 done on one's own.


Not necessarily, because there are also fully managed VPS providers who 
do the ops for you. But you are right, it is something similar.

-- 
0
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] PuduvaiLUG Next meet

2011-12-14 Thread Prasanna Venkadesh
Dear all,

Puducherrry Linux Users Group's next meet is scheduled on 18.12.2011
(Sunday).
Venue:- Ocean Academy, East Coast Road (ECR), Opposite to Jeeva Rukhmani
marriage hall, Lawspet, Puducherry-605008.
Time :- 10.00 AM

We look for volunteers to talk.

-- 
Regards,
Prasanna Venkadesh

PuduvaiLUG (puduvai Linux Users Group): http://puduvailug.wordpress.com/

FOSS Jobs all over India: http://fossjobs.in
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc