My Linux Stuff - Complete Blog For Linux Articles

My Linux Stuff - Complete Blog For Linux Articles

A Website For Complete Linux OS,Step by Step linux Installtion, Linux Tips and Tricks and Linux Stuff and so on... Connect and sharing here....

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

This below survey was taken many form many colleges in India. These Top 50 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good.

Top 10 Government Engineering Colleges in India

Top 10 Government Engineering Colleges in India

These Government Engineering Colleges in India are really good for all kind of stuff like Education , research , Placement and New Innovation Ideas etc... But Getting seat in these colleges are heavy competition in students .....

Top 10 Colleges In India 2014

Top 10 Colleges In India 2014

Indian Institute Of Technology Delhi,Indian Institute Of Technology Bombay,Indian Institute Of Technology Kanpur,Indian Institute Of Technology Madras,Indian Institute Of Technology Kharagpur,Indian Institute Of Technology Roorkee,University Of Delhi,Indian Institute Of Technology Guwahati,University Of Calcutta,University Of Mumbai, National Institute Of Technology,Trichy.

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

This below survey was taken many form many colleges in India. These Top 100 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good. If you want to do Engineering as your dream and try out these colleges

Subscribe Now!

Enter your email address:

Monday, April 4, 2016

Top 20 Engineering College List in India 2016

Hi users today i am gonna to post about Top 10 Engineering Colleges in India 2016. Today lot of engineering are available in India i am going to say example in Tamilnadu have more 600+ engineering colleges are available.

So you must want to know about which are top and best private engineering colleges in India.

In India, there are several engineering colleges imparting undergraduate and graduate courses in engineering, applied engineering and sciences. The Indian Institutes of Technology (IITs), the Birla Institute of Technology and Science, the Manipal Institute of Technology, the National Institutes of Technology (NITs), Anna university ,the VIT University and University of Mumbai are the renowned and reputed institutes in the country. In total more than 5000 universities and colleges offer engineering courses.
Top 20 Engineering College List in India 2016

The Indian Institutes of Technology (IITs) are a group of autonomous public engineering and management institutes of India. The IITs are governed by the Institutes of Technology Act, 1961

IITs are top Engineering college in worldwide. Most of IIT'ians Get  Placement in Big Big MNC's. Their starting package for a month is minimum as 1.5 lakhs rupees right now. Highest packages are 8 lakhs per month. VIT is Ranked 1 Engineering College List in Tamilnadu

The HRD ministry released first-of-its-kind National Institutional Ranking Framework (NIRF) on Monday, reports The Indian Express.


According to the list, IIT Madras is the top engineering college followed by IIT Mumbai and IIT Kharagpur. 

Top 10 IIT College List in India 2016



  1. Indian Institute Of Technology, Madras
  2. Indian Institute Of Technology, Bombay
  3. Indian Institute Of Technology, Kharagpur
  4. Indian Institute Of Technology, Delhi
  5. Indian Institute Of Technology, Kanpur
  6. Indian Institute Of Technology, Roorkee
  7. Indian Institute Of Technology, Hyderabad
  8. Indian Institute Of Technology, Gandhinagar
  9. Indian Institute Of Technology, Ropar-Rupnagar
  10. Indian Institute Of Technology, Patna
  11. Top 10 IIT College List in India 2016
    Test
  12. Indian Institute Of Technology, North Guwahati
  13. National Institute Of Technology, Tiruchirappalli,Tamilnadu
  14. Vellore Institute Of Technology ,Vellore,Tamil Nadu
  15. VIT is Ranked 1 Engineering College List in Tamilnadu
  16. Indian Institute Of Technology (Banaras Hindu University), Varanasi
  17. Sardar Vallabhbhai National Institute Of Technology
  18. Indian Institute Of Technology, Indore
  19. Birla Institute Of Technology, RANCHI, Jharkhand
  20. Visvesvaraya National Institute Of Technology, Nagpur 
  21. National Institute Of Technology, Rourkela
  22. Indian Institute Of Technology, Mandi 
  23. College Of Engineering, Pune
Top NIT Engineering College List in India 2016

Top 20 Engineering College List in India 2016


Wednesday, March 30, 2016

Sending an Email With and Without Attachments Using C#

Sending an Email is important thing for every Dot net developer working in web applications project. Sometimes required to need send with attachments in email. Sending an email with attachment is easy and simple in C# to send. Follow the below steps to implement in your projects.

In this post I am discussing to send an email in two different ways
    1.   Send e-mail via SMTP (Gmail) using C#.
    2.   Send e-mail via Host Address using C#.



Note: Add these namespace in your code behind  or Controller in C#.
using System.Net;
using System.Net.Mail;

    1.   Send e-mail via SMTP (Gmail) using C#.
Function for Without Attachment
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content
                SmtpClient client = new SmtpClient("smtp.gmail.com"));
client.Port = 587;
    client.Credentials = new System.Net.NetworkCredential("your mail@gmail.com", "your password");
    client.EnableSsl = true;
                client.Send(message);
            }
        }
Function for With Attachment
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

