• Twitter
  • Facebook
  • Google+
  • Instagram
  • Youtube

About me

Let me introduce myself


A bit about me

I would like to say talking about myself would be hard, but it is not; I love to talk, and who knows more about me, than me.
There you go, your first little fact about me…


Well, where to start… the beginning. I started my life on the 8th of September 1989, that means that right now I am young and right in the middle of all this developing technology we see whizzing by, and while being in the middle of all this I have started to develop such an intrigue for all this technology, yes I am some sort of computer geek; I have developed this interest for social media and the huge unimaginable power behind it, anything can be done using social media and I want to put myself as far into the middle of it as I can. So, that is what I am doing, I started with the basic Facebook profile and Twitter account; I am here. I am blogging to showcase my skills in Web designing, Mobile developing and with Creative ideas, which is becoming such a huge thing that people are becoming famous through blogging and vlogging and I want to see it!

Profile

SATYAM MACHARA

Personal info

SATYAM MACHARA

DevOps Engineer, Mobile app Developer, Web developer.

E-mail: just4satyam@gmail.com

RESUME

Know more about my past


Employment

  • 2013-future

    Cap Gemini @ DevOps Developer

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  • 2011-2014

    Websoham @ Exclusive Admin

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  • 2009-2011

    Templateclue.com @ Lead Developer

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Education

  • 2015

    University of Engineering @Level

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  • 2013-2014

    College of Awesomeness @ passed

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  • 2009-2013

    College of Informatics @ graduated

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Skills & Things about me

photographer
86%
html & css
Punctual
91%
illustrator
Web Developer
64%
wordpress

Portfolio

My latest projects


Wednesday, June 10, 2015

difference between creating an object with class and interface reference in java

//Interface Inn
package com.saa.com;
    public interface Inn {
    public void display();
    }

//class A

package com.saa.com;

 public class A implements Inn{

@Override
public void display() {

System.out.println("====A display====");
}
public void a_display(){
System.out.println("====Non Interface method display====");
}
}


// class B
package com.saa.com;
public class B implements Inn{
@Override
public void display() {
// TODO Auto-generated method stub
System.out.println("====B display====");
}
}

//Class C
package com.saa.com;
public class C {

public static void main(String[] args) {
// TODO Auto-generated method stub

/* An interface reference can point
to any object of a class that implements this interface*/
//case 1:
A a=new A();
a.display();
a.a_display(); // non interface method.
//output  :  ====A display====
/* Exp: In the above code we defined reference variable "a" as A class type,
   in order to call display() method which A class implemented.*/
//case 2: Now if we want to use display method in B class we will do following code
B b=new B();
b.display();
//output     :  ====B display====
/*   Exp: In the above code we defined reference variable "b" as B class type,
    in order to call display() method which B class implemented. */
Inn i=new A(); //new B() to access B class display()
i.display();
/*i.a_display(); this gives an error, since interface reference cannot
point to non interface methods*/
//output  :  ====A display====
/* Exp: The above code states that object of "A" class was stored in "i" variable
 which is of "Inn" interface type. Since A implements Inn, so Inn type variables
 can call all methods in that Interface. 
 
 So display() which belongs to Inn and implemented by A class can be accessed 
 by "i" varable. 
 this results i.display() to give output "====A display====".
in case2:
 Now if I want to access display() in B implementation we simple need
 TO CHANGE ONLY ONE LINE " ie OBJECT CREATION"
 Inn i= new B();
i.display();
//output  :  ====B display====
 */
   
/*Now we can state that "Inn" Interface reference "i" is going point any
class object "A" or "B" that implements "Inn"
NOTE: AN INTERFACE REFERENCE CANNOT POINT TO NON INTERFACE METHODS IN A CLASS 
*/
}

}

Tuesday, July 22, 2014


Eligibility Criteria

15 years (10+2+3) of full time regular education is a must. Candidate who has attended any TCS interview in the last 6 months are not eligible.
 
