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:

Tuesday, April 5, 2011

Accordion Header Color and selected color in Flex4





MXML File

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
  xmlns:s="library://ns.adobe.com/flex/spark"
  xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%">
<fx:Style source="/CssStyle/AccoridianLayout.css"/>
<fx:Script>
<![CDATA[

import boxie_skins.panel_acc;

import mx.collections.ArrayCollection;
[Bindable] public var ddltxt:ArrayCollection = new ArrayCollection([
{Label:"Delhi", data:'1'},
{Label:"Mumbai", data:2},
{Label:"Tamilnadu", data:3},
{Label:"Karantaka", data:4},
{Label:"AndhraPardesh", data:5},
{Label:"Utter Pradesh", data:6}
]);
[Bindable] public var cardtype:ArrayCollection = new ArrayCollection([
{Label:"", data:06},
{Label:"Visa", data:7},
{Label:"Master Card", data:8},
{Label:"American Express", data:9},
{Label:"Discover", data:10},
{Label:"Dinner Club", data:11}
]);
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>

<s:BorderContainer width="100%" height="100%" borderVisible="false" borderColor="#ffffff" backgroundColor="#838C8C">

<s:layout>
<s:HorizontalLayout horizontalAlign="center" />
</s:layout>

<s:Panel  cornerRadius="5" borderColor="#ffffff" width="45%" borderVisible="false" title="Product Catalog" styleName="paneltitle">
<s:VGroup width="100%" height="100%">
<mx:Accordion id="accordion" width="99%" height="98%" left="5" top="5" bottom="20" borderColor="#AAB3B3" headerStyleName="header">
<s:NavigatorContent label="General Information" styleName="paneltitle" >
<s:Group width="100%" height="100%">
<s:VGroup width="100%" height="100%" paddingTop="20" paddingLeft="25" bottom="50">
<s:HGroup width="100%">
<s:Label text="Name" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Address" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="City" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="State" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:DropDownList dataProvider="{ddltxt}" labelField="Label" prompt="Choose a state..." width="180">

</s:DropDownList>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Zip" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Email" paddingTop="6" styleName="txt" width="80"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%" paddingTop="80" paddingLeft="445">
<s:Button label="Continue" click="accordion.selectedIndex=1;"/>
</s:HGroup>
</s:VGroup>
</s:Group>
</s:NavigatorContent>
<s:NavigatorContent label="Shipping Information" styleName="paneltitle" >
<s:Group>
<s:VGroup width="100%" height="100%"  paddingTop="20" paddingLeft="25">
<s:RadioButton label="US Mail (3-7 business days)"/>
<s:RadioButton label="UPS (2 bussiness days)"/>
<s:RadioButton label="FedEx (Overnight Priority)" selected="true"/>
<s:HGroup width="100%" paddingTop="200" paddingLeft="445">
<s:Button label="Continue" click="accordion.selectedIndex=2;"/>
</s:HGroup>
</s:VGroup>
</s:Group>
</s:NavigatorContent>
<s:NavigatorContent label="Payment Information" styleName="paneltitle" >
<s:Group width="100%" height="100%">
<s:VGroup width="100%" height="100%" paddingTop="20" paddingLeft="25" bottom="50">
<s:HGroup width="100%">
<s:Label text="Card Type" paddingTop="6" styleName="txt" width="100"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:DropDownList dataProvider="{cardtype}" width="130" labelField="Label"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="credit Card" paddingTop="6" styleName="txt" width="100"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Holder Name" paddingTop="6" styleName="txt" width="100"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:TextInput width="180"/>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Expiration Month" paddingTop="6" styleName="txt" width="100"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:DropDownList width="50" selectedIndex="0">
<s:dataProvider>
<s:ArrayList source="[1,2,3,4,5,6,7,8,9,10,11,12]" />
</s:dataProvider>
</s:DropDownList>
</s:HGroup>
<s:HGroup width="100%">
<s:Label text="Expiration Year" paddingTop="6" styleName="txt" width="100"/>
<s:Label text="*" color="red"  paddingTop="7.5" fontSize="18"/>
<s:DropDownList width="70" selectedIndex="0">
<s:dataProvider>
<s:ArrayList source="[2004,2005,2006,2007,2008,2009,2010]" />
</s:dataProvider>
</s:DropDownList>
</s:HGroup>
</s:VGroup>
</s:Group>
</s:NavigatorContent>
</mx:Accordion>
<s:Label text="Order Summary" styleName="order"/>
<s:Label text="Order Total:                           $129.99" styleName="txtsmall"/>
<s:Label text="Shipping and Handling:           $5.99" styleName="txtsmall"/>
<s:Label text="Grand Total:         $135.98" styleName="grand"/>
</s:VGroup>
</s:Panel>
</s:BorderContainer>
</s:Application>


CSS File

/* CSS file */
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace spark "mx.skins.spark.*";

.paneltitle
{
}
.txt
{
text-align:right;
font-size:12px;
font-family:arial;
font-weight:normal;
}

s|Panel
{
font-size:11px;
font-family:arial;
color:#2B333C;
font-weight:bold;
}

.header {
skin: ClassReference("boxie_skins.AccordianTabskin");
}
.order
{
padding-left:5px;
padding-top:10px;
font-size:16;
font-weight:bold;
font-family:arial;
color:#333333;
}

.grand
{
color:#FF6600;
font-size:16;
padding-left:5px;
padding-top:10px;
}
.txtsmall
{
color:#0B333C;
padding-left:5px;
}


Skin File

<?xml version="1.0" encoding="utf-8"?>

<!-- http://blog.flexexamples.com/2009/06/21/creating-a-custom-halo-accordion-header-skin-in-flex-4/ -->
<s:SparkSkin name="CustomAccordionHeaderSkin"
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
minWidth="21" minHeight="21"
alpha.disabled="0.5">
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
<s:State name="selectedUp" />
<s:State name="selectedOver" />
<s:State name="selectedDown" />
<s:State name="selectedDisabled" />
</s:states>
<!-- layer 3: fill -->
<s:Rect left="1" right="1" top="1" bottom="1" rotation="360">
<s:fill>
<s:SolidColor color="white"  
 color.selectedUp="#E6FFDC"
 color.selectedOver="#E6FFDC"
 color.selectedDown="#E6FFDC" />
</s:fill>
</s:Rect>
<!-- layer 4: fill lowlight -->
<s:Rect left="1" right="1" bottom="1" height="9">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x000000" alpha="0.0099" />
<s:GradientEntry color="0x000000" alpha="0.0627" />
</s:LinearGradient>
</s:fill>
</s:Rect>
<!-- layer 5: fill highlight -->
<s:Rect left="1" right="1" top="1" height="9">
<s:fill>
<s:SolidColor color="0xFFFFFF"
 alpha="0.33"
 alpha.over="0.22"
 alpha.down="0.12" />
</s:fill>
</s:Rect>
<!-- layer 6: highlight stroke (all states except down) -->
<s:Rect left="1" right="1" top="1" bottom="1" excludeFrom="down">
<s:stroke>
<s:LinearGradientStroke rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha.over="0.22" />
<s:GradientEntry color="0xD8D8D8" alpha.over="0.22" />
</s:LinearGradientStroke>
</s:stroke>
</s:Rect>
<!-- layer 6: highlight stroke (down state only) -->
<s:Rect left="1" top="1" bottom="1" width="1" includeIn="down">
<s:fill>
<s:SolidColor color="0x000000" alpha="0.07" />
</s:fill>
</s:Rect>
<s:Rect right="1" top="1" bottom="1" width="1" includeIn="down">
<s:fill>
<s:SolidColor color="0x000000" alpha="0.07" />
</s:fill>
</s:Rect>
<s:Rect left="1" top="1" right="1" height="1" includeIn="down">
<s:fill>
<s:SolidColor color="0x000000" alpha="0.25" />
</s:fill>
</s:Rect>
<s:Rect left="1" top="2" right="1" height="1" includeIn="down">
<s:fill>
<s:SolidColor color="0x000000" alpha="0.09" />
</s:fill>
</s:Rect>
<!-- layer 2: border -->
<s:Rect left="0" right="0" top="0" bottom="0" width="69" height="20">
<s:stroke>
<s:SolidColorStroke color="#AAB3B3" color.over="#67E634"
/>
</s:stroke>
</s:Rect>
</s:SparkSkin>

Openings @ mPower Labs | Manager - OperationsTuesday, April 5, 2011 10:20 AM


Dear All,
 cid:image002.png@01CAEAD0.4FEBC8B0
Greetings from mPower Labs Pvt Ltd.

We are looking at candidates for the position of Manager - Operations (5 + years of experience) with excellent communication skills and knowledge on IT operations. The compensation will be as per the industry with amazing freedom and exposure. Please send your updated resume to career@mpowerglobal.comimmediately.

About TransIT mPower Labs:
TransIT mPower Labs is a software firm dedicated to provide quality IT solutions to organizations worldwide. In an era of information technology where change is constant, we have carved out a niche for itself by providing quality service to our clients by making use of the latest developments in technology. We now have presence in IndiaMalaysia and USA catering to clients like Cisco, TCS, SUN, USON to name few. The company boasts of a well-equipped offshore software facility in Bangalore, Silicon Valley of India, for providing outsourcing services. For more details, please visit www.mpowerglobal.com.

Regards,


cid:image002.png@01CAEAD0.4FEBC8B0

Opportunity for Dotnet Professionals

We have an opening with one of our prestige client, Valuebound

Resume To : puja@abhilekha.com




Valuebound Overview:


Valuebound is a global website development solutions and services partner. In Valuebound, we develop and manage custom web solutions for small to medium sized businesses.

Kindly go through the JD and revert with the updated resume at the earliest

Company: Valuebound Inc.
url: www.valuebound.com

JOB Description:
Software Engineers

1. 1+ years of experience in .Net based application design, development and deployment.
2. Must have knowledge in Web Services, ASP.net, C Sharp, Ado.net, LinQ.
3. The work would involve understanding the requirements, understanding the architecture, code development and unit testing.
4. Good Communication

Please send the updated resume with the details:
Total Experience -
Dotnet Experience -
Current CTC -
Expected CTC – (20 to 30% on current CTC)
Notice Period -
Current Company –

Regards,
Puja Kumar

Product Development Company Looking for UI Developer

Company Information:
Pitney Bowes is a Fortune 300 Company and Pitney Bowes Software is among world"s top 100 software company with more than 35000 employees worldwide and market cap of $6 Billion.
Pitney Bowes MapInfo, part of Pitney Bowes Inc. (NYSE:PBI), is the leading global provider of locational intelligence solutions, integrating software, data and services to provide greater value from location-based information and drive more insightful decisions for businesses and government organizations around the world. The Company"s solutions are available in multiple languages through a network of strategic partners and distribution channels in 60 countries. Visit www.mapinfo.com and www.pb.com for more information.
Pitney Bowes MapInfo India Pvt Ltd is currently hiring highly motivated individuals for its R&D Center (Product Development, Global Services) in Noida. They have openings for the below position.

Skills would be
 0-4 years of experience.
 Minimum understanding of UX concepts , Visual Design concepts.
 Basic concepts of UI patterns and UI frameworks.
 Expertise in HTML, JavaScript, AJAX , Silverlight, C# .
 Concepts of Windows API.
 Education from reputed Institutes.
 Open to ideas and Technology.

Please send us an email along with your updated resume if you are interested at
networks.fintech@gmail.com with your resume and the following details:

̢ۢ Relevant years of exp:
̢ۢ Your Current CTC
̢ۢ Your Expected CTC
̢ۢ Current Notice Period
̢ۢ Ready to Relocate(Yes/No)



Thanks,
Sonika

Managers Words To Team Members


1.”We will do it” means “You will do it
2.”You have done a great job” means “More work to be given to you
3.”We are working on it” means “We have not yet started working on the same
4.”Tomorrow first thing in the morning” means “Its not getting done“At least not tomorrow!
5.”After discussion we will decide -I am very open to views” means “I have already decided, I will tell you what to do
6.”There was a slight miscommunication” means “We had actually lied
7.”Lets call a meeting and discuss” means “I have no time now, will talk later”
8.”We can always do it” means “We actually cannot do the same on time”





9.”We are on the right track but there needs to be a slight extension of the deadline” means“The project is screwed up, we cannot deliver on time.”
10.”We had slight differences of opinion “means “We had actually fought”
11.”Make a list of the work that you do and let’s see how I can help you” means “Anyway you have to find a way out no help from me”
12.”You should have told me earlier” means “Well even if you told me earlier that would have made hardly any difference!”
13.”We need to find out the real reason” means “Well I will tell you where your fault is”
14.”Well Family is important; your leave is always granted. Just ensure that the work is not affected,” means, “Work is the only priority
15.”We are a team,” means, “I am not the only one to be blamed
16.”That’s actually a good question” means “I do not know anything about it”
17.”All the Best” means You are in trouble

Managers Words To Team Members

EXCELLENT OPPORTUNITY FOR .NET FRESHERS PROFESSIONALS

EXCELLENT OPPORTUNITY FOR â€Å“.NET FRESHERS†PROFESSIONALS
We, Trigent Software Ltd are looking for â€Å“.NET FRESHERS†resources for immediate opening with our client HONEYWELL TECHNOLOGIES.
The selected candidates be permanent employees of Trigent Software Ltd and will have to work at the Client site, HONEYWELL TECHNOLOGIES, MADURAI.
Trigent is an offshore software development and application development company that specializes in creating world-class technology solutions and custom applications for software companies, enterprises, and online business customers. Trigent is a SEI CMM Level 4 and ISO 9001:2000 certified Software Services Company head quartered in Boston, USA. Trigent has attained Microsoft Gold Certified Partner status with its high degree of competency in Microsoft technologies.

MANDATORY SKILLS:
Knowledge of at least one .Net programming language OOPS concepts
Theoretical knowledge of .NET fundamentals CLR, GC, GAC, Tools (gacutil, regasm etc)
Common Type SystemADO.Net (.Net Data providers, Connections, Commands, Datasets and DataReaders)
HTML KnowledgeVisual Studio for applications development in .NET Advanced XML and XSLTAdvanced debugging techniques.
Experince in Graphics Programming Using .NET Use of Enterprise Architect for managing development and setting project wide coding policies /guidelines.
Ability to Design & Architect .NET Applications

Education: BE/BTech/MCA

Experience: 0-1 YRS

Work Location: MADURAI


If you are interested in exploring this opportunity with us, kindly send across your updated resume with the following details.


Total Experience:

Relevant Experience:
Current CTC:

Expected CTC:
Current Location:

Willingness to relocate to MADURAI:

Joining time required:
Contact No:
MANDATORY: WILLINGNESS TO TAKE UP F2F ON 12TH MAR 2011(SATURDAY)IN MADURAI:


Thanks & Regards,

PRAGNYA

Trigent Software, Ltd. | Khanija Bhavan

49, Race Course Road | Bangalore 560 001 India

Phone: +91 (80) 2226 3000 Ext :177| Fax: +91 (80) 2226 8791

URGENT OPENING FOR TELECALLERS AND BUSINESS DEVELOPMENT OFFICERS


Dear Candidate,

We have an Urgent opening in FOR TELECALLERS AND BUSINESS DEVELOPMENT OFFICERS

Marketing & Sales: 1+ yrs – 3 yrs exp.


CTC for the above position ranges – 1 Lakh To 2 Lakhs per Annum.

Candidates interested in any of the above can take up walk-in interview with us on the dates mentioned below,

Interview Schedule – Bangalore

DATE: 30-3-2011(Thursday) & 5-4-2011 (Tuesday)

TIME: 11 AM to 5 PM (IST)

VENUE: NO.24, SV TOWERS WILSON GARDEN
BANGALORE, Karnataka 560027
Website: www.iimsedu.in


Landmark : Above Adigas Hotal, Opposite to Hotel Janatha

Contact Person: Mr. Khan/VInod
Contact No: 09986558768
Landline: 080 31900333/222

Offer letter will be issued on the same day for the selected candidates.

Note: Candidates are requested to be in complete formals with a tie Carrying 3 hard
Copies of resume.



--

As always, I am available to answer any questions, comments or concerns, and I look forward to speaking with you soon. – My full contact details are listed below!

Thanks & best

Afzal khan
Manager-Business Development
Mob: 9986558768

Email id: banglorean.khan@gmail.com

STEER ENGINEERING Freshers Recruitment 2011



FYI,
Send your RESUME to: hr@steerworld.com


Employer Name: Steer Engineering Pvt. Ltd

Education Required: B.Tech/B.E/B.Sc/BCA/MCA

Experience Required: 0 – 1 Years

Job Description:

Steer Engineering Pvt. Ltd vacancies for freshers,Required Education is B.Tech/B.E/B.Sc/BCA/MCA and Steer Engineering Pvt. Ltd looking for freshers and 0 – 1 Years candidate.
This job position is to design develop and maintain the software using J2EE, Liferay, Java web services and SQL based on the project document provided.
Should producing defect free implementations of features requests as well as enhancements.
identify and fix defects including taking corrective action.
Steer Engineering recruitment for freshers 2011, openings for Software Engineer-Trainee.
Desired Candidate Profile :

Should have knowledge in developing software using skills like J2EE, Liferay, Java web services, SQL. B.E, B.SC, BCA, MCA in computer science.
Contact:

Name: Ms.Teena
Steer Engineering Pvt. Ltd

E-mail : hr@steerworld.com

Urgent Need Of Experienced JAVA Developer/Programmer, Coimbatore


Hi All,
There is  an urgent opening for JAVA Developer. The following is the Job Description. It's an immediate hire, If you are interested, pls send your updated profile along with contact information and expected salary ASAP to hr@q3india.com 


Experience: 2 - 6 Years
Role: Software Developer / Engineer
Education: UG - B.Tech/B.E. PG - Any PG Course
Location: Coimbatore (Need locals Only!!!)
Keywords: OOPS, Core JAVA, J2EE, JSP, Servlets, Spring, Hibernate, Struts, Ajax, SQL/Postgre, XML,iReport

Job Description:

  • Act as a JAVA/J2EE developer.
  • Work on design, coding & unit testing, debugging of enhancements & bug fixing.
  • Should be good at problem solving and debugging with excellent analytical skills.
  • Should have positive attitude, self starting, motivated quick learner.
  • Fluent communication – expected to directly interact with customer on a regular basis.
  • Develop and maintain unit test cases for services developed.
  • Follow established team development processes and development schedule.
  • Keep up to date in technologies for building application services and with evolving standards within Q3 India.

Job Profile:

1. Develop & trouble shoot applications developed in JAVA/J2EE, for maintenance and enhancement kind of work.
2. Strong hands-on knowledge of OOPS, Core JAVA, J2EE, JSP, Servlets, Spring, Hibernate, Struts, Ajax, SQL/Postgre, XML,iReport.
3. Has to be excellent in communication

Contact:

BINIL RAJ D | HR Executive

Phone : 0422 - 4520210 |+9196006 63539
E-mail : hr@q3india.com | Web : www.q3india.com

Infosys Hiring Freshers

Freshers-Opening for MBA with BA or MA Stream in Chennai


Role:-Corporate Communication
Profile:-Full Time
Experience:-Freshers or Experience 
Location:- Chennai 
 
“We are looking to recruit smart people to contribute to our business growth”


Desired Candidate Profile:
  
• Education: B.A - English / M.A English / Any other stream or MBA with BA or MA Stream
• Good command over the English language with an effective writing style that 
is consistent and customer friendly
• Contributing articles to company's blog and customer out-reach program 
• A knack for editing and proof reading with good research & communication skills
• A flair for monitoring message boards and blogs on the internet 
• Manage the marketing collaterals as well as develop strategic 
communications plans for the Company and its assignment
• Result-oriented with excellent planning and organizational ability

Send your resume to sarfaraz.nazeem@leaseinfo.in
Please quote Referred by www.anoorul.com 
For Interview: 
Contact – sarfaraz.nazeem
1047, First Floor, Sri Vignesh ,
Dr.Lakshmanaswami Salai
K.K.Nagar. Chennai -6000 078,
Mob: 900 308 3091 /
Website: www.leaseinfo.in
 
Note:- This opening is not eligible for BE/MCA Graduates and preferred Location should be chennai

Related Posts Plugin for WordPress, Blogger...