//Attachment goes here
    System.Net.Mail.Attachment attach;
    attach = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   attach.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach);

                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content
                SmtpClient client = new SmtpClient("smtp.gmail.com"));
client.Port = 587;
    client.Credentials = new System.Net.NetworkCredential("your mail@gmail.com", "your password");
    client.EnableSsl = true;
                client.Send(message);
            }
        }
Function for With Multiple Attachments
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

//Attachment 1
    System.Net.Mail.Attachment attach;
    attach = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   attach.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach);

//Attachment 2
    System.Net.Mail.Attachment attach2;
    Attach2 = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   Attach2.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach2); 
                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content
                SmtpClient client = new SmtpClient("smtp.gmail.com"));
client.Port = 587;
    client.Credentials = new System.Net.NetworkCredential("your mail@gmail.com", "your password");
    client.EnableSsl = true;
                client.Send(message);
            }
        }

   2.   Send e-mail via Host Address using C#.

Function for Without Attachment
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content

SmtpClient client = new SmtpClient();
                client.Host = "10.10.18.10"; // Mention your server host IP Address Here
    client.EnableSsl = true;
                client.Send(message);
            }
        }
Function for With Attachment
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

//Attachment goes here
    System.Net.Mail.Attachment attach;
    attach = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   attach.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach);

                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content
                SmtpClient client = new SmtpClient();
                client.Host = "10.10.18.10"; // Mention your server host IP Address Here
    client.EnableSsl = true;
    client.Send(message);
            }
        }

Function for send an email Multiple Attachments Using c#
protected void sendEmail()
        {
            using (MailMessage message = new MailMessage())
            {
                message.From = new MailAddress("from_address@gmail.com");
                message.To.Add(new MailAddress("to_address@test.med.ca"));
                message.CC.Add(new MailAddress("copy@domain.com"));
                message.Subject = "Special Medication Request from " + txtPhyName.Text.ToString() + " , " + txtPosTile.Text; //Subject Here

//Attachment 1
    System.Net.Mail.Attachment attach;
    attach = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   attach.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach);

//Attachment 2
    System.Net.Mail.Attachment attach2;
    Attach2 = new System.Net.Mail.Attachment("c:/www/root/filename.png //file extension");
   Attach2.Name = "map.png"; // Here You can describe your filename with or without extension
    message.Attachments.Add(attach2); 
                message.Body = "Drug Name: " + txtdrugName.Text.ToString() + "\n" + "Quantity: " + txtQtyReq.Text;  //Body Of Email Content
                SmtpClient client = new SmtpClient();
                client.Host = "10.10.18.10"; // Mention your server host IP Address Here
    client.EnableSsl = true;
                client.Send(message);
            }
        }

Using above function call in any events to send an email. We can use these in Contact us Form and many more areas where ever required.

If you have any problem in coding comment it here. As soon as possible we will reply to you.


Hope all you understood clearly and it will help you. Let enjoy coding

Sending an Email With and Without Attachments Using C#

Sending an Email With and Without Attachments Using C#

Sunday, March 27, 2016

Top 10 University in United Kingdom

Top and Best Universities in United Kingdom

As of December 2015, there were one hundred and six universities and university colleges in England out of a total of around 130 in the United Kingdom.

This is a list of Best and Top institutions in the United Kingdom. United Kingdom is best place to do degree and Higher studies. The Quality of education in United Kingdom is best and latest technologies has been modeled. United Kingdom Providing world-class education in worldwide. UK higher education offers you inspiring teaching, excellent facilities and a world-class research environment. Half of the world's top eight universities are in the UK.

  • University of Cambridge
  • University of Oxford
  • London School of Economics and Political Science
  • Imperial College London
  • Durham University
  • University of St Andrews
  • University of Warwick
  • University College London
  • University of Edinburgh
  • Lancaster University
  • University of Surrey
  • University of Exeter
  • King’s College London
  • University of Manchester
  • University of Bristol
  • University of Glasgow


93% of postgraduate students rated the UK's quality of teaching positively.The rate of student satisfaction among international undergraduates is at 91% – higher than any other major English-speaking education destination.

Over 88% of international graduates are satisfied with their UK learning experience . The UK is a world-leading research nation in the worldwide.
UK education is all about giving you the inspiration to help you develop your skills, the freedom to be creative, and the support you need to achieve your best.
UK universities and colleges invest in excellent facilities – from libraries, computer and science labs to sports centers, theaters and art studios. Class sizes are restricted to ensure that you have access to equipment and enough time to talk to your tutors and lecturers.

UK undergraduate and postgraduate courses are generally shorter than in other countries, helping to keep the cost of tuition fees and living expenses down.


UK universities and colleges are regularly reviewed to ensure high standards of academic education, teaching, accommodation, welfare support and facilities.

Top 10 University in United Kingdom


UK undergraduate and postgraduate courses are generally shorter than in other countries. This helps to keep tuition fees and living expenses down. Most full-time undergraduate courses take three years to complete. Full-time postgraduate courses can take one year or more.

