Opportunities @ sun Sushant Kumar

Tuesday Sep 23, 2008



Software Freedom Day’08





21st September 08

SMVD University

Sushant Kumar



In recent years, the importance of Software freedom has came as a big boon for both the users and developers.

It has the biggest impact on enterprise market who uses the Free and Open Source software.

And on a general trend, it wont be impractical to say that coming years are guaranteed to be dominated by this “Truly Human Spirit”.

        Developing something, in your precious time for some one whom you don’t event know, and giving him right to modify it according to ones choice can be termed as the ultimate selflessness. Even the most compact summery of whole religion is not different than this. 

But till now, the biggest obstacle in the progressive path of Open Source software is its publicity, understanding and familiarity.

So, we have taken this route to take another step in the growing horizon of Open Source.

We had planned the whole event some 10 days back and transferred the most of responsibility to the juniors (Mostly from2nd year).

They prepared some cool and easy to understand yet informative presentation on various Open Source Technologies including

Open Office, Mysql, Lamp and many others.

We started the Event late in day. All audiences were well charged. I started with focusing on the problems posed by closed

Source software and proposed the use of Open Source Software as a prominent solution.

Next I formally introduced the audience with Open Source paradigm.

Next I invited Tarun Chawla for a detail on Open Source.

Tarun Chawla, the one man freak from Computer Science 4th year presented a consolidate view of Open Source and did some sharp attack on Proprietary providers. He even blamed them of Stealing Codes.

It was quickly followed by a live presentation by Ankur and Praveen about Open Office. They showed various aspects and benefits of Open Office over other Office Suit.

Next, came Surbhi and Kamal with a detailed presentation on Mysql. They discussed about its industry strengths, engines and customization.

They also displayed various comparisons from Google Trend.

It was followed by a Recap with Quiz. I asked few questions from previous slides (And promised them gifts).

Now was the time for Lamp, discussed in detail by Divya and Amit. They discussed various component technologies of Lamp,

 its popularity issues and  Story of market adoption.

Finally came Abhishek and … with details of various types of Licenses. They discussed EULA, GPL, LGPL, CDDL and GPL2.

They also discussed about Mozilla Firefox.

At the end of the day, we distributed OpenSolaris and Netbeans DVD. We also demonstrated the installation of these two on my computer.

Netbeans took approx. 8 minutes and OpenSolaris took 24 minutes to install.

Finally we saw a popular Hindi Movie (A Wednesday), went out for a light eating.



Flag Off<p style="text-align: left;"><img src="http://api.ning.com/files/PljwbnoaWeohPRyNWclhIajQZ4A9WUUcJQGm*pn3cX5ZVwPjmXcalGEilunGrCN-Wgt4NXdW-92GbcgilpFhFVXmWGVZsYy8/image001.jpg" alt="" width="1319" height="1144"/></p>



 <p style="text-align: left;"><img src="http://api.ning.com/files/PljwbnoaWep0ApMRR66keUa*hGshmaxGwLK*o294RIUa-90uVzXH-13uOrIx-SPe9XBztnue8NXvYLwUEZ1DgzciZy1sccnq/image003.jpg" alt="" width="1057" height="1304"/></p>

Tarun Showcasing OS Evolution

<p style="text-align: left;"><img src="http://api.ning.com/files/PljwbnoaWeoUb-XFAEPyoWEGl3-suPayDLFb4*oWWFepMC*GwUxioCYGWT7c2In-Sd0*Z18LobTEcPARrNYfsIE5e79fDFC1/image009.jpg" alt="" width="2981" height="2289"/></p>
Charmed Audiences

Divya with her Magic LAMP

 Amit with the Backbone of Internet

 Installation works too blogs.sun.com/images/smileys/smile.gif" class="smiley" alt=":)" title=":)" /> .

Friday Sep 19, 2008

We, the Sun Club of SMVDU are organizing Software Freedom Day on 21st of this Month.


Today, when i was discussing the final schedule of the event with my director, He asked us “why not we promote Open Office In our University? Currently we pay some 400000 for Microsoft Office 2003."


This was totally surprising for us. We thought that for academics at least it should be free.


It means a big percentage of poor students fee is donated to the richest person for no reason.  


And then we realized our mistake. Every one knows, Open Office Applications are far superior than that existing in our University.


I feel its superiority for 2 straight reasons




  •        It is Free.



  •        It is easy to use.



  •     It is Open Source



During SFD, we had earlier scheduled to Form Our     OpenSource / Linux club on the line of Java club.


The Sun Club was established last year and it has done more than 50 events in past 8 months. It also organizes regular classes in Java / Linux / Solaris in break hours.


Recently, Sun club peoples have also presented a blue print of Campus Automation system to Our Vice Chancellor. And as expected, he accepted our proposal, encouraged us and agreed to promote it up to the highest level.


So , the over all activity of Sun Club attracted the attention of Our Department and they asked us to take initiative in forming Linux Club , SMVDU.


Currently we have more than 70 Certified Linux students.


So, finally the Linux Peoples have got their first Project “Installing 500 Open Office on various computers in Campus” J


I hope Lin Club will do better than expected .  blogs.sun.com/images/smileys/smile.gif" class="smiley" alt=":)" title=":)" />

Wednesday Sep 17, 2008



Create a neural net in easy five steps


Project Home



When I first used tools like JOONE, it took me quite a while
to understand its usability.Although the tool was nothing less that awesome, i wished it
was more easy to use and then thought, why not make a tool with complete automation
support with is as you’ll see is done in 5 easy steps.


- ragha





  • Step 1: Create a
    network







Set up the num of inputs and outputs to the neural network.Add desired num of hidden layers (In the future we are going to add an auto detect mode which
will be able to decide the neural network configuration based on given train
data)





  • Step 2: Set up the training data








Create a txt file with training data and load it.The format is as follows:


Ex - For a network with 2 inputs and outputs



1.2,2.2;0.5,0.43



Char ‘;’ separated the input and output set and ‘,’ separates the values within the set






  • Step 3: set up validation data (optional)







Loading the data and its format is similar to the train data If used, the validation data will be used to determine the
performance of the network…



Otherwise conventional ways are used. Validation data can be used to prevent over-fitting of the
data






  • Step 4: Train the network






Here you can set the required parameters and start training
the network. A graph is shown to indicate the current error.The graph could be used determine if the network is already
saturated and then you could decide to stop training to prevent over-fitting






  • Step 5: Analyze the performance




Here you could test and evaluate the network to see how well
it performs on unknown inputs (This part is yet to be constructed) The network could also be saved and loaded at any time.




Future plans for the tool include automating of the complete
procedure ie, you just have to supply the train data and rest of the
parameters are auto detected (although this mode will consume more time, it will help
save all your trials and errors)





We’ll keep you posted with more improvements


- JNeuralNet Team