Not more than 2 years of gap during education or employment in total.
Willingness to work in any shifts including night shifts. 

Documents to be carried for the walk-in
 
A copy of resume, Passport size photo, Last 3 months pay-slip copies , PAN Card # , Mark sheet & Certificate of highest qualification
 
To Know more about BYB
Log on to Ultimatix > Global HR > Bring your Buddy > India Buddy Scheme 

Regards
BPS BYB Team
Maito: 
tcsbps.byb@tcs.com 
TCS does not charge any fee at any stage of the recruitment process. TCS has not authorized any agency/partner to collect any fee for recruitment. In case of any such fraudalent email, message or claim, please let us know
=====-----=====-----=====

Thursday, July 10, 2014

Walk-in Drive for Freshers with Capgemini




Walk-in Drive for Freshers with Capgemini

Job ID
Profile
Experience
Job Location
Contact Person
61448
BCA/ B Sc- IT / Computer Science/
Mathematics / Statistics
Freshers
Mumbai
Mayur Bhosale

Date/ Day/ Time
Drive Location
Drive SPOC
July 13, 2014
Sunday

10 AM to 12 PM
Mumbai
Capgemini India Pvt. Ltd
Mumbai 7, 2nd Floor
Capgemini India Pvt. Ltd. Plant 2,
Godrej IT Park,Godrej & Boyce Compound,
LBS Marg, Vikhroli West, Mumbai 79
Mayur Bhosale
·    For detailed description please log on to - http://FriendsLikeYou.in.capgemini.com.
·    Please upload all resumes on the Referral Site against the job IDs mentioned above.
·    You can direct the already uploaded profiles to the appropriate points of contact by indicating in the subject line the candidate’s name, his/her referral ID, years of experience and the job title.
Note
·         Candidates should be 2014 passouts and should have scored 50 % or above in SSC and HSC and highest degree
·         Candidates with more than a year gap will not be considered.
·         “Technical support” role and candidate should be comfortable with 24x7 shifts.

Business Rules
·    This is a walk-in drive. No separate email will be sent or call made to your referrals. Eligible candidates should walk in to the venue directly. Telephonic interviews will not be conducted for this drive.
·    Uploading of CVs on http://friendslikeyou.in.capgemini.com is necessary.
·    If you are unable to upload CVs, please mail to friendslikeyou.in@capgemini.com with the subject line mentioning name of the candidate, e-mail ID, date of birth, primary skill details and a snapshot of the error.
·    Profiles that have exceeded the validity period of six months will not be considered as valid referrals. Kindly contact the Friends Like You team to update CVs.

 It is mandatory for candidates to carry the following documents while visiting the venue:
·    Hardcopy of the updated CV
·    Previous/current employers employment documents.
·    Latest two pay slips.
·    Two Passport size photograph
·    Photo ID proof and Company ID proof
Capgemini is committed to equality of opportunity and dignity at work for all, irrespective of caste, religion, race, color, creed, ethnic or national origins, gender, marital status, sexuality, disability, class or age. We encourage persons with disabilities to apply. Disability assistance/ adjustments (example, scribe, interpreter, accessible venue, wheelchair etc.), to the extent required, may be provided in your work area

Immediate Position for Pega Developer & Lead with Capgemini (Mumbai)




Immediate Position for Pega Developer & Lead with Capgemini (Mumbai)
Job ID
Profile
Experience
Job Location
Contact Person
61470
PEGA Developers & Leads
4-9 Yrs
Mumbai
Aravind Chandrasekar

Walk-in Drive for Pega Developer with Capgemini (Bangalore & Hyderabad)

Job ID
Profile
Experience
Job Location
Contact Person
61363
Pega Developer
2.5-8 Yrs
Bangalore

Date / Day / Time
Drive Location
Drive SPOC
July 12, 2014
Saturday