Tuition fees for UK higher education courses vary, depending on factors including: whether you are from the European Union/European Economic Area; where in the UK you are studying (there are different rules for England, Scotland, Northern Ireland and Wales); and whether you are studying at undergraduate or postgraduate level.

There are a number of good scholarship and financial support schemes for UK higher education courses. Demand can be high, but it is well worth taking a look at what is available.Top 10 University in United Kingdom

Top and Best Universities in United Kingdom

Nearly 50 universities in London, including some of the best universities in the world, offer over 10,000 courses for students from around the world. 

Indian students can stay on for six months after graduating to look for employment in France in their line of work. Once hired, a long-stay work permit is readily obtainable with the help of the company.Top 10 University in United Kingdom

Reasons for Indian Students to Study in the UK
  • Internationally recognized qualifications
  • High Quality of education
  • Opportunities offered by UK education system
  • Strong research activities and infrastructure
  • An interesting place to live
  • Work and study
  • Work permit after study
  • Scholarship and financial support (Bank Loans)
  • Health benefits
  • Cross-cultural experience


Top 10 University in United Kingdom

Wednesday, March 23, 2016

6 Things To Do During Your Notice Period

Notice period is generally considered as one of the most important time of your career. No matter what the reason is, it is crucial that you walk out of your workplace gracefully when it’s time to leave. Take a look at Six things that you must keep in mind while cruising through your notice period:

 6 Things To Do During Your Notice Period


6 Things to do during your notice period:
Transition: It is always good to have a plan before you approach your boss. Despite the fact that you and your boss might have different approaches, it is always better to think about what might happen after you leave. It’s appreciative of your work ethics and principles.
Professionalism: You need to have a professional approach. Think twice before you speak. Never say things that you would regret in the future or might harm your career. Continue to maintain the same work ethics until you step out of your office for good. It is always better to leave on a good note.
Plan: Switching jobs is a major step in your career. It’s always good to have a plan before you move on from your current organization. This can help you handle stress in a better manner. Have a temporary plan for your finances, job requirements, commute, and other changes the new job might bring to your current lifestyle.
Resume: It’s always better to keep your resume updated. Also, remember to fill in details of different projects handled by you efficiently. During your notice period make time to pen down all your accomplishments in that organization that might be of your advantage in the corporate world.
Desk: Start clearing all your personal belongings from your desk. You don’t have to wait for the last day to carry the load of things.It’s always nice to clear your desk. This can help the other individual moving into your space can start fresh.

Certificate: Collect the Experience certificates/documents we have to get from our employer at the time of leaving.


This work is produced by Simplus Information Services Pvt Ltd. Customer engagement through content.
Source : Yahoo.in
Things To Do During Your Notice Period

5 Things To Do During Your Notice Period

Wednesday, March 16, 2016

WhatsApp Added New Features March 2016


WhatsApp Tips and Tricks

WhatsApp has more than one billion monthly active users, making it one of the most popular apps in the world. The latest WhatsApp update has brought five new features to the messaging app, reports News Talk.

First of all if you need all these features in your app, First you need to update the whatsapp latest version or Download the Latest version in Android Mobile.



WhatsApp new features include: 

Documents: Users can now share documents and PDF files using third party apps like Google Docs, iCloud and DropBox.

Photos: The new enhanced photo sharing features allows users to share images from other apps. Within the app, users hit “Photo / Video Library” and selecting “choose from another app”.

Zoom: It’s now possible to zoom-in on videos, in the way many of us do on photos now.

Background: Users can now replace the standard background with an image or block color of your choice.

Storage: WhatsApp users have experienced storage issues in the past, stating the application uses too much space. Developers have responded to this and reduced the amount of space required to run the app.

Group Participants: In Group now we can add up 256 participants. So now onward you can connect all family and friends in single group itself. Before it was up to 100 participants only.

The ability to file share within WhatsApp is a positive step for the instant messaging service, giving business users more reason to remain with the application rather than e-mail. 

WhatsApp announced earlier this year that they will stop supporting the BlackBerry 10 and Nokia platforms, as well as earlier versions of Android. So try use Android 5.0 version mobile now and Update your whatsApp regularly.WhatsApp Added New Features March 2016

WhatsApp Added New Features March 2016

How to send Documents in WhatsApp:

WhatsApp allows you to send documents to your contacts, just as you would send media, contacts or a location. Please keep in mind that WhatsApp only supports sending PDF files at this time.

Step by step to send documents in whatapps:

  • The Sender and receiver of WhatsApp must be updated to latest version of WhatsApp .
  • The version of Whatsapp must be above 2.12.500
  • Open a chat


  • Tap the  Icon at the top of the screen
  • Choose Document.
  • Select the desired document to send and tap send in the popup.
Step by step to send documents in whatapps


Note: The maximum allowed file size is 100 MB. In order to send a document from within WhatsApp, use the  icon in a chat. The document must be saved locally on your phone. Alternatively, WhatsApp will appear as an option in the share menu of app that handle PDFs like Dropbox and Google Drive.


How to send Documents in WhatsApp


WhatsApp Added New Features March 2016

Related Posts Plugin for WordPress, Blogger...