10 AM to 3 PM
Hyderabad
Capgemini India Pvt. Ltd
 IT Park 1,115 / 32&35 Nanakramguda,
Gachibowli, Hyderabad.
Land mark: Opp. ICICI Building.
Karunakar
Bangalore 
Capgemini India Pvt. Ltd
Campus 6B, RMZ Ecospace
Outer Ring Road, Bellandur Varthur Hobli,
Marathahalli, Bangalore 560 037
Saravanan Swamy
·    For detailed description please log on to - http://FriendsLikeYou.in.capgemini.com.
·    Please upload all resumes on the Referral Site against the job IDs mentioned above.
·    You can direct the already uploaded profiles to the appropriate points of contact by indicating in the subject line the candidate’s name, his/her referral ID, years of experience and the job title.
Business Rules
·    No separate email will be sent or call made to your referrals for the walk in drive. Eligible candidates should walk in to the venue directly. Telephonic interviews will not be conducted for the drive.
·    Uploading of CVs on http://friendslikeyou.in.capgemini.com is necessary.
·    If you are unable to upload CVs, please mail to friendslikeyou.in@capgemini.com with the subject line mentioning name of the candidate, e-mail ID, date of birth, primary skill details and a snapshot of the error.
·    Profiles that have exceeded the validity period of six months will not be considered as valid referrals. Kindly contact the Friends Like You team to update CVs.
It is mandatory for candidates to carry the following documents while visiting the venue:
·    Hardcopy of the updated CV.
·    Previous/current employers employment documents.
·    Latest two pay slips.
·    Two Passport size photograph.
·    Photo ID proof and Company ID proof.
Capgemini is committed to equality of opportunity and dignity at work for all, irrespective of caste, religion, race, color, creed, ethnic or national origins, gender, marital status, sexuality, disability, class or age. We encourage persons with disabilities to apply. Disability assistance/ adjustments (example, scribe, interpreter, accessible venue, wheelchair etc.), to the extent required, may be provided in your work area

Member Referral : Refer a friend now! in CGI

Memberref.png


Dear Members,

Check out all our open positions this week. Hurry and refer a friend now.

Njoyn ID
Job Title
Essential Skills
Experience
Location
Recruiter
SOA Tester
Experience in Testing SOA based applications
4-6 Yrs
Hyderabad
C++  Developer
Experience in C++ , Unix SQL
4-6 Yrs
Hyderabad
Technical Architect
Experience in architectural and system transformational projects
11-15 Yrs
Bangalore
/Hyderabad
Senior Network Engineer
Experience in Load Balancer ( F5), Cisco UCS, Firewall, Routing & Switching Cisco
5-10 Yrs
Bangalore
Avaya VOIP Administrator
Experience in Contact Centre /IP Telephony products (Avaya Base), Avaya Aura Communication.
5-10 Yrs
Bangalore
SQL/Oracle Database Administrator
Experience in SQL / Oracle for over 12 Years; Hands on experience on 2 or more RDBMS.
12-15 Yrs
Bangalore
Oracle Database Administrator
Experience in RAC Internals, Backup/restore/recovery/Cloning using RMAN and other methods
4-7 Yrs
Bangalore
SQL Database Administrator
Experience in Microsoft SQL Server 2008 / 2005 DBA skills; performance troubleshooting; RCA and solutions.
4-7 Yrs
Chennai
Technical Writer
Experience in IT Infrastracture Domain; Technical Writing; Proposal Writing
4-7 Yrs
Bangalore
Incident Management
Experience in Managing and coordinating all High and Critical in scope incidents with the required internal and external support teams until resolution
2-5 Yrs
Chennai
BizTalk Administrator
Experience in BizTalk administration.Exposure in designing solutions using the full BizTalk ESB capability.
2-6 Yrs
Chennai
EMC – Networker
Experience in EMC Legato Networker, SQL Oracle Modules
6-10 Yrs
Chennai
Oblicore Administrator
Experience in Oblicore Version 7. X
3-5 Yrs
Bangalore
Service Desk Analyst
Experience in Service desk Analyst, Call handling, L1 Support
0.6-2 Yrs
Bangalore
Enterprise Mobile Device Management
Experience in AD and Exchange administration expertise; MDM platform administration.
4-7 Yrs
Bangalore
Backup Solution Architect
Experience in designing backup solutions and implementation experience; De-duplication Platforms: Puredisk, HP D2D; Expert level knowledge of backup products.
8-10 Yrs
Bangalore
Storage Solution Architect
Experience in Storage Systems; Data Replication, Migration and Storage System consolidation
8-10 Yrs
Bangalore
Wintel Architect
Experience in architecting, designing and deploying virtualized infrastructures, ideally on VMware vSphere, VMware ESX and VMware View Manager; Rich experience as an infrastructure architect within a large enterprise environment.
10-15 Yrs
Bangalore
Unix Architect
Experience in managing and maintaining Solaris/Linux environment; Installing, configuring and maintaining Solaris / Redhat Linux Servers.
10-15 Yrs
Bangalore
Network VOIP Architect
Experience in designing architecting, deploying and Service delivery 24x7 environments;  Experience on Contact Centre /IP Telephony products(Avaya & Cisco/Cisco & Nortel Base)
10-15 Yrs
Bangalore
Network Data Architect
Experience in designing architecting, deploying and Service delivery 24x7 environments; in-depth knowledge in Routing & Switching and security firewalls
10-15 Yrs
Bangalore
Citrix Architect
Experience in Citrix in designing architecting, deploying and Service delivery 24x7 environments)
10-15 Yrs
Bangalore
Technical Service Manager
Experience in Wintel Administration; Service Delivery in complex enivornment
8-11 Yrs
Bangalore
SAP Project Manager
Experience in SAP Project Manager
12-15 Yrs
Chennai
PeopleSoft HRMS Project Manager
Experience in Peoplesoft Project Manager
12-15 Yrs
Bangalore/ Hyderabad
Peoplesoft HRMS Business Analyst
Experience in PAS 8.3 and above with Peoplesoft BA exp with Core HR.
6-9 Yrs
Hyderabad/ Chennai
Peoplesoft HRMS Business Analyst
Experience in PAS 8.3 and above with Peoplesoft BA exp with Absence Management
6-9 Yrs
Hyderabad/ Chennai
Peoplesoft HRMS Business Analyst
Experience in PAS 8.3 and above with Peoplesoft BA exp with  Global Payroll
6-9 Yrs
Hyderabad/ Chennai
Peoplesoft FSCM Developer
Experience in Peoplesoft FSCM, Need to work in shift
3-5 Yrs
Bangalore
Peoplesoft HRMS Developer
Experience in Peoplesoft HRMS, Need to work in shift
3-5 Yrs
Bangalore
Oracle SOA Architect
Experience in Oracle SOA Suite 11g, Oracle BEPL, Jdeveloper
10-14 Yrs
Hyderabad/ Chennai
Oracle SOA Developer
Experience in Oracle SOA Suite 11g, Oracle BEPL, Jdeveloper
5-6 Yrs
Hyderabad/ Chennai
Sharepoint Developer
Experience in SP2010 AND SP2013
5-7 Yrs
Chennai
Oracle EBS Functional Consultant
Experience in Oracle EBS Technical Manufacturing Module
5-7 Yrs
Chennai
Sharepoint Lead Analyst
Experience in Sharepoint
8-12 Yrs
Chennai
Sharepoint Developer
Experience in  Sharepoint
5-7 Yrs
Chennai
PMO Analyst
Experience in PMO
4-7 Yrs
Mumbai
MD Axapta – Technical Consultant
Experience in  MSD Ax 2012, 2009
2-4 Yrs
Chennai
MD Axapta – Technical Consultant
Experience in MSD Ax 2012, 2009
3-10 Yrs
Chennai
MD CRM – Technical Consultant
Experience in MSD CRM
3-10 Yrs
Chennai
ITSM Support Analyst
Experience in Remedy
3-5 Yrs
Hyderabad
Teradata Database Administrator
Teradata DBA exp with performance tuning
3-5 Yrs
Bangalore
/Hyderabad
Technical Architect
Experience in Java Technical Architect, Prefer telecom domain
10-13 Yrs
Hyderabad
Java Weblogic Developer
Experience in Java Weblogic with production support experience
3-7  Yrs
Bangalore
/Chennai
Qlikview Developer
 Experience in Qlikview  technologies with support experience preferred
6-8 Yrs
Bangalore
Sharepoint Developer
Experience in development & support of client applications in SharePoint and .Net technologies.  
3-4 Yrs
Bangalore
Dot Net Developer
Experience in WCF/WWF 4.0 version(Mandatory)
2-4 Yrs
Mumbai
Mainframe Developer
Experience in Mainframe applications that interface with Java/other technology applications
2-6 Yrs
Mumbai
Oracle OIM Developer
Experience in Oracle Identity Manager (OIM) and Oracle Access Manager(OAM) adapters/connectors
4-6 Yrs
Bangalore
Mainframe Developer
Experience in Mainframe technologies like JCL & Control M. Secondary skills are COBOL + DB2 + VSAM
2-6 Yrs
Bangalore
Retail Banking- Business Analyst
Experience in development with some L2 and L3 support work in Retail Banking domain
3-8 Yrs
Bangalore
Progress 4GL - Developer
Experience in Progress 4GL expertise having worked on both development and support projects.
4-8 Yrs
Bangalore
Actuate Developer
Experience in developing Actuate Reports using Actuate eReports Designer (v11 preferred)
3-7 Yrs
Hyderabad
Oracle Apps – Techno consultant
Experience in Techno -Functional consultant on Supply chain management
4-8 Yrs
Bangalore
BI Architect
Experience in SSIS,BI Architect
8-10 Yrs
Chennai
Alfresco Developer
Experience in Alfersco,Documetum
4-6 Yrs
Chennai
Ab intio Senior Developer
Experience in Ab initio,ETL,Production support
4-6 Yrs
Chennai
CA Site Minder -Support Engineer
Experience in Siteminder,Linux
3-6 Yrs
Chennai
WebSphere portal Developer
Experience in WebSphere portal
4-6 Yrs
Bangalore
Windchill Developer
Experience in Windchill development
4-6 Yrs
Bangalore
BI Developer
Experience in SSIS,SSRS,SSAS
3-6 Yrs
Chennai

Please upload the resume on the CGI career site, once the CV gets shortlisted we will schedule your referral for an interview. Please note, direct walk-in will not be allowed. 
Note: 
1. The recruitment team uses Njoyn as a hiring tool. Click here to access the guide on how to upload profiles on the CGI career website.
2. To mail the recruiter, just click on their name.
3. Do not upload the resume of freshers, please upload the resume of people who have relevant work experience and skills.
4. Do not share the resume directly with recruiters or via email. Only referrals processed via the CGI career website will be considered for a referral bonus.
Regards,
Member referral team
This information is company confidential and meant for internal circulation only. This mail or contents of this mail should not be forwarded or reproduced in any form on external sites, blogs, or any other external medium.


Services

What can I do


Branding

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Web Design

Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Donec sit amet venenatis ligula. Aenean sed augue scelerisque.

Graphic Design

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.

Development

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.

Photography

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod. Donec sit amet venenatis ligula. Aenean sed augue scelerisque, dapibus risus sit amet.

User Experience

Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Donec sit amet venenatis ligula. Aenean sed augue scelerisque, dapibus risus sit amet.

Contact

Get in touch with me


Mail

just4satyam@gmail.com