[android-developers] Re: Add my carrier at apns-conf.xml and lteon_netlist.xml

2017-02-21 Thread Tel42
I also searching for this... Danish MVNO.

On Tuesday, September 20, 2016 at 1:21:48 PM UTC+2, 
viktoria.krol...@gmail.com wrote:
>
> I am searching for same info, but for a German MVNO. Can't find anything 
> helpful, please point me some documentation or similar! 
>
> Am Donnerstag, 8. September 2016 10:52:51 UTC+2 schrieb Valon Zhuniqi:
>>
>> Hi everyone,
>> Can someone help me, how is the procedure to add officially a carrier to 
>> *apns-conf.xml*  and *lteon_netlist.xml* list?
>> I'm working for a mobile operator in Kosovo called 'vala' with MCC=212, 
>> NMC=01.
>>
>> Thank you 
>> Valon
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cfaab2b7-f5aa-4632-8e1a-4ba5e112877a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: enabling bluetooth in android

2017-02-21 Thread king.joel via Android Developers


On Wed, 2/22/17, kjagdish  wrote:

 Subject: Re: [android-developers] Re: enabling bluetooth in android
 To: android-developers@googlegroups.com, rprpil...@gmail.com
 Date: Wednesday, February 22, 2017, 5:58 AM
 
 Hi Rajeev,
 Yes, problem is
 solved,
 Solution
 isdeclare
 : private
 static final int REQUEST_ENABLE_BT
 = 1;private BluetoothAdapter mBluetoothAdapter; in
 onCreate() methodfinal
 BluetoothManager bluetoothManager =
  
   (BluetoothManager) getSystemService(Context.BLUET
 OOTH_SERVICE);
 mBluetoothAdapter
 = bluetoothManager.getAdapter(); // use this to get
 the bluetooth adapter
 if
 (mBluetoothAdapter
 == null
 || !mBluetoothAdapter.isEnabled()
 ) {
 Intent enableBtIntent = new
 Intent(BluetoothAdapter.ACTION
 _REQUEST_ENABLE);

 startActivityForResult( enableBtIntent, REQUEST_ENABLE_BT);
 }
 Below
 link will be usefulhttps://developer.android.com/
 guide/topics/connectivity/ bluetooth-le.html
 
 with
 best regards,Jagdish
 On Wed, Feb 22, 2017 at
 1:08 AM, RJ 
 wrote:
 
 Hi Jag, were you able to
 solve the mBluetoothAdapter issue? I have the same issues.
 
 Regards,Rajeev
 On Monday,
 August 29, 2016 at 12:53:49 AM UTC-5, Kjagdish Gowda
 wrote:Hi,Iam new to android development
 I want to enable bluetooth in my
 app.I followed the android developer tutorial in
 the link https://developer.android
 .com/guide/topics/connectivity
 /bluetooth.htmlI had used "BluetoothAdapter mBluetoothAdapter
 =
 BluetoothAdapter.getDefaultAda pter();" to get the bluetooth
 adapterwhen i try to check Bluetooth is
 supported using the commandsif
 (mBluetoothAdapter
 ==
 null)
 { 
   //
 Device does not support Bluetooth}
 Iam
 getting error "unknown class" for mBluetoothAdapterAlso unable
 to check mBluetoothAdapter.isEnab
 led(); mBluetoothAdapter and its methods are not
 supported.
 My objective is to enable ble device and
 connect and pair with visible device and to send and receive
 data.
 Looking forward for
 support 
 My code in
 MainActivity.java is
 package
 com.example.rd2_6.myfirstapp;
 
 
 import
 android.bluetooth.BluetoothAda pter;
 import
 android.bluetooth.BluetoothDev ice;
 import
 android.bluetooth.BluetoothMan ager;
 import
 android.content.Context;
 import
 android.content.Intent;
 import
 android.content.pm.PackageMana
 ger;
 import
 android.support.v7.app.AppComp atActivity;
 import
 android.os.Bundle;
 import
 android.view.View;
 import
 android.widget.EditText;
 import
 android.widget.Toast;
 
 public class
 MainActivity extends
 AppCompatActivity {
 public final
 static String EXTRA_MESSAGE
 = "com.example.myfirstapp.MESSAG
 E";
 @Override

 protected void
 onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceSt
 ate);
 setContentView(R.layout.activi
 ty_main);
 }
 
BluetoothAdapter mBluetoothAdapter
 = BluetoothAdapter.getDefaultAda pter();
 
 if(mBluetoothAdapter
 == null)
 {
 
 
}
 
 
 //if
 (!mBluetoothAdapter.isEnable() ) {
 //   
 Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION
 _REQUEST_ENABLE);
 //   
 startActivityForResult(enableB tIntent,
 REQUEST_ENABLE_BT);
 //}
 

 public void
 sendMessage(View view) {
// Intent
 intent = new Intent(this, DisplayMessageActivity.class);

 //EditText editText = (EditText)
 findViewById(R.id.edit_message );

 //String message = editText.getText().toString();
//
 intent.putExtra(EXTRA_MESSAGE, message);
//
 startActivity(intent);

 }
 
 }
 
 
 
 with
 ThanksJagdish
 
 
 
 -- 
 
 You received this message because you are subscribed to a
 topic in the Google Groups "Android Developers"
 group.
 
 To unsubscribe from this topic, visit https://groups.google.com/d/
 topic/android-developers/ oIOIObplIBs/unsubscribe.
 
 To unsubscribe from this group and all its topics, send an
 email to android-developers+
 unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@
 googlegroups.com.
 
 Visit this group at https://groups.google.com/
 group/android-developers.
 
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/android-developers/ a8ae56e0-e13c-439a-b4da-
 a37286b6a891%40googlegroups. com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 -- 
 with Thanks &
 Regards,
 K Jagatheeswaran
 Sr. Engineer-
 R&D
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAG1nM7obr%3Du0i%3DG5Dhk2tTYb8ZgCGmgj3-ZtdJ2hQ0TY1F0dDQ%40mail.gmail.com

[android-developers] Mobile Test Engineers

2017-02-21 Thread Mujeeb Ansari

Looking forJava Engineers,   Web service Test Engineers,Automation 
Engineers,Mobile Test Engineers,Software Test Engineers for a US based 
MNC With 4200 employees in US; approximately 500 in IT Division. With an 
 annual sales of  over $1.3billions, with Market Cap of over $6.5 Billion. 
Company is named Top Performer on Deloitte’s “The Exceptional 100” Top 
Companies. 

All jobs requires 5+ years of experience.Interested candidates can email 
resumes to *h...@sapientconsultants.in   *

For detail JD pls email to i...@sapientconsultants.in or visit careers 
section in www.sapientconsultants.in . All positions are based in 
*Hyderabad,Telangana,India*





Mobile Test Engineers
Should have good knowledge on Mobile Test Automation using Appium, Calabash
Should have worked on at-least 5-10 iOS & Android Applications which are 
currently available on Apple & Google Play stores
Should have experience on Mobile Non-Functional Testing 
Knowledge on iOS & Android Deployment processes

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f0baba4c-203b-41ee-94d3-08f34d23b699%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to show status bar in "lock task" mode

2017-02-21 Thread Novak
I'm developing DPC device owner application that among other things also 
allows "KIOSK" mode. 

My DPC runs in "lock task" mode, and I notice that notification icons in 
status bar are hidden.

Is there a way to show notification icon in status bar (clock, wireless, 
battery,...)?

Regards,
Novak

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/60dccae3-bc35-4ad8-8cd7-71b5d8f760fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: enabling bluetooth in android

2017-02-21 Thread Kjagdish Gowda
Hi Rajeev,

Yes, problem is solved,

Solution is
declare : 

private static final int REQUEST_ENABLE_BT = 1;

private BluetoothAdapter mBluetoothAdapter;
 
in onCreate() method

final BluetoothManager bluetoothManager =
(BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
mBluetoothAdapter = bluetoothManager.getAdapter(); // use this to get the 
bluetooth adapter


if (mBluetoothAdapter == null || !mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}


Below link will be useful

https://developer.android.com/guide/topics/connectivity/bluetooth-le.html


with best regards,

Jagdish




On Wednesday, February 22, 2017 at 1:08:54 AM UTC+5:30, RJ wrote:
>
>
> Hi Jag, were you able to solve the mBluetoothAdapter issue? I have the 
> same issues. 
>
> Regards,
> Rajeev
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/625274ec-f8e0-4eb0-8045-b59e1a0dde1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net/UI Developer

2017-02-21 Thread Shekhar Chaudhary
*Position : .Net/UI Developer*

*Location : NYC, NY*

*Duration: 12 months*

*Visa: GC, GC EAD or citizen*



Our client is looking for .Net/UI Developer experience with .Net/ C#

Should be very strong on UI

Experience with Angular.JS 2.0

Financial Domain experience huge plus





*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW_uC3ju3aeDP3tT8Vx%3DP%3DYk8nye7bp8gPoDb%2B0XcmU38A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Load/performance tester

2017-02-21 Thread Shekhar Chaudhary
I have a contract to hire *Load/performance tester* job with my client in
Ohio.



6 months to hire



Visa: GC, GC EAD or Citizen



If you have anyone that would transfer after contract please let me know.



JD:



2-3+ years of experience as a Load/Performance Tester

MS Visual Studio enterprise for load/performance testing (C#)

*Visual Studio IS A MUST*



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW9drg25EFGhqBnYCzZRrOsAY4J-P0HPeWq1Qg7qp0Ghbw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Looking for Golang Developer - San Ramon, CA (Immediate Hiring)

2017-02-21 Thread Rajender Reddy
*Hello , *

*Greetings from InfoSmart Systems Inc!!!*



We have an immediate requirement with our client and the details are as
follows.





*Role: Golang Developer*

*Location:* San Ramon, CA

*Duration: *12+ Months

*Interviews:* Phone interview, then Onsite interview (Locals or non-locals)





*Other Details:*

   - Locals Preferred, but Non locals also ok if excellent
   - In-person onsite Interview needed
   - Software Engineer - Backend Developer with Golang



*Desired Characteristics:*

   - 1-3 years of Golang experience
   - Hands on experience with Core Java development is a plus
   - Hands-on experience in web services (REST, SOAP, OAuth etc.), service
   brokers, API gateways/proxies, API Development, virtual machines/IaaS,
   workflow tools, etc.
   - Committed to TDD methodology and XP programming techniques
   - Object Oriented Analysis and Design, Software Design Patterns and Java
   coding principles
   - Strong problem solving abilities and capable of articulating specific
   technical topics or assignments
   - Demonstrates clarity of thinking to work through limited information
   and vague problem definitions
   - Able to work under minimal supervision
   - Excellent communication skills and the ability to interface with
   senior leadership with confidence and clarity
   - Evaluates technology to drive features and roadmaps.
   - Embraces technology trends that drive excellence beyond traditional
   practices (e.g., Test automation in lieu of traditional QA practices).
   - Influences through others; builds direct and "behind the scenes"
   support for ideas.
   - Able to verbalize what is behind decisions and downstream implications.


*Qualifications/Requirements:*

   - Bachelor’s Degree in Computer Science or in “STEM” Majors (Science,
   Technology, Engineering and Math)
   - A minimum of 8 years of technical experience in relevant areas and
   functions within a product/platform organization OR Master’s degree with 5
   years of experience OR PhD with 3 years of experience.





Thank You.



*Best Regards…*



*[image: infosmart]*



*Rajender Reddy*

*Infosmart Systems Inc | Frisco, TX*

Email : rajen...@infosmartsys.com *| *www.infosmartsys.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMFS6cOr6Zv3-z3JqEKceVbD%3DPCErzQpsKVcmc48LCYRpm5brw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Scala Engineer :::: Contract in Phoenix or San Francisco

2017-02-21 Thread Soumya Sp
*Sr. Software Engineer -Scala, Java, Big Data*



*Location: Phoenix, AZ / SFO, CA. Candidate will have to be in Tucson, AZ
for 2 weeks for training. The expenses would be covered.*



*Job Description:*



· An expert developing in Java, Scala (must), extensive experience
working with large data sets using Scala

· Extensive Engineering Experience — You have strong experience
building and delivering software solutions on both web and mobile as full
stack engineer including working directly with software infrastructure

· Platforms Experience — You understand what it takes to build a
scalable software platform that can integrate with a diverse set of third
party systems

· Effective Communication Skills — You know how to take complicated
technical problems and synthesize them into their key points. You are a
provider of clarity, and always bring focus to what’s important

· Prior experience building or managing a team is a MUST

· Previous experience working with SSO solutions (SAML, JWT, OAuth,
OpenID), CRM, enterprise email/phone systems, e-signature, or financial
data (FIX, OFX) is a plus but not mandatory

· Knowledge of Amazon Web Services, NoSQL, or Statistics is a
plus but not mandatory







*Regards,*



*Ranjan*

*Next Level Business Services Inc*

*Staffing|Consulting|Outsourcing*

*Jacksonville, FL*

Phone: +1 (904) 267-0727 | Fax: +1 (608)646-8326

E-mail: soumya.ran...@nlbservices.com |Web:www.nlbservices.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHUJvG54-%3Dd6OVBc21bR1G7N3%2BadafmYV3W7sMbJ75WDOEUNiw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] RE:- Position Title – Business Data Analyst (Reporting) – 7216

2017-02-21 Thread durga prasad
*Position ID – 7216*

*Position Title – Business Data Analyst (Reporting)*

*Organization – Department of Administration*

*Worksite Address – Columbia, SC*

*Length of Project – 12+ Months (Extendable)*

*No. of Positions – 1*

*Interviews – *Phone/WebEx



*Required Skills (rank in order of Importance): *



· PROVEN WORKING EXPERIENCE AS A DATA ANALYST OR BUSINESS DATA
ANALYST

· TECHNICAL EXPERTISE REGARDING DATA MODELS, DATABASE DESIGN
DEVELOPMENT, DATA MINING AND SEGMENTATION TECHNIQUES

· STRONG KNOWLEDGE OF AND EXPERIENCE WITH REPORTING PACKAGES
(BUSINESS OBJECTS ETC), DATABASES (SQL ETC), PROGRAMMING (XML, JAVASCRIPT,
OR ETL FRAMEWORKS)

· KNOWLEDGE OF STATISTICS AND EXPERIENCE USING STATISTICAL PACKAGES
FOR ANALYZING DATASETS (EXCEL, SPSS, SAS ETC)

· STRONG ANALYTICAL SKILLS WITH THE ABILITY TO COLLECT, ORGANIZE,
ANALYZE, AND DISSEMINATE SIGNIFICANT AMOUNTS OF INFORMATION WITH ATTENTION
TO DETAIL AND ACCURACY

· ADEPT AT QUERIES, REPORT WRITING AND PRESENTING FINDINGS

· BUSINESS INTELLIGENCE DEVELOPER WITH HANDS-ON EXPERIENCE IN DATA
WAREHOUSES AND BI TO DESIGN AND DEVELOP BUSINESS REPORTS, DASHBOARDS WITH
SAP BUSINESS OBJECTS.

· EXPERT IN DESIGNING BUSINESS OBJECTS UNIVERSE(S). SHOULD BE ABLE
TO RECOMMEND DATA WAREHOUSE DESIGNING

· EXPERIENCED IN REQUIREMENT GATHERINGS FROM BUSINESS AND CREATE
THE SPECS FOR DEVELOPMENT OF UNIVERSE DESIGN/WEBI.



*Preferred Skills*

· WORK WITH CROSS FUNCTIONAL BUSINESS AND IT TEAMS OF BUSINESS
ANALYSTS, DATA MODELERS, SOLUTION ARCHITECTS, DBA'S AND PROJECT MANAGERS
DURING ALL SDLC PHASE

· TRANSLATES FUNCTIONAL REQUIREMENTS INTO TECHNICAL SPECIFICATIONS.
PERFORMS CODE WALKTHROUGHS AND FORMAL REVIEWS

· PARTICIPATE IN PRODUCTION, OFF-HOURS AND WEEKEND SUPPORT

· CREATE AND FOLLOW PROCESSES, PROCEDURES AND BEST PRACTICES

· EXPERIENCE IN DEVELOPING RE-USABLE FRAME-WORK AND COMPONENTS

· EXPERIENCE IN TUNING PERFORMANCE OF DASHBOARD AND SQL

· EXPERIENCED IN UNDERSTANDING THE FLOW OF DATA BETWEEN SOURCE AND
TARGET DATABASE, DATA ANALYSIS AND ANALYTICAL SKILL

· STRONG UNDERSTANDING OF DIMENSIONAL & RELATIONAL DATA MODELS.



*Education*

· BS IN MATHEMATICS, ECONOMICS, COMPUTER SCIENCE, INFORMATION
MANAGEMENT OR STATISTICS OR RELATED FIELD.

· 10 YEARS’ OF RELEVANT WORK EXPERIENCE MAY BE SUBSTITUTED IN LIEU
OF EDUCATION.

· MINIMUM 7 YEARS OF EXPERIENCE HANDS ON EXPERIENCE IN DEVELOPING
DASHBOARDS AND REPORT
-- 
durga
du...@s3staff.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CALA028a%2B05HZ6DHPj_jM8BAr-F_k-dO6LHR-9etE0z9JUwfDyg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Java Developer

2017-02-21 Thread lailombard via Android Developers


On Tue, 2/21/17, Karthik Akula  wrote:

 Subject: Re: [android-developers] Java Developer
 To: android-developers@googlegroups.com
 Date: Tuesday, February 21, 2017, 11:52 PM
 
 Hi
 Kamal,
 We have a
 candidate who is a great fit for Java
 Developer. Enclosed resume for your perusal and
 let me know if you would like to talk to him.
 Candidate Profile:Name:
 SreedharTotal Experience: 7+
 YearsCurrent Location: NYVisa Status:
 H1BAvailability: Immediate 
 On Wed, Feb 22, 2017 at
 12:46 AM,  
 wrote:
  
 
 Client:
 Mphasis/HP
 
 Rate:
 $55
 
  
 
 Java
 Developer
 
 Location: Chicago IL
 
 Duration: 6 Months+
 
 Interview: Phone -
 Skype/F2F
 
 
 
 
 
 -Should be
 very Strong in Java - Fundamentals.
 
 - Extensive Knowledge and interest in established and
 emerging J2EE frameworks
 for Web Services, build, Unit testing, Mocking, Logging is
 required
 
 - Should be able to translate technical design into code
 using J2EE technology
 stack.
 
 - Should have developed complex web applications in the past
 using rich UI
 techniques(Ajax, Jquery, prototype, Javascript).
 
 - Should have demonstrated abilities in designing.
 
 - Should be able to write effective unit test cases
 achieving ~100% code
 coverage.
 
 - Should be an avid learner of new technologies, innovate
 and demonstrate this
 attribute.
 
 - Experience in database – SQL/PLSQL is an advantage.
 
 - Excellent communication skills.
 
 - Should have done client facing roles in the past for at
 least 1.5-2 years.
 
 - Should have experience in product transformation.
 
 Very strong grasp of Unit Testing and a preference for
 TDD
 
 Proficient in web technologies, excellent AJAX skills
 (JQuery), 
 
 Strong with at least one front-end JavaScript MVC framework
 such as: Backbone,
 Angular, or Ember
 
 Experienced of working in Agile teams with deep
 understanding and appreciation
 for Agile development practices.
 
 Proficiency in Database concepts, Strong knowledge of SQL
 and experience with
 MySQL.
 
 Ability to prioritize and make decisions without needing to
 be
 micromanaged 
 
  
 
 -- 
 
  ThanksRegards….KamalIT
 RecruiterPRV
 Global servicesDirect
 : 703-495-7578 | Fax: 877-690-
 0720ka...@prvglobal.com : www.
 prvglobal.com
 
 
 
 
 
 
 
 
 
 
 
  
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+
 unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@
 googlegroups.com.
 
 Visit this group at https://groups.google.com/
 group/android-developers.
 
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/android-developers/ 2fccfef0-54ef-4ad9-84e6-
 7ba072fefa80%40googlegroups. com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 -- 
 
 Thank You and
 have a Great Day!
 Thanks & Regards,Karthik AkulaWeWorks Solutions
 Inc.
 Email: akarthik@weworksusa.comHangOuts:
 karthik.weworksusaPhone: 718-942-7108
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPJeXEJNcXLuvAveNQMWDsf6X1Fi0ONtLDnWyo-kYC7RSKnXNQ%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/optout.
 nii 1885-1866. Declinul domniei lui Cuza si indepartarea sa  ia 11 uarie 1866. 
Stabilizarea temporara a situatiei politice si-a aratat  pentru o rta perioada  
efectele atat inauntrul tarii  cat si in relatiile noastre externe  s doua 
camere au votat legea privind numirea de catre domn a mitropoli-si episcopilor  
care  firesc  a provocat o mare emotie la Constantinopol. asta masura  cu 
caracter de autocefalie pentru Biserica Romana  era un alt semn ansolidarii 
treptate a statului national si al aspiratiei sale spre independenta.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1157762886.2892855.1487715955029%40mail.yahoo.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MuleSoft developer__Need Urgent

2017-02-21 Thread Bharat Chhibber
Hello,

Hope you are doing well.

This is Bharat from Nityo Infotech. Please find the JD below and if you
have any consultant available then please let me know ASAP at
bhara...@nityo.com.





*MuleSoft developer*


*Location: NYC, NY 6 months *





*Job Description:*



· 5+ years of software development experience. Software integration
and/or other ESB experience is a must.

· 5+ years of experience working with the MULE ESB platform as a
Developer

· Senior level Java development experience is a must

· SOA design principles and best practices

· Experience with SOAP and REST a must

· Have expertise in large distributed systems, legacy experience is
considered an asset

· Background in agile and waterfall methodologies

· Have excellent verbal, written, and inter-personal communication
skills


--

[image: Description: cid:image001.png@01CB85A7.EC3D8B00]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Regards*



*Bharat Chhibber*
Desk : 6098530818 Extn 2111

Fax : 609 799 5746
*bhara...@nityo.com *


--

USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines |
Thailand  | UK | Australia / Zealand
--

*Nityo Infotech has been rated as One of the top 500 Fastest growing
companies by INC 500*
--

*Disclaimer:* http://www.nityo.com/Email_Disclaimer.html
--

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEmgVe0thqCyPFQzH0Qqye1R5sEy3nerqDXR1GDsgi_TTZt%2BVw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Looking for Oracle Fusion Middleware with API Management

2017-02-21 Thread SALMA BHAT
Hi Partners,


Please share matching profile at *naseer.ah...@nityo.com
*

Requirement

· Oracle 12C / Fusion Middleware

· Services Management – API Management experience – any product

· iPaas Concepts

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJ0KNK_Dd9iLPFzFhmsHQurQm%2BFgH8yVg1UJ0cYvVLt2Ekrx%3Dw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Java Developer

2017-02-21 Thread Karthik Akula
Hi Kamal,

We have a candidate who is a great fit for Java Developer.
Enclosed resume for your perusal and let me know if you would like to talk
to him.

Candidate Profile:
Name: Sreedhar
Total Experience: 7+ Years
Current Location: NY
Visa Status: H1B
Availability: Immediate

On Wed, Feb 22, 2017 at 12:46 AM,  wrote:

>
>
> *Client: Mphasis/HP*
>
> *Rate: $55*
>
>
>
> *Java Developer*
>
>
> * Location: Chicago IL Duration: 6 Months+ Interview: Phone - Skype/F2F*
>
>
> -Should be very Strong in Java - Fundamentals.
> - Extensive Knowledge and interest in established and emerging J2EE
> frameworks for Web Services, build, Unit testing, Mocking, Logging is
> required
> - Should be able to translate technical design into code using J2EE
> technology stack.
> - Should have developed complex web applications in the past using rich UI
> techniques(Ajax, Jquery, prototype, Javascript).
> - Should have demonstrated abilities in designing.
> - Should be able to write effective unit test cases achieving ~100% code
> coverage.
> - Should be an avid learner of new technologies, innovate and demonstrate
> this attribute.
> - Experience in database – SQL/PLSQL is an advantage.
> - Excellent communication skills.
> - Should have done client facing roles in the past for at least 1.5-2
> years.
> - Should have experience in product transformation.
> Very strong grasp of Unit Testing and a preference for TDD
> Proficient in web technologies, excellent AJAX skills (JQuery),
> Strong with at least one front-end JavaScript MVC framework such as:
> Backbone, Angular, or Ember
> Experienced of working in Agile teams with deep understanding and
> appreciation for Agile development practices.
> Proficiency in Database concepts, Strong knowledge of SQL and experience
> with MySQL.
> Ability to prioritize and make decisions without needing to be
> micromanaged
>
>
>
> --
>
>  Thanks
>
> *Regards….*
>
> Kamal
>
> IT Recruiter
>
> *PRV Global services*
>
> *Direct : **703-495-7578** | Fax: **877-690-0720* <877-690-0720>
>
> *ka...@prvglobal.com * : *www.prvglobal.com
> *
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/2fccfef0-54ef-4ad9-84e6-
> 7ba072fefa80%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 

Thank You and have a Great Day!

Thanks & Regards,
*Karthik Akula*
*WeWorks Solutions Inc.*

*Email:* *akart...@weworksusa.com *
*HangOuts: karthik.weworksusa*
*Phone:* *718-942-7108*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPJeXEJNcXLuvAveNQMWDsf6X1Fi0ONtLDnWyo-kYC7RSKnXNQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Sridhar.docx
Description: MS-Word 2007 document


[android-developers] IMMD NEED !! C++ developers with Telecom - St.Louis, MO

2017-02-21 Thread Richard Shaw
Hi ,
Hope all is well..

I have an exciting new opportunity that I wanted to share with you and your
network. Our top client, located in the St. Louis,MO. is currently seeking
a C++ developer resource to join their organization. I have included a
complete job description below in case you or someone you know might be
interested in learning more.

*Role: C++ developers with Telecom.*
*Location: St. Louis, MO*
*Duration: 6+ Months Contract*

*ONLY:EAD GC, GC OR USC.*

*Job description*
We are seeking C/C++ developers with Telecom experience.
3+ yrs C/C++ experience
Diameter Experience
Software Documentation experience
Ability to use git, gerrit, github and gitlab

*Experience W/ One Or More Of The Following:*
Ubuntu 14.04/16.04
CentOS/RHEL 7.x
OpenSUSE
OpenStack experience is a plus
Bash/shell scripting preferred
Basic System Administration Skills Preferred

*Best Regards,*

*Richard Shaw - IT Recruiter*
*AYR Global IT Solutions Inc. *
*1431 Opus Pl, Suite 110, Downers Grove, IL -  60515*
*Email: rs...@ayrglobal.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BHf1rLeV4%2Bn3aFntMf9LaEy3tdkM8%2BQzNEdyfMw%2BJNdFLkiUg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hiring - QlikView Admin @ Exton, PA

2017-02-21 Thread nanda kishore
Hi,

Hope you are doing good today!!!



Please go through the below requirement and let me know your thoughts ASAP>



*Title : QlikView Admin*

*Duration : 6+ months*

*Location : Exton, PA*



*Job Description:*

1)Must have experience handling administrative tasks on QlikView

a.Server installs and upgrades

b.System Monitoring, Maintenance

c. Code migration

d.User Administration

e.QlikView Security Models and structure implementation

f. Extensions and connector installations

g.Must have administered Qlik applications on Windows
Environment and have strong Windows server troubleshooting skills

2)Qlik Sense and N-Printing exposure (needs to be able to
administer and handle Qlik Sense applications and N-Printing functionality
related issues)

3)Must be able to handle application break-fix and enhancements
for QlikView applications

4)Strong communications and team-lead experience​

-- 

Kind regards,

Nanda Kishore | Technical Recruiter









*DeegitTM Inc* | Technology Consulting



1900 E Golf Rd., Suite 925 | Schaumburg, IL 60173



*Phone*: (847) 440 2436 Ext. 392



Email: na...@deegit.com



Skype:nanda.neoarden...@gmail.com

www.deegit.com



The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPeGz-SvmopNTSuUDLE6uT%2Bh1Utr-8N7N%2B_6f4Z4MndPUE%2ByGw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Java Developer

2017-02-21 Thread hanley.sondra via Android Developers


On Tue, 2/21/17, taylor.james300 via Android Developers 
 wrote:

 Subject: Re: [android-developers] Java Developer
 To: android-developers@googlegroups.com
 Date: Tuesday, February 21, 2017, 11:13 PM
 
 
 
 On Tue, 2/21/17, MPR Soft Inc 
 wrote:
 
  Subject: Re: [android-developers] Java Developer
  To: android-developers@googlegroups.com
  Date: Tuesday, February 21, 2017, 10:22 PM
  
  Hi
  Kamal,
  Please find the
  attached resume of Sandeep for below position.
  Sandeep MPhone:
  (224) 208-8022
  sandeepmara...@gmail.com
  RegardsKrishnaMPR Soft inckris...@mprsoft.com
   
  
  On Tue, Feb 21, 2017 at
  1:16 PM,  
  wrote:
   
  
  Client:
  Mphasis/HP
  
  Rate:
  $55
  
   
  
  Java
  Developer
  
  Location: Chicago IL
  
  Duration: 6 Months+
  
  Interview: Phone -
  Skype/F2F
  
  
  
  
  
  -Should be
  very Strong in Java - Fundamentals.
  
  - Extensive Knowledge and interest in established and
  emerging J2EE frameworks
  for Web Services, build, Unit testing, Mocking, Logging is
  required
  
  - Should be able to translate technical design into code
  using J2EE technology
  stack.
  
  - Should have developed complex web applications in the
 past
  using rich UI
  techniques(Ajax, Jquery, prototype, Javascript).
  
  - Should have demonstrated abilities in designing.
  
  - Should be able to write effective unit test cases
  achieving ~100% code
  coverage.
  
  - Should be an avid learner of new technologies, innovate
  and demonstrate this
  attribute.
  
  - Experience in database – SQL/PLSQL is an advantage.
  
  - Excellent communication skills.
  
  - Should have done client facing roles in the past for at
  least 1.5-2 years.
  
  - Should have experience in product transformation.
  
  Very strong grasp of Unit Testing and a preference for
  TDD
  
  Proficient in web technologies, excellent AJAX skills
  (JQuery), 
  
  Strong with at least one front-end JavaScript MVC
 framework
  such as: Backbone,
  Angular, or Ember
  
  Experienced of working in Agile teams with deep
  understanding and appreciation
  for Agile development practices.
  
  Proficiency in Database concepts, Strong knowledge of SQL
  and experience with
  MySQL.
  
  Ability to prioritize and make decisions without needing
 to
  be
  micromanaged 
  
   
  
  -- 
  
   ThanksRegards….KamalIT
  RecruiterPRV
  Global servicesDirect
  : 703-495-7578 | Fax: 877-690-
  0720ka...@prvglobal.com : www.
  prvglobal.com
  
  
  
  
  
  
  
  
  
  
  
   
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+
  unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@
  googlegroups.com.
  
  Visit this group at https://groups.google.com/
  group/android-developers.
  
  To view this discussion on the web visit https://groups.google.com/d/
  msgid/android-developers/ 2fccfef0-54ef-4ad9-84e6-
  7ba072fefa80%40googlegroups. com.
  
  For more options, visit https://groups.google.com/d/
  optout.
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@googlegroups.com.
  
  Visit this group at
 https://groups.google.com/group/android-developers.
  
  To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/CA%2BN3Z7voe3f%2BtLJ%2BK3D%2B_NnsmPkH4hEw4urTAwV9a_fs%2Bf6_VQ%40mail.gmail.com.
  
  For more options, visit
 https://groups.google.com/d/optout.
   apr. - Ambasadorul R.F.G. la Bucuresti este rechemat
 in urma repetatelor violari ale drepturilor omului in
 Romania. 24 apr. - Comunitatea Europeana suspenda
 convorbirile cu Romania. 16-21 dec. - Puternica revolta
 populara din
 Romania   duce   la   inlaturarea   regimului
 comunist.19897  ian.  -  Moartea 
 lui   Hirohito    imparatu
 Japoniei. ii urmeaza la conducere Akihito. 2 febr. -
 Prabusirea dictaturii militare in Paraguay. 28 febr. -
 Ungaria anunta demontarea fortificatiilor de la frontiera sa
 cu Austria  mai - iun. - Manifestatii studentesti
 pentru democratie in China.  Ele sunt reprimate
 sangeros de catre autoritatile comuniste  3-5 iun. . 4
 iun. - Primele alegeri libere in Polonia duc la victoria
 sindicatului Solidaritatii . 17    iun. 
   -    Reabilitarea   
 conducatorilor revolutiei din 1956 din Ungaria  aug. -
 sept. - Ungaria permite refugiatilor est-germani sa
 tranziteze prin Budapesta in drum spre R.F.G. oct. - Mari
 demonstratii in  R.D.G. Zidul Berlinului este
 deschis  9 nov. .
 -   inlocuirea   lui 
 Todor  Jivkov  cu   Petar Mlad

[android-developers] Immediate Need: VMWare Virtualization Consultant with Python Programming exp - Location: Sunnyvale, CA

2017-02-21 Thread Kaazmi Kahn
Hi folks,
Hope all is well..

Please share your consultant resume to *kk...@ayrglobal.com
*

*Role: VMWare Virtualization Consultant with Python Programming exp*
*Location: Sunnyvale, CA*
*Duration: 6+ Months Contract*

*Description:*
Experience in Python programming who also has a good domain knowledge on
Cluster Networking.
*Worked on VMware.*
worked with setting up *VMs, cluster *high availability.
Good understanding of  configuring *OVA* Installer etc.
*VCP *certification (Not Required)

*Best Regards,*

*Kaazmi Kahn - Recruiter*
*AYR Global IT Solutions Inc.*
*1431 Opus Pl, Suite 110, Downers Grove, IL -  60515*
*Direct: (281) 670-9343 | Email: kk...@ayrglobal.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANBLWA9XTGbq4M1TVurnyU%3DMF3CMCh6W4FBxqy1v9n5n0nEAMA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Python Test Automation @ San Jose, CA

2017-02-21 Thread satish kumar
Hi ,



Hope you are doing great!



Please review the following Job Description and share updated resume if you
find comfortable for this position...





*Role : Python Test Automation + IP Networking*

*Location : San Jose, CA*

*Duration : Long Term*



Job Description:

Mandatory:

- Excellent experience and expertise in Python for Software Test automation

- Very good experience in IP networking or NMS projects







*Satish Kumar* | SYSMIND, LLC
*Technical Recruiter*

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

Phone: 609-897-9670 x 2152

Email: sati...@sysmind.com

Gmail: satishsysmi...@gmail.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHxR9GboJqGiC3Ox8rvWR6zWBvW5hcs3VAhKd5DEh%2BMzQdbtTw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Java Developer

2017-02-21 Thread taylor.james300 via Android Developers


On Tue, 2/21/17, MPR Soft Inc  wrote:

 Subject: Re: [android-developers] Java Developer
 To: android-developers@googlegroups.com
 Date: Tuesday, February 21, 2017, 10:22 PM
 
 Hi
 Kamal,
 Please find the
 attached resume of Sandeep for below position.
 Sandeep MPhone:
 (224) 208-8022
 sandeepmara...@gmail.com
 RegardsKrishnaMPR Soft inckris...@mprsoft.com
  
 
 On Tue, Feb 21, 2017 at
 1:16 PM,  
 wrote:
  
 
 Client:
 Mphasis/HP
 
 Rate:
 $55
 
  
 
 Java
 Developer
 
 Location: Chicago IL
 
 Duration: 6 Months+
 
 Interview: Phone -
 Skype/F2F
 
 
 
 
 
 -Should be
 very Strong in Java - Fundamentals.
 
 - Extensive Knowledge and interest in established and
 emerging J2EE frameworks
 for Web Services, build, Unit testing, Mocking, Logging is
 required
 
 - Should be able to translate technical design into code
 using J2EE technology
 stack.
 
 - Should have developed complex web applications in the past
 using rich UI
 techniques(Ajax, Jquery, prototype, Javascript).
 
 - Should have demonstrated abilities in designing.
 
 - Should be able to write effective unit test cases
 achieving ~100% code
 coverage.
 
 - Should be an avid learner of new technologies, innovate
 and demonstrate this
 attribute.
 
 - Experience in database – SQL/PLSQL is an advantage.
 
 - Excellent communication skills.
 
 - Should have done client facing roles in the past for at
 least 1.5-2 years.
 
 - Should have experience in product transformation.
 
 Very strong grasp of Unit Testing and a preference for
 TDD
 
 Proficient in web technologies, excellent AJAX skills
 (JQuery), 
 
 Strong with at least one front-end JavaScript MVC framework
 such as: Backbone,
 Angular, or Ember
 
 Experienced of working in Agile teams with deep
 understanding and appreciation
 for Agile development practices.
 
 Proficiency in Database concepts, Strong knowledge of SQL
 and experience with
 MySQL.
 
 Ability to prioritize and make decisions without needing to
 be
 micromanaged 
 
  
 
 -- 
 
  ThanksRegards….KamalIT
 RecruiterPRV
 Global servicesDirect
 : 703-495-7578 | Fax: 877-690-
 0720ka...@prvglobal.com : www.
 prvglobal.com
 
 
 
 
 
 
 
 
 
 
 
  
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+
 unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@
 googlegroups.com.
 
 Visit this group at https://groups.google.com/
 group/android-developers.
 
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/android-developers/ 2fccfef0-54ef-4ad9-84e6-
 7ba072fefa80%40googlegroups. com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BN3Z7voe3f%2BtLJ%2BK3D%2B_NnsmPkH4hEw4urTAwV9a_fs%2Bf6_VQ%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/optout.
  apr. - Ambasadorul R.F.G. la Bucuresti este rechemat in urma repetatelor 
violari ale drepturilor omului in Romania. 24 apr. - Comunitatea Europeana 
suspenda convorbirile cu Romania. 16-21 dec. - Puternica revolta populara din 
Romania   duce   la   inlaturarea   regimului comunist.19897  ian.  -  Moartea  
lui   Hirohitoimparatu Japoniei. ii urmeaza la conducere Akihito. 2 febr. - 
Prabusirea dictaturii militare in Paraguay. 28 febr. - Ungaria anunta 
demontarea fortificatiilor de la frontiera sa cu Austria  mai - iun. - 
Manifestatii studentesti pentru democratie in China.  Ele sunt reprimate 
sangeros de catre autoritatile comuniste  3-5 iun. . 4 iun. - Primele alegeri 
libere in Polonia duc la victoria sindicatului Solidaritatii . 17iun.-  
  Reabilitareaconducatorilor revolutiei din 1956 din Ungaria  aug. - sept. 
- Ungaria permite refugiatilor est-germani sa tranziteze prin Budapesta in drum 
spre R.F.G. oct. - Mari demonstratii in  R.D.G. Zidul Berlinului este deschis  
9 nov. . -   inlocuirea   lui  Todor  Jivkov  cu   Petar Mladenov la conducerea 
Bulgariei. 17 nov. - Prabusirea regimului comunist in Cehoslovacia. Scriitorul 
dizident Vaclav Havel este ales presedinte  dec. Glosar de termeni istorici

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group

[android-developers] WordPress Administrator || Nashville, TN || Rate $50/hr. on C2c (Max) || Visa Any

2017-02-21 Thread Vishal Ji Awasthi
WordPress Administrator

Rate: $50.00

Duration: 3 - 6 months

Location:  Nashville, TN

Please Note:Locals preferred





Maintain existing websites, add content, and install updates to WordPress,
plugins, and themes. WordPress site performance tuning.

*Requirements:*

• Working knowledge of HTML and CSS

• Working knowledge of shared hosting

• Web design skills

• Ability to optimize posts and pages for best search engine visibility

• General graphic design skills (website banners, brochures, etc.)

• Knowledge of security vulnerabilities particular to WordPress and how to
mitigate them

• WordPress plugin and theme development

• WordPress performance tuning

• Proficiency with Google Analytics and pay-per-click advertising

• Social media integration and marketing

• Knowledge of PHP and/or JavaScript



*Needed some details for submission process -*






*Full Legal Name : Contact Number:
Email ID: Current
Location   : *

*Relocation   :*



*Last 4 digit of SSN : Skype ID
  : DOB(MM/DD): *

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

E-Mail:*vis...@srimatrix.com *

Phone: *214-227-9311(Direct)*

Web: www.srimatrix.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJYEZ98GsvtUjb7jQ9FYe4fGz8aJD6uJPJ6Hy-%2BZdu_j_egQsw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Network Engineer

2017-02-21 Thread Shekhar Chaudhary
Title: Network Engineer
Duration: 6+ Months
Location: Dallas, TX
Client: Atos
Pay Rate: $60-65hr on C2C
Work Authorization: USC and GC only!

*Job Details:*
• Responsible for the development and maintenance of network
communications.
• Uses knowledge of LAN/MAN/WAN systems to help design and install internal
and external networks.
• Tests and evaluates network systems to eliminate problems and make
improvements.
*• Requires a bachelor’s degree and at least 8 years of experience in the
field or in a related area.*
• This role must be well versed with the advanced engineering and
administration of multiprotocol routers, multilayer switches, network
security devices and network management systems.
*• Possesses one or more industry standard certifications including CCNA,
CCNP, CCIE, etc. *
*• ITIL v3 studies expected. *
• Familiar with a variety of the fields concepts, practices, and
procedures.
• Relies on experience and judgment to plan and accomplish goals.
• Performs a variety of tasks.
• May lead and direct the work of others.
• A wide degree of creativity and latitude is expected.
• Must be familiar with managed services concepts within an outsourcing
environment.
• Typically reports to a manager.
*• Highly experienced in Cisco ISE and migrating from TACACS and other
platforms to ISE*
• Monday to Friday,  On-call and off-shift work will be required as
scheduled.
• Start Time (AM/PM): 8:00 AM
• End Time (AM/PM): 5:00 PM


*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW-sJmCy4swwTe113UrF6T%2B37GxzWOHMcSXAvYKV%2B4kVKw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Network Engineer

2017-02-21 Thread Shekhar Chaudhary
Title: Network Engineer

Duration: 3-6+ Months C2H

Location: San Diego, CA (local)

Client: Atos
Work Authorization: USC / GC / GC EAD
Pay rate: $45/hr on c2c

*Requirements:*

   - Assists in the development and maintenance of network communications.
   - Uses knowledge of LAN or MAN or WAN systems to help design and install
   internal and external networks.
   - Tests and evaluates network systems to eliminate problems and make
   improvements.

*Required Skills:*

   - Requires a bachelor’s degree and at least 5 years of experience in the
   field or in a related area.
   - This role must be well versed with the advanced engineering and
   administration of multiprotocol routers, multilayer switches, network
   security devices and network management systems.
   - Possesses one or more industry standard certifications including CCNA,
   CCNP, CCIE, etc.
   - ITIL v3 studies expected.
   - Familiar with a variety of the fields concepts, practices, and
   procedures.
   - Relies on experience and judgment to plan and accomplish goals.
   - Performs a variety of tasks.
   - May lead and direct the work of others.
   - A wide degree of creativity and latitude is expected.
   - Must be familiar with managed services concepts within an outsourcing
   environment.
   - Typically reports to a supervisor or manager.

*Additional Requirements:*

   - Will need to drive to customer sites throughout the City of San Diego
   in order to support client's customer.



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW-rR1h79wt70kFhMcVCxE1%3D6TQG-f%3DTRE5jiPvBPyVYmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IMMD NEED Start ASAP !! VMWare Virtualization Consultant with Python Programming exp

2017-02-21 Thread Shaan Malik
Hi ,
Hope all is well..

I have an exciting new opportunity that I wanted to share with you and your
network. Our top client, located in the Sunnyvale, CA. is currently seeking
a VMWare Virtualization resource to join their organization. I have
included a complete job description below in case you or someone you know
might be interested in learning more.



*Role: VMWare Virtualization Consultant with Python Programming
expLocation: Sunnyvale, CA (Need Local Candidates)Duration: 6+ Months
Contract*

Description:
Experience in Python programming who also has a good domain knowledge on
Cluster Networking.
Worked on VMware.
worked with setting up VMs, cluster high availability.
Good understanding of  configuring OVA Installer etc.
VCP certification (Not Required)

*Best Regards,*


*Shaan Malik - Talent Acquisition SpecialistAYR Global IT Solutions Inc. |*
1431 Opus Pl, Suite 110, Downers Grove, IL -  60515
Direct: (331) 481-6635 | Email: sma...@ayrglobal.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAMJd8yfTy1nXZgyCEVw0-26EgTg5GrK_m2QX%2B3kU1zFC3hoEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle HR Application Developer

2017-02-21 Thread Shekhar Chaudhary
Looking for an Oracle HR Application Developer for a 4 to 5 month project
in Philadelphia. Potential hire after 5 months but not 100%



GC holder or Citizen only.



MUST know Oracle Application Framework (OAF) and Oracle HR eBusiness Suite
experience. *Do not submit resumes without this skill set.*

·  *Must *be able to produce deployment instructions, scripts and/or
packages to all client software to be rolled out at various states

·  Ability to follow standards and methodologies in the development and
implementation of computer software

·  Ability to architect small applications



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW_P8DgpKWk7cQmDtEnRLaKu2TwN2w2qK%3D%2BiSwTLA9XA8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Salesforce Developer—Asset and Wealth Management__Need Urgent Local to NY/NJ

2017-02-21 Thread Bharat Chhibber
Hello,

Hope you are doing well.

This is Bharat from Nityo Infotech. Please find the JD below and if you
have any consultant available then please let me know ASAP at
bhara...@nityo.com.



*Salesforce Developer—Asset and Wealth Management*

*New York*

*Contract*

*JD-*

•Minimum 9+ years managing complex CRM software projects

•Minimum 5 + years implementing Salesforce.com technology based
applications

•Knowledge and experience with both waterfall and agile project
methodologies

•Demonstrated ability to deliver full systems development lifecycle from
requirements gathering through implementation for various functional
architecture solutions

•Possesses the individual functional and professional knowledge to ensure
that the work products and deliverables and are of the highest caliber and
ensure client satisfaction

•Experienced identifying, developing, and implementing techniques to
improve engagement productivity (e.g., increase efficiencies, mitigate
risks, resolve issues, and optimize cost savings)

•Exceptional analytical and quantitative skills with great attention to
detail


--

[image: Description: cid:image001.png@01CB85A7.EC3D8B00]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Regards*



*Bharat Chhibber*
Desk : 6098530818 Extn 2111

Fax : 609 799 5746
*bhara...@nityo.com *


--

USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines |
Thailand  | UK | Australia / Zealand
--

*Nityo Infotech has been rated as One of the top 500 Fastest growing
companies by INC 500*
--

*Disclaimer:* http://www.nityo.com/Email_Disclaimer.html
--

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEmgVe0b1421fuQKXtUFGCH517U0WiF6ksJo4ZQ-9vQ5AFX5Mg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] RE:- urgent requirement two position (state clients)- business data analyst and sap functional

2017-02-21 Thread durga prasad
*Position ID – 7216*

*Position Title – Business Data Analyst (Reporting)*

*Organization – Department of Administration*

*Worksite Address – Columbia, SC*

*Length of Project – 12+ Months (Extendable)*

*No. of Positions – 1*

*Interviews – *Phone/WebEx



*Required Skills (rank in order of Importance):  *



· PROVEN WORKING EXPERIENCE AS A DATA ANALYST OR BUSINESS DATA
ANALYST

· TECHNICAL EXPERTISE REGARDING DATA MODELS, DATABASE DESIGN
DEVELOPMENT, DATA MINING AND SEGMENTATION TECHNIQUES

· STRONG KNOWLEDGE OF AND EXPERIENCE WITH REPORTING PACKAGES
(BUSINESS OBJECTS ETC), DATABASES (SQL ETC), PROGRAMMING (XML, JAVASCRIPT,
OR ETL FRAMEWORKS)

· KNOWLEDGE OF STATISTICS AND EXPERIENCE USING STATISTICAL PACKAGES
FOR ANALYZING DATASETS (EXCEL, SPSS, SAS ETC)

· STRONG ANALYTICAL SKILLS WITH THE ABILITY TO COLLECT, ORGANIZE,
ANALYZE, AND DISSEMINATE SIGNIFICANT AMOUNTS OF INFORMATION WITH ATTENTION
TO DETAIL AND ACCURACY

· ADEPT AT QUERIES, REPORT WRITING AND PRESENTING FINDINGS

· BUSINESS INTELLIGENCE DEVELOPER WITH HANDS-ON EXPERIENCE IN DATA
WAREHOUSES AND BI TO DESIGN AND DEVELOP BUSINESS REPORTS, DASHBOARDS WITH
SAP BUSINESS OBJECTS.

· EXPERT IN DESIGNING BUSINESS OBJECTS UNIVERSE(S). SHOULD BE ABLE
TO RECOMMEND DATA WAREHOUSE DESIGNING

· EXPERIENCED IN REQUIREMENT GATHERINGS FROM BUSINESS AND CREATE
THE SPECS FOR DEVELOPMENT OF UNIVERSE DESIGN/WEBI.



*Preferred Skills*



· WORK WITH CROSS FUNCTIONAL BUSINESS AND IT TEAMS OF BUSINESS
ANALYSTS, DATA MODELERS, SOLUTION ARCHITECTS, DBA'S AND PROJECT MANAGERS
DURING ALL SDLC PHASE

· TRANSLATES FUNCTIONAL REQUIREMENTS INTO TECHNICAL SPECIFICATIONS.
PERFORMS CODE WALKTHROUGHS AND FORMAL REVIEWS

· PARTICIPATE IN PRODUCTION, OFF-HOURS AND WEEKEND SUPPORT

· CREATE AND FOLLOW PROCESSES, PROCEDURES AND BEST PRACTICES

· EXPERIENCE IN DEVELOPING RE-USABLE FRAME-WORK AND COMPONENTS

· EXPERIENCE IN TUNING PERFORMANCE OF DASHBOARD AND SQL

· EXPERIENCED IN UNDERSTANDING THE FLOW OF DATA BETWEEN SOURCE AND
TARGET DATABASE, DATA ANALYSIS AND ANALYTICAL SKILL

· STRONG UNDERSTANDING OF DIMENSIONAL & RELATIONAL DATA MODELS.



*Education*



· BS IN MATHEMATICS, ECONOMICS, COMPUTER SCIENCE, INFORMATION
MANAGEMENT OR STATISTICS OR RELATED FIELD.

· 10 YEARS’ OF RELEVANT WORK EXPERIENCE MAY BE SUBSTITUTED IN LIEU
OF EDUCATION.

· MINIMUM 7 YEARS OF EXPERIENCE HANDS ON EXPERIENCE IN DEVELOPING
DASHBOARDS AND REPORTS


*Position ID – 7207*

*Position Title – *SAP Functional

*Organization – SC PEBA - Retirement*

*Worksite Address – Columbia, SC*

*Length of Project – 250 Hours/Yr*

*No. of Positions – 1*

*Interviews – *Phone/WebEx



3 weeks onsite followed by remote support for patches and upgrades - 40 hrs
a week for three weeks and then support as needed for updates - not to
exceed 250 hours per year.



*Scope of the Project:*



· Patching and upgrades of one test and two production SAP systems
on RHEL 6.

· The scope includes but is not entirely limited to: SAP patching



*Daily Duties/Responsibilities:*



· Installation of SAP software

· Configuration of SAP

· Plan, prepare and execute patching systems



*Required Skills (rank in order of Importance):  *



· SAP, RHEL, ORACLE



*Education*



· MAY REQUIRE AN ASSOCIATE'S DEGREE IN A RELATED AREA AND 5-7 YEARS
OF EXPERIENCE IN THE FIELD OR IN A RELATED AREA. AN EQUIVALENT EXPERIENCE
WILL BE CONSIDERED.


-- 
durga

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CALA028aFuLf8QNUgkzB7mc9RLSxCBmT3XPHEByNm%2BLft-j8iOA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent opening || No JNTU || Rate $50/hr max || .Net developer with ReactJS @ Philadelphia, PA

2017-02-21 Thread Vasanth Kumar
Hi,

Greetings from American IT Resource Group Inc.!

I would like to touch-base you regarding a job opportunity with our client,
appreciate if you could go through below job detail and let me know your
thoughts as soon as possible.

*Reply only to vasa...@aitrg.com *

*Role: .Net developer with ReactJS*

Location: Philadelphia, PA

Duration: Long term contract

*No JNTU *candidates and* H1B must *for submission

*Skills and Experience:*

   - HTML5/ CSS3 development experience - Experience in Responsive Web
   design and Bootstrap Framework
   - Exposure to JavaScript Frameworks – ReactJS (Mandatory), Angularjs, or
   any MVVM Frameworks (KnockoutJS (highly preferred), Backbone)
   - Experience with CSS templating Frameworks eg: SASS, LESS etc.
   - Exposure to Front end Development process including Build (Grunt,
   Gulp, Bower).
   - Exposure to JavaScript Coding best practices, Code coverage, Unit
   Testing (Jasmine, Karma, Mocha, Chai), Mock frameworks and Coding Standards
   (JSCS, Lint)
   - Exposure to Server Side JavaScript development with NodeJs, NPM.
   - Exposure to ES6, ES7 or JavaScript transpiling languages like
   Typescript
   - Exposure to C#, .NET preferred / but not mandatory.



Looking forward to hear from you!



Thanks & Regards,



Vasanth || American IT Resource Group, Inc.

, Plaza Dr., Suite 640, Schaumburg, IL - 60173

Desk: 312-561-4349 || Email: vasa...@aitrg.com

Skype/ Gtalk: vasanth.aitrg  || Web: www.aitrg.com

[image: joe-hertvik-linkedin-button]
  [image:
download]  [image:
followUsTwitter] 

Please do not print unless it is absolutely necessary. Spread environmental
awareness.

Note: Under Bills. Title III passed by the 105th U.S. Congress this mail
cannot be considered spam as long as we include contact information and a
remove link for removal from our mailing list. To be removed from our
mailing list reply with "remove" and include your "original email
address/addresses" in the subject header.

*To Unsubscribe, Click **Remove me*


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPcvYBKD_tEMygHj7b_eWOAfrKrtBRmE04ra0XYY%3DgsJ1ctAuw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] JAVA developer

2017-02-21 Thread Ravi Pandit
*Java Developer*


* Location: Chicago IL Duration: 6 Months+ Interview: Phone - Skype/F2F*


-Should be very Strong in Java - Fundamentals.
- Extensive Knowledge and interest in established and emerging J2EE
frameworks for Web Services, build, Unit testing, Mocking, Logging is
required
- Should be able to translate technical design into code using J2EE
technology stack.
- Should have developed complex web applications in the past using rich UI
techniques(Ajax, Jquery, prototype, Javascript).
- Should have demonstrated abilities in designing.
- Should be able to write effective unit test cases achieving ~100% code
coverage.
- Should be an avid learner of new technologies, innovate and demonstrate
this attribute.
- Experience in database – SQL/PLSQL is an advantage.
- Excellent communication skills.
- Should have done client facing roles in the past for at least 1.5-2 years.
- Should have experience in product transformation.
Very strong grasp of Unit Testing and a preference for TDD
Proficient in web technologies, excellent AJAX skills (JQuery),
Strong with at least one front-end JavaScript MVC framework such as:
Backbone, Angular, or Ember
Experienced of working in Agile teams with deep understanding and
appreciation for Agile development practices.
Proficiency in Database concepts, Strong knowledge of SQL and experience
with MySQL.
Ability to prioritize and make decisions without needing to be micromanaged

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAKzQ7qjxPOYads7jz-xL%3Dn7UYJV3jXKKAMb_4DCoBtvGJg3HvA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Today Interview Start ASAP !! VMWare Virtualization Consultant with Python Programming exp - Sunnyvale, CA

2017-02-21 Thread Richard Shaw
*Role: VMWare Virtualization Consultant with Python Programming exp*
*Location: Sunnyvale, CA*
*Duration: 6+ Months Contract*

*Visa: GC,Citizen,TN and H1B*

*Description:*
Experience in Python programming who also has a good domain knowledge on
Cluster Networking.
Worked on VMware.
worked with setting up VMs, cluster high availability.
Good understanding of  configuring OVA Installer etc.
VCP certification (Not Required)

*Best Regards,*

*Richard Shaw - IT Recruiter*
*AYR Global IT Solutions Inc. *
*1431 Opus Pl, Suite 110, Downers Grove, IL -  60515*
*Email: rs...@ayrglobal.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BHf1r%2BLm3%3D2%2BEroe8ngeQ8nY4JQz0mz%3DVy4ktX6mDXDyoOgWw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for Hadoop Engineer for Pleasanton, CA

2017-02-21 Thread Aman Sharma
*Hi *
*Please lookup the below position and if you feel comfortable ,then please
send me your updated resume *



Role   :   Hadoop Engineer

Location   :   Pleasanton, CA

Interview:   Phone and F2F

Duration  :   12 months +



*Tasks:*
The tasks for the Hadoop Engineer include, but are not limited to, the
following:
•Translate client user requirements into technical architecture vision
and implementation plan
•Design and implement an integrated Big Data platform and analytics
solution
•Design and implement data collectors to collect and transport data to
the Big Data Platform.
•Implement monitoring solution(s) for the Big Data platform to monitor
health on the infrastructure.

*Technical Knowledge and Skills:*


Consultant resources shall possess most of the following technical
knowledge and experience:
*•6+ year’s development experience in Hadoop.*
•Proven expertise in Hadoop production software development.
•Successful track record of providing production support for
large-scale distributed systems, with experience in creating
software/scripts to automate production systems with some of the
followings: Java, bash, python, etc.

* Must have atleast 1 year experience supporting production issues and
problems.*
*•4+ years of experience programming in Java.*
•Proficient in SQL, NoSQL, Spark and relational database design and
methods for efficiently retrieving data.
•Information retrieval using Solr and Lucene.
•Experience resolving complex search issues in and around the
Lucene/Solr ecosystem.
•Experience designing and developing code, scripts and data pipelines
that leverage structured and unstructured data integrated from multiple
sources - TIFF/PDF, relational, web crawl.
•Must have experience in building analytics for structured and
unstructured data and managing large data ingestion using technologies like
Kafka /Flume/Avro/Thrift /Sqoop.
•Must have hands on experience in implementing solutions using MR,
Hive, Pig, or HBase.
•Software install and configuration.
•Participating in requirements and design workshops with our users.
•Developing project deliverable documentation.
•Agile development methodologies.
•Must have a disciplined, methodical, and minimalist approach to
designing and building software
•Experience in Machine Learning, Mahout, Tika, RDF/Triple Stores, Graph
databases.
•Experience with OCR tools
•Contribution to open source for Oozie , HBase, ZooKeeper or other open
source project on Apache









Regards ,

Aman Sharma

Technical Recruiter

VSG Business Solutions

Email ID :  a...@vsgbusinesssolutions.com 

Phone: 302-261-3207 x 103

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANXTjGhGZH4VNG9UF2rcL9tjDvOE0sjEKzUr7Ani2VcsQ8TPLg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Java Developer

2017-02-21 Thread MPR Soft Inc
Hi Kamal,

Please find the attached resume of Sandeep for below position.

Sandeep M
Phone: (224) 208-8022
sandeepmara...@gmail.com

Regards
Krishna
MPR Soft Inc
kris...@mprsoft.com



On Tue, Feb 21, 2017 at 1:16 PM,  wrote:

>
>
> *Client: Mphasis/HP*
>
> *Rate: $55*
>
>
>
> *Java Developer*
>
>
> * Location: Chicago IL Duration: 6 Months+ Interview: Phone - Skype/F2F*
>
>
> -Should be very Strong in Java - Fundamentals.
> - Extensive Knowledge and interest in established and emerging J2EE
> frameworks for Web Services, build, Unit testing, Mocking, Logging is
> required
> - Should be able to translate technical design into code using J2EE
> technology stack.
> - Should have developed complex web applications in the past using rich UI
> techniques(Ajax, Jquery, prototype, Javascript).
> - Should have demonstrated abilities in designing.
> - Should be able to write effective unit test cases achieving ~100% code
> coverage.
> - Should be an avid learner of new technologies, innovate and demonstrate
> this attribute.
> - Experience in database – SQL/PLSQL is an advantage.
> - Excellent communication skills.
> - Should have done client facing roles in the past for at least 1.5-2
> years.
> - Should have experience in product transformation.
> Very strong grasp of Unit Testing and a preference for TDD
> Proficient in web technologies, excellent AJAX skills (JQuery),
> Strong with at least one front-end JavaScript MVC framework such as:
> Backbone, Angular, or Ember
> Experienced of working in Agile teams with deep understanding and
> appreciation for Agile development practices.
> Proficiency in Database concepts, Strong knowledge of SQL and experience
> with MySQL.
> Ability to prioritize and make decisions without needing to be
> micromanaged
>
>
>
> --
>
>  Thanks
>
> *Regards….*
>
> Kamal
>
> IT Recruiter
>
> *PRV Global services*
>
> *Direct : **703-495-7578** | Fax: **877-690-0720* <877-690-0720>
>
> *ka...@prvglobal.com * : *www.prvglobal.com
> *
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/2fccfef0-54ef-4ad9-84e6-
> 7ba072fefa80%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BN3Z7voe3f%2BtLJ%2BK3D%2B_NnsmPkH4hEw4urTAwV9a_fs%2Bf6_VQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Sandeep M.doc
Description: MS-Word document


[android-developers] URGENT REQUIREMENT : “BOBJ Developer" at Renton, WA

2017-02-21 Thread Varun
*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*



Dear Recruiter,

Hope you are doing fine. We have an urgent requirement for   *BW/BOBJ
Developer* at *Renton, WA, USA* for a* 6** Months **Contract* role. Please
go through the same and let us know if you have anyone matching the below
role. Please send your responses to *varun.j...@diverselynx.com*
 with your candidate resume and contact details.



*Title – **BW/BOBJ Developer*
*Location –*
* Renton, WA Duration – 6 Months Contract*


*EXPERIENCE REQUIRED : min 10 YEARS *


*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*



*MUST NEED SKILLS*



· *SAP BW 7.4  experience*

· *HANA experience*

· *Experience on Lumira Tool*

· *BW experience on FICO  & Logistics objects*

· *ABAP experience*





*Job Functions / Responsibilities. *



• Build and enhance BW objects such as: InfoObjects, DSOs (standard,
write-optimized, SPO), InfoCubes (standard, virtual, SPO), aggregates,
MultiProviders, InfoSets, Transformations, DTPs and process chains.

• Build and enhance BI objects such as: BEx queries, BEx Analyzer
workbooks, and BEx web applications including BI commands.

• Build and enhance portal objects such as: iViews, pages, worksets, roles.

• Build and enhance source system objects such as: DataSources and generic
extractors based on tables, views, classic InfoSets and function modules.

• Build and enhance ABAP objects such as: function module extractors,
BAdIs, user exits and routines (field, start and end).

• Design comprehensive BI solutions, translating complex requirements into
an optimal BI design.

• Assist SAP Functional Analyst in requirements gathering and validation.

• Perform technical solution design, unit testing, and technical documents
authoring

• Assists in resolving production support problems. Develops and suggests
alternative approaches to resolving problems.

• Conducts quality assurance activities such as peer reviews.

• Develops test plans to verify logic of new or modified programs.
Identifies issues as appropriate.

• Adhere to BW/BI best practices and standards to maintain stable Business
Information environment.

• Ability to work periodic evenings and weekends for production support and
implementations as needed.



*QUALIFICATIONS: *

• Minimum 4 years of technical experience with SAP BW 7.0 or higher

• Maintained high level of quality while working under pressure and
deadlines.

• Deep knowledge of configuration and development of BW, including BW,
source system (ECC, SRM, c-Folders.) and portal systems

• Demonstrated ability to communicate both in verbally and in writing
across all levels of the organization.

• Ability to assess the impact of new requirements on an existing suite of
complex applications.

• Ability to reconcile and resolve differences between BW and ECC, SRM, and
C-Folders, including root cause analysis and resolution.

• Experience with ABAP function modules, user exits and routines.

• Experience required creating dashboards with Lumira Desktop and Lumira
Server and BusinessObjects Analysis workbooks for SAP BW BEx queries and
SAP HANA views.

• Experience with ECC 6.0, SRM 7.03, and c-Folders required







*Thanks and Regards,*

*Varun Jain*

*Diverse Lynx LLC*



Email is the best way to reach me…

*Phone: 732-452-1006  ext 288*

*Fax: 732-452-0684*

*Email – varun.j...@diverselynx.com *

*Linkedin -  *https://www.linkedin.com/in/varun-jain-928487b9/





Diverse Lynx LLC |300 Alexander Park|Suite #200|Princeton , NJ 08540



“For our open jobs please visit Diverselynx Jobs

”





*“Note: Diverse Lynx LLC is an Equal Employment Opportunity employer. All
qualified applicants will receive consideration for employment without
regard to race, religion, color, sex, age, national origin or disability.
All applicants will be evaluated solely on the basis of their ability,
competence, and performance of the essential functions of their positions.
We promote and support a diverse workforce at all levels in the company.
This is not an unsolicited mail. If it is not intended for you or you are
not interested in receiving our e-mails please reply with a "remove" in the
subject line and mention all the e-mail addresses to be removed with any
e-mail addresses, which might be diverting the e-mails to you. We are
extremely sorry if our email has caused any inconvenience to you.”*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.goo

[android-developers] .Net Full Stack Developer - Irvine, CA (Need Local candidates)

2017-02-21 Thread Sekhar Reddy
Hi,

*Sekhar *here from *METASIS INFORMATION,* one of our client has an opening
for *.Net Full Stack Developer*

Below is the job description for your reference, let me know if you have
any suitable consultants available.



*Role   : .Net Full Stack Developer *

*Location   : Irvine, CA*

*Duration  : 12 Months*



Note: Need Locals only



*primary technologies include Microsoft .Net (C#), Oracle, Angular JS*

*Experienced in .Net (C#), REST, Oracle/SQL Server, Angular JS. *



*Requirement:*

· Client is looking for "full stack" developers who can move
equally fast and reliably across front-end Web development, middle-tier
application & services, and database development.

· Very strong modern Web UI development experience is required.

· Developers who have spent most of their career doing only
back-end development or server-based Web development who do not also
have enough strength in building modern browser-based Javascript-centric
applications will NOT be successful.

· Successful developers would need to have good experience building
modern, responsive Web applications using HTML5, CSS3, and Angular.JS to
build and maintain moderate to complex line-of-business Web applications.

· Solid C# .NET background (ASP.NET MVC, WebAPI, WCF, nUnit/xUnit)
is required in addition to the above.

· Client is using Oracle and SQL Server on the back end, so all
developers would need to be experienced in both of these.

· Client intends to use MongoDB as the database for future
development, so experience with MongoDB or other NoSQL databases
(Cassandra, etc.) is a plus.

· Strong Agile/Scrum and communication skills

· Candidates should have at least 1 year experience in a Scrum team
and should understand the Scrum rituals and practices very well and be able
to articulate this knowledge during an interview.

· Communications skills and strong fluency in business English will
be vital.

· 3-5 plus years of technical experience in building large scale
Line of Business Web Apps

· Strong Object Oriented Design skills

· Solid understanding of modern development techniques i.e. REST,
Unit testing, TDD etc.

· Developers should have a good understanding of dependency
injection and automated unit testing/integration testing using frameworks
like NUnit/xUnit along with at least one .NET mocking framework (such
as Moq, Rhino, FakeItEasy, MS Fakes, etc.)  Developers should also be
familiar with automated unit testing for front-end/Angular.JS code
using frameworks like Jasmine/Karma or equivalent



*Thanks & Regards,*

*Sekhar*

*Email : sek...@metasisinfo.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BeU0sC1Q6%2BJ8nfJ9VDp%3DtqzxVshDP%2BKkjbuTVjVdkO1jf6vw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ONLY USC/GC/TN---Android/IOS Developer in Richfield, MN

2017-02-21 Thread Murali Recruiter
Hi,

 I hope you are doing great today.



We are looking for an *Android/IOS Developer in Richfield, MN*



Job Title:  *Android/IOS *

Location: * Richfield, MN*

Position :  6+ Months



*ONLY USC/GC/TN*



*Job Description*:–

•   Android Application /IOS Developer

•   Mobile Web App development

Android Application J2ME/

iOS J2ME, Apple Swift, Objective-C/Swift

Mobile UI Development





Looking forward to hear from you!



Thanks & Regards

 *Murali*

Technical Recruiter

Direct*:  408-868-5124||*

*Mailto: mur...@idctechnologies.com *

IDC Technologies Inc

1851 McCarthy Boulevard, Suite 116, Milpitas, CA - 95035

Website: www.idctechnologies.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABK%2BR6gZjEWYsHaWtAOFYsOnpq2HZvMO1jXVFCoqJ08D%3DHd_kQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Requirement for Android Developer

2017-02-21 Thread recruiter . sp007


Android Developer

Location: Overland Park, KS

Duration: 6 Months+

Interview phone and skype

 

Must have skills: Android SDK, JAVA, JIRA, Agile development experience.

 

Performs complex analysis, design, development and unit testing of software 
applications from user requirements and design documents. The candidate 
also resolves defects encountered during various testing cycles.

Bachelors Degree in Computer Science, Information Systems or equivalent.

Post graduate degree desired.

4-6 years experience in software development.

Android SDK, JAVA, JIRA, Agile development experience.

 

*Regards….*

Subhash

IT Recruiter

*PRV Global services*

*Direct : **703-495-7578** | Fax: **877-690-0720* <877-690-0720>

*subh...@prvglobal.com * : *www.prvglobal.com 
*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2b1503c1-9895-4d3b-84f4-1367c6668627%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Core Java + IP Networking/NMS @ San Jose, CA

2017-02-21 Thread satish kumar
Hi ,



Hope you are doing great!



Please review the following Job Description and share updated resume if you
find comfortable for this position...



*Note: Need Passport copy/number*



*Role : Core Java + IP Networking/NMS*

*Location : San Jose, CA*

*Duration : Long Term*



Job Description:

Mandatory:

- Excellent experience and expertise in Core Java backend
Development(Spring)

- Very good experience in NMS or IP networking projects



Good to have:

- Experience with YANG and NetCONF would be a plus





*Satish Kumar* | SYSMIND, LLC
*Technical Recruiter*

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

Phone: 609-897-9670 x 2152

Email: sati...@sysmind.com

Gmail: satishsysmi...@gmail.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHxR9Ga_%3D2SiSUS3u39UieTHXy9wEwKSDmjOkSZa3WrKaB_qYg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: Required: Application Developer at Richmond, VA.

2017-02-21 Thread Praveen
Hi,

I have an urgent requirement mentioned below. If you find yourself
comfortable with the requirement please reply back with your updated resume
and I will get back to you or I would really appreciate if you can give me
a call back at my contact number.







*Position: **Application Developer*

*Location: **Richmond, VA*

*Duration: **Long Term Contract*





*Required Skills:*

10+ Years Experience

Application Developer:

Skills: C#, Cloud Services (AWS, Microsoft Azure),
Enterprise Service Bus,  REST web services







*Thanks & Regards,*



*Praveen Tiwari*

Senior Technical Recruiter

*Sage Group*

*W:*+ 732-767-0010 x  113 |Direct: 732-851-1637 | *F:* 732-749-8969 | *Email:
*ptiw...@sagetl.com

*Gtalk/yahoo/Skype: praveentj101*

[image: SageLogoC] [image:
cid:image004.jpg@01D26D7E.63B9BEF0]

This message contains information that may be privileged or confidential
and is the property of Sage Group. It is intended only for the person to
whom it is addressed. If you are not the intended recipient, you are not
authorized to read, print, retain copy, disseminate, distribute, or use
this message or any part thereof. If you receive this message in error,
please notify the sender immediately and delete all copies of this message.
Sage Group does not accept any liability for virus infected mails.











-- 

*Praveen Tiwari*

*Technical Recruiter*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CADa58PRyOa-yfZ_C%3D-yt_%3DJ5cw8g4ZZHss5WrtZtnYEUT-RV%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Requirement for Android Developer

2017-02-21 Thread recruiter . sp007


Android Developer

Location: Overland Park, KS

Duration: 6 Months+

Interview phone and skype

 

Must have skills: Android SDK, JAVA, JIRA, Agile development experience.

 

Performs complex analysis, design, development and unit testing of software 
applications from user requirements and design documents. The candidate 
also resolves defects encountered during various testing cycles.

Bachelors Degree in Computer Science, Information Systems or equivalent.

Post graduate degree desired.

4-6 years experience in software development.

Android SDK, JAVA, JIRA, Agile development experience.




*Regards….*

Subhash

IT Recruiter

*PRV Global services*

*Direct : **703-495-7578** | Fax: **877-690-0720* <877-690-0720>

*subh...@prvglobal.com * : *www.prvglobal.com 
*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1c35c04c-129e-48a5-8652-6fc2028983e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: enabling bluetooth in android

2017-02-21 Thread RJ

Hi Jag, were you able to solve the mBluetoothAdapter issue? I have the same 
issues. 

Regards,
Rajeev

On Monday, August 29, 2016 at 12:53:49 AM UTC-5, Kjagdish Gowda wrote:

> Hi,
> Iam new to android development
> I want to enable bluetooth in my app.
> I followed the android developer tutorial in the link
>  https://developer.android.com/guide/topics/connectivity/bluetooth.html 
> 
> I had used "BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.
> getDefaultAdapter();" to get the bluetooth adapter
> when i try to check Bluetooth is supported using the commands
> if (mBluetoothAdapter == null) {
> // Device does not support Bluetooth
> }
>
> Iam getting error "unknown class" for mBluetoothAdapter
> Also unable to check mBluetoothAdapter.isEnabled(); mBluetoothAdapter and 
> its methods are not supported.
>
> My objective is to enable ble device and connect and pair with visible 
> device and to send and receive data.
>
> Looking forward for support 
>
> My code in MainActivity.java is
>
> package com.example.rd2_6.myfirstapp;
>
>
> import android.bluetooth.BluetoothAdapter;
> import android.bluetooth.BluetoothDevice;
> import android.bluetooth.BluetoothManager;
> import android.content.Context;
> import android.content.Intent;
> import android.content.pm.PackageManager;
> import android.support.v7.app.AppCompatActivity;
> import android.os.Bundle;
> import android.view.View;
> import android.widget.EditText;
> import android.widget.Toast;
>
> public class MainActivity extends AppCompatActivity {
> public final static String EXTRA_MESSAGE = 
> "com.example.myfirstapp.MESSAGE";
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_main);
> }
>
>BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
>
> if(mBluetoothAdapter == null)
> {
>
> }
>
>
> //if (!mBluetoothAdapter.isEnable()) {
> //Intent enableBtIntent = new 
> Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
> //startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
> //}
>
> public void sendMessage(View view) {
>// Intent intent = new Intent(this, DisplayMessageActivity.class);
> //EditText editText = (EditText) findViewById(R.id.edit_message);
> //String message = editText.getText().toString();
>// intent.putExtra(EXTRA_MESSAGE, message);
>// startActivity(intent);
> }
>
> }
>
>
>
>
> with Thanks
> Jagdish
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a8ae56e0-e13c-439a-b4da-a37286b6a891%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] QlikView Developer

2017-02-21 Thread Shekhar Chaudhary
*Client: Capgemini*

*Role: QlikView Developer*

*Location: Franklin Lakes, NJ*

*Duration: 6 months contract*

*Visa: GC, GC EAD or Citizen*



Description:

The QlikView Developer will be part of an Agile team focused on the
development of financial enterprise wide reporting initiative.

The developer will be focused mainly on the design, development, testing,
and implementation of analytical reporting solutions using QlikView.

A successful candidate will need to be a self-disciplined and methodical
with coding practices, yet be comfortable and agile within iterative and
incremental development practices.

Effectiveness in this position will require understanding of analytical
trends, BI tool capabilities & best practices, emerging productivity
efficiencies, creative reporting solution design, and the ability to work
independently.

This position will need to possess strong data analysis and interpersonal
skills, business knowledge and be capable of effective relationships and
negotiations between teams.



Responsibilities:

1. Development, enhancement and support complex back-end scripts that
integrates disparate data sources including SAP BW, Microsoft SQL,
Oracle/other RDBMS/offline content using QlikView 11.

2. Design, enhancement and support of front-end charts, graphs, and other
report objects using QlikView 11.

3. Performing unit/string testing on QlikView 11 application development.

4. Proactively seeking out opportunities to optimize reporting processes
and script design by tracking progress, providing status and cost
efficiencies for proposed initiatives.



Experience/Background:

• Minimum 3 years of experience with QlikView 11 back-end and front-end
design and development including backend ETL for data extraction, QlikView
scripting and data modeling. Experience with section access is highly
required.

• Experience in architecting QlikView security and document administration
features, to include task creation, scheduling and maintenance.

• Experience in handling large volume of data in QlikView 11.

• Knowledge of data warehouse methodology and concepts.

• Must have the ability to juggle multiple assignments at once in respect
to deadlines and given objectives.

• Act as a team player to mentor and lead new QlikView Developers.

• Experience in the Medical Device industry a plus.

• Experience with financial reporting/analytics a plus.

• Experience in SAP ERP or SAP BW a plus.



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW-1rUq0riun25gON9a5hEmeFeNBiGi_P%2BxqucZOAMBU%3Dw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need ::Project Manager with Development Exp _Alpharetta GA _ Full Time /Contract

2017-02-21 Thread Shawn Marsh
Hi Friend,

Hope your are Doing Good…!

I have an urgent opening on  *Project Manager with Development Exp*  Position
with my client. Please send me the resumes with full name, contact details,
Salary, and availability date.

*Requirement details:*

*Title**:* *Project Manager with Development Exp*

*Location:* *Alpharetta GA*

*Duration: Full Time /Contract*



*Need only Locals*



*Job Description:*



Project Managers play a significant role in the business and are considered
an integral member of the client service team. Project managers lead large
scale system integration programs comprised of multiple projects.

They work with a variety of client, internal and external functional
groups, including business, product, operations, financial and technology
organizations to ensure that the overall program and project objectives are
met in the planned timeframe and budget.

In addition, key responsibilities include:

· Lead all client projects from the initiation through project
completion.

· Agree with the customer stakeholders on the scope and timing of
project deliverables and provide regular updates on project progress to
internal stakeholders.

· Mobilize teams for the project delivery.

· Ensure completion of project deliverables and adherence to
timelines and budgets.

· Analyze and resolve issues/risks that have the potential to
jeopardize the ability to meet agreed upon deliverables.

· Mentor the team on tools and processes to manage projects,
participate in hiring decisions, and conduct performance appraisals on
staff.

· Provide full and accurate project communication with internal and
external customers.

· Manage internal and external client expectations on all project
requirements and deliverables.

·

*Key competencies for success:*

· Solid experience with SDLC.

· Demonstrated ability in managing internal and external client
expectations on project requirements and deliverables.

· Extensive experience working with Project Management processes,
including experience with Project Management tools to plan, manage and
monitor projects.

· Able to produce clear, concise status reports.

· Able to build confidence and trust with customers.

· Displays effective analytical skills.

· Is committed to customer satisfaction and the highest standards
of excellence.

· PMP certification preferred.

*BS degree (MS or MBA degree preferred) or equivalent experience required.*





Thanks & Regards

*Shawn Marsh*

Insoursys Inc

shawn_ma...@insoursysinc.com ||| www.insoursys.com

Note: If you have received this mail in error or prefer not to receive such
emails in the future, please reply with "REMOVE" in the subject line and
the email id(s) to be removed. All removal requests will be honored ASAP.
We sincerely apologize for any inconvenience caused.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAFjuZGHuQPMyomg20xOapKq7AeFSft6w4AjT27X9Pkc3hzG3bA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Full Stack/Senior Application Developer

2017-02-21 Thread Shekhar Chaudhary
*Full Stack/Senior Application Developer  *
*Allentown, PA*
*1 year Contract position*


*Visa: GC, GC EAD or Citizen*
*Description: *

   - Mobile and web application development

ο Daily hands-on development
ο Microsoft development tools
ο Projects are a mixture of new build or enhancements to in-house
developed  applications  ο Integration with existing application (internal,
SaaS)

   - Electric utility work space supporting distribution & transmission
   related projects

ο Work management for remote field crews
ο Apps to support remote field crews (employees, contractors)
ο Scheduling
ο Storm

   - Apple, Android, Windows target platforms
   - 6 to 8 years' experience
   - .Net, C#, Visual Studio 2015, TFS, Angular, HTML 5, JavaScript, LinQ,
   Oracle, SQL Server, WebMethods,
   - Team environment (projects typically consist of 4+ resources)



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW_bcRbxaECSXrJ22E1Ftx_e1M5Fq99kdnHr%2B%2B0ct0wU8w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for SAP PS Consultant at St Louis, MO

2017-02-21 Thread USIT Recruiter
*Hi *



* Please lookup the below position and if you feel comfortable ,then please
send me your updated resume *



*Position: SAP PS Consultant*

*Location: St Louis, MO*

*Duration : 6+ Months *



*Job Requirement :*

· Minimum 3 yrs. of SAP experience

· Minimum  2 SAP Implementation experience

· At least 01 SAP  Life sciences implementation experience





Thanks and Regards,



Abhishek Kumar
Last Word Consulting Inc.

Email: *abhis...@lastwordconsulting.com *

[image: Description: cid:image002.jpg@01D100EB.3059C880]
[image:
Description: cid:image003.jpg@01D100EB.3059C880][image: Description:
cid:image004.gif@01D100EB.3059C880]


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CALnpRi2btRP3s_Q-uk1vB_L9MP0x-J8ooVdZyHerXXMH2mi67Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] HELP: Showing notification badge on BottomNavigationView

2017-02-21 Thread Waqas Moazzam
Hi guys,

I have been trying BottomNavigationView released in API 25. I am struggling 
with notification badge on bottom navigation item. I have a selector 
drawable where I have added checked true and checked false states with 
greyed out drawable which has a BLUE dot on it. The purpose is to show blue 
dot when there is a certain activity. But when user navigates to other 
navigation item the whole menu button turns grey and the dot as well. I 
believe tint is applied to the image which is the reason having a different 
colour dot as part of the icon is not possible. Is there any alternate way 
to achieve this?




That is how I am using it. Removing itemIconTint does not help. 

On android developers I have found nothing and it being pretty new nothing is 
available on the web as well.

Any idea, any one?

Cheers


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/22b8694c-afbb-40f7-8686-22a1227b9e47%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need: : Informatica Developer with 8 yrs. exp(Norfolk, VA) Telephonic then Face to face

2017-02-21 Thread Imran Ansari
Hi,
Hope you are doing great!!




Please find the requirement below , If you find yourself comfortable with
the requirement please reply back with your updated resume and I will get
back to you or I would really appreciate if you can give me a call back at
my contact number 609-897-9670 *5104





*Title: **Informatica* *Developer **with 8 yrs. exp*

*Location: **Norfolk, VA*

*Interview: Face to face*

*Duration: 12+ Months*


*Skills Required:*



Must Have Skills
1. Informatica
2. SSIS
3. SSRS

Nice to have skills
1. Healthcare domain
2. Excellent communication

*Imran Ansari* | SYSMIND, LLC

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

*Technical Recruiter*

Phone: 609-897-9670 Ext. 5104

Email: imr...@sysmind.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANMY_ZfKs1-Uk0VKsd1w6SncRKKz%2BVLmdrxHkfX6FYNfrvX_jQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Required::;Peoplesoft Security Consultant - Partial Remote at Athens, GA

2017-02-21 Thread priyadarshani . s145


Hi, 

 

Hope you are doing Good! 

 

This is Priya Technical Recruiter form MSYS Inc. We have come across your 
profile on LinkedIn/Job Boards and we found your profile matching to the 
below job description. 


* Title: Peoplesoft Security Consultant - Partial Remote*




*  Location: Athens, GA Duration: Long term*

 

*Description:*

*** Government Agency - Candidate must be willing to sign a background 
check consent form at the time of submission 

*Security/Workflow Consultant Requirements*

* Security: *

   - 7+ years of PeopleSoft HCM Security  
   - 2+ years of public sector/higher education experience  
   - Design, develop, integrate, test, implement, and maintain PeopleSoft 
   security structure 
   - Assesses all system changes for functional security impact. Supports 
   unit and integration testing of new roles and impact on roles as a result 
   of changing functions 
   - Oversees and maintains the master definition of all functional 
   security roles and permissions 
   - Works with business units, development, project, and application 
   support teams to define and implement functional security access 
   requirements and determine appropriate security restrictions in the systems 
   to meet those requirements. 
   - Assess current Security configuration and recommend process 
   improvements to role and row-level security 
   - Provide guidance and training on PeopleSoft security to end-users  
   - Work with auditors to ensure PeopleSoft Security Architecture is 
   compliant with all policies and regulatory standards and requirements  
   - Ability to make recommendations to improve, streamline and automate 
   PeopleSoft security Provides troubleshooting and problem resolution for 
   functional security and resolve security issues, exceptions and escalations 
   when identified.  
   - Conducts risk management analysis to identify areas of risk and to 
   develop security measures to prevent losses. 
   - May create reports on status of agency information security programs 
   and projects. 
   - May be required to communicate to senior executives through oral and 
   written reports and presentations. 

*Workflow: *

   - 3-4 years of PeopleSoft workflow experience 
   - Has designed and developed various workflow scenarios at various 
   - Has worked with various self-service modules 

 Thank you!!

Priya S.

Technical Recruiter

MSys Inc.,

Direct (972) 544 7798

pr...@msysinc.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ca5e34c3-9319-4305-aecb-307cf27dd2a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer

2017-02-21 Thread recruiter . kpaul


 

*Client: Mphasis/HP*

*Rate: $55*

 

*Java Developer*


* Location: Chicago IL Duration: 6 Months+ Interview: Phone - Skype/F2F*


-Should be very Strong in Java - Fundamentals.
- Extensive Knowledge and interest in established and emerging J2EE 
frameworks for Web Services, build, Unit testing, Mocking, Logging is 
required
- Should be able to translate technical design into code using J2EE 
technology stack.
- Should have developed complex web applications in the past using rich UI 
techniques(Ajax, Jquery, prototype, Javascript).
- Should have demonstrated abilities in designing.
- Should be able to write effective unit test cases achieving ~100% code 
coverage.
- Should be an avid learner of new technologies, innovate and demonstrate 
this attribute.
- Experience in database – SQL/PLSQL is an advantage.
- Excellent communication skills.
- Should have done client facing roles in the past for at least 1.5-2 years.
- Should have experience in product transformation.
Very strong grasp of Unit Testing and a preference for TDD
Proficient in web technologies, excellent AJAX skills (JQuery), 
Strong with at least one front-end JavaScript MVC framework such as: 
Backbone, Angular, or Ember
Experienced of working in Agile teams with deep understanding and 
appreciation for Agile development practices.
Proficiency in Database concepts, Strong knowledge of SQL and experience 
with MySQL.
Ability to prioritize and make decisions without needing to be micromanaged 

 

-- 

 Thanks

*Regards….*

Kamal

IT Recruiter

*PRV Global services*

*Direct : **703-495-7578** | Fax: **877-690-0720* <877-690-0720>

*ka...@prvglobal.com * : *www.prvglobal.com 
*

 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2fccfef0-54ef-4ad9-84e6-7ba072fefa80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle Utilities CC&B Technical in Philadelphia, PA

2017-02-21 Thread Qamar Bilal
*bi...@vertexg.com* 

*The best way to contact me is by email:*



Hi,



Hope you are doing well today.



My name is *Bilal* and I am an *IT Technical Recruiter from VERTEX Inc. *
based in Illinois, if you feel comfortable with the requirement reply me
ASAP…….



Quick Response is appreciated.



*Below are the Position Details:*



*Position: SAP CRM*

*Location: Houston, TX*

*Duration: Long Term  contract *



*Job Description: *



*SAP Customer Relationship Management [CRM], Customer Master SAP Expert*

*Need:*

ExxonMobil Global Services Company – Information Technology has an
immediate opening for a *Data Design Lead* in its Data and Analytics team.
The team works closely with the business to proactively develop solutions,
deliver training, and understand the current and future technologies needed
to understand data.



*Work environment:*

he work environment is fast paced and dynamic. Individuals will be handling
multiple activities in a team as well as individual contributor environment.



*Primary functions:*

data architecture, data analysis and design, data standardization, data
quality management, reference and master data management, data integration,
data governance

Primary Deliverables: *Data architecture*, data flow, logical models,
physical source data models, data profiling reports and data audits, data
definitions, data taxonomy, data insights, meta-data, data lineage, data
cleansing services



*Activities:*

data modeling, data audit, detailed data design, define rules, establish
master data solutions, define hierarchies and affiliations, profile |
analyze | assess data quality, design data quality management procedures,
clean and correct data quality defects, establish data governance



*Preferred candidate should:*

• Demonstrate critical thinking, analytical skills, and employ judgment to
offer thoughtful, concise input toward resolutions of problems.

• Be able to translate data requirements into business processes and
reverse engineer business processes into data requirements

• *Comprehension of DevOps and Agile development* and application to data
centric architecture and solutions

• Strong communication and interpersonal skills with strong English
proficiency

• Leadership skills needed to successfully promote ideas, coordinate work
activities, and plan deliverables within a project team.





*This is a* *hands on role* *and the consultant should be able to work
independently with business and also in a team environment*

*Technical Competencies:*

• Advanced expert database handling languages (*SQL Stored Procedures and
variants*)

• Expert in performance tuning Oracle/SQL Server procedures

• *Expert in data modeling* (physical and logical), ER diagrams, data
dictionary, data map, normalize/de-normalize, agile data modeling

• Expert in *data manipulation tools such as: SSMS, SSIS, TOAD, Access,
Excel*

• Expert in ETL tools preferably *SAP Data Services*

• Working knowledge of SAP and ability to identify the SAP Tables quickly

• Expert Knowledge on *SAP FICO* and *Sales & Distribution,* *Customer
Relationship Management*, and*Customer Master*

• Practical skill sets in Data visualization tools preferably Tableau

• Knowledge of other programming languages and ability to write code (i.e.
ABAP, Python)

• *A minimum of 5 years’ experience in SAP Data
Management and Governance, SAP Data Services (Data Extract, Data Profiling,
de-duplication)*

• *Advanced competency in **TOAD for Oracle, SQL Server Database**,* *SAP
HANA (Modeling, SDI, Stored Procedures)* *and* *Tableau*

• Basic *Project Management* and *Business Process modeling*



*bi...@vertexg.com* 

*The best way to contact me is by email:*
















































-- 







Regards,

*Bilal Qamar*

Technical Recruiter



*VERTEX CONSULTING INC.*

www.thevertexgroup.com

935 N. Plum Grove Rd, STE # D,

Schaumburg, IL-60173.

*bi...@vertexg.com *

*The best way to contact me is by email:*

Voice: 847-972-5869  Fax 847-770-4848

*bilal.recruite...@gmail.com* 



*Please don't print this e-mail unless you really need to.*

Important: This electronic mail message and any attached files contain
information intended for the exclusive use of the individual or entity to
whom it is addressed and may contain information that is
proprietary,privileged, confidential and/or exempt from disclosure under
applicable law. If you are not the intended recipient, you are hereby
notified that any viewing, copying, disclosure or distribution of this
information may be subject to legal restriction or sanction. Please notify
the sender, by electronic mail or telephone, of any unintended recipients
and delete the original message without making any copies.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post t

[android-developers] V.URGENT REQUIREMENT : “pySpark Developer" at Portland, OR

2017-02-21 Thread Varun
*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*



Dear Recruiter,

Hope you are doing fine. We have an urgent requirement for   *pySpark
Developer with AWS EMR Experience*  at *Portland, Oregon, USA* for a* 8+**
Months **Contract* role. Please go through the same and let us know if you
have anyone matching the below role. Please send your responses to
*varun.j...@diverselynx.com*  with your
candidate resume and contact details.



*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*


*Title – **pySpark Developer with AWS EMR Experience*
*Location – **Portland, Oregon, USA*
*Duration – 8+ Months Contract*


*SKILLS REQUIRED : *

-  pySpark developer with AWS EMR experience

Spark, python, pyspark


*Technical/Functional Skills:*


Mandatory skills:

· 5+ years of experience in programming with python. Strong
proficiency in python

· Familiarity with functional programming concepts

· 3+ years of Hands on experience in developing ETL data pipelines
using pyspark on AWS EMR

· Hands on experience of XML processing using python

· Good understanding  of Spark’s RDD API

· Good understanding of Spark’s Dataframe and API

· Experience and good understanding of Apache Spark Data sources
API.

Experience of dealing with AWS S3 object storage from Spark



*Roles & Responsibilities:*



· Design, development and implementation of  performant ETL
pipelines using python API (pySpark) of Apache Spark on AWS EMR

· Writing reusable, testable, and efficient code

· Integration of data storage solutions in spark – especially with
AWS S3 object storage.

· Performance tuning of pySpark scripts.

· Need to ensure overall build delivery quality is good and on time
delivery is done at all times.

· Should be able to handle meetings with customers with ease.

· Need to have excellent communication skills to interact with
customer.

Be a team player and willing to work in an onsite offshore model, mentor
other folks in the team (onsite as well as offshore)



*If you are interested in this project, then kindly filled the details and
revert me back ASAP along with Visa Copy !! *



Name (As per SSN) :

Current Location: City/ State

Relocation:

Visa Status :

Contact Number:

Email ID :

Linkedin ID:  Prefererred :

Skype ID: needed!  :

SSN No (Last 4 digit) :

Skill set:

DOB(spell month please):

Currently on a project (Yes/No) :

Availability :

Available for webcam interview (Yes/No) :

Available for Face to Face interview(Yes/No) :

Any potential offer lined up (Yes/No)   :

Education: Degree, University and completion dates (Duration):

Best time for interview-Time Slots  :

Total IT exp:

Total Relevant exp:

Total US exp:













*Thanks and Regards,*

*Varun Jain*

*Diverse Lynx LLC*



Email is the best way to reach me…



*Email – varun.j...@diverselynx.com *





Diverse Lynx LLC |300 Alexander Park|Suite #200|Princeton , NJ 08540



“For our open jobs please visit Diverselynx Jobs

”





*“Note: Diverse Lynx LLC is an Equal Employment Opportunity employer. All
qualified applicants will receive consideration for employment without
regard to race, religion, color, sex, age, national origin or disability.
All applicants will be evaluated solely on the basis of their ability,
competence, and performance of the essential functions of their positions.
We promote and support a diverse workforce at all levels in the company.
This is not an unsolicited mail. If it is not intended for you or you are
not interested in receiving our e-mails please reply with a "remove" in the
subject line and mention all the e-mail addresses to be removed with any
e-mail addresses, which might be diverting the e-mails to you. We are
extremely sorry if our email has caused any inconvenience to you.”*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAGkmiz6F0F_%2BuPx723uj4uJBqUSGA%3DHb-CMXQEdAFXbMOzx%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] java j2ee developper

2017-02-21 Thread ajha . recruiter


 


*Client: Mphasis HP *
*Java** J2ee Developer*
*Location: Boston, MA*
*Duration: 6 month+ contract*
*Hire on phone and Skype*

7+ years experience

Required Skills for Senior Java Developer:
Bachelor’s Degree in Computer Science or equivalent
Strong Object Oriented Development experience with Java
Experience with SOAP and REST Web Services
AWS Experience
Jenkins experience
Maven/Ant experience
Apache Tomcat experience

Desired Skills (not required but you will get exposure to some of these):
Agile experience

 

Abhishek

IT Recruiter

*PRV Global services*

*Direct : 703-495-7578 | Fax: **877-690-0720* <877-690-0720>
*abhis...@prvglobal.com * : *www.prvglobal.com 
*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/bf610bf7-5138-4d18-b13e-176a7134011b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IOS Developer in Dallas, TX !

2017-02-21 Thread Abhishek ojha
*IOS Developer*

*Dallas, TX*

*6+ Months *



*Description:*

Designs and develops customer facing and internal business-facing,
self-service mobile applications for iOS mobile platforms that facilitate
business interactions and access to customer data.  Responsible for
estimating, programming, documenting, debugging and testing of multiple
business applications within the environment; interacts with IT staff and
business users as appropriate; develops solutions in accordance with
established Division and Group IT policies and architecture.



*Responsibilities for this Position Include:*

*KEY DUTIES*

   - Analyzes end user requirements and develops mobile applications that
   interface with existing systems.
   - Completes technical analysis, design, and coding for development and
   support initiatives.
   - Assists junior staff members with code reviews, design solutions and
   complex issue research.
   - Assists manager with resource allocation to development projects,
   manage around release schedules, and work with manager to prioritize
   deliverables.
   - Provides production support as needed for multiple applications.
   - Performs as a technical adviser on system architecture, level of
   effort estimates, project plans/ and timelines and internal practices.
   - Coordinates the review of specification, user sign-off process, and
   the development of user manuals.
   - Leads testing efforts by evaluating failed test cases and performing
   appropriate coding fixes, as well as supporting coding changes resulting
   from user acceptance testing.
   - Ensures that all code conforms to Greyhound software coding practices
   and standards and that all code is being properly tested.
   - Ensures system integrity and assists in installation of technological
   upgrades, implementation and training to support new programs/system.
   - Coordinates with Release Manager for deployment packages and release
   notes for deployment of applications.
   - Provides accurate and timely status reporting as needed, including
   task and time reporting.
   - Constantly learns and improves technical knowledge and expertise
   during software development.
   - Adheres to all Greyhound corporate guiding principles, processes,
   policies, standards and procedures.
   - Participates in and contributes to all phases of Delivery Methodology
   and Software Development Practices.
   - Has a passion for learning and staying updated on emerging trends and
   technologies.



*QUALIFICATIONS*

   - High School diploma or equivalent required.
   - Bachelor’s Degree in MIS, Computer Science, Mathematics or equivalent
   work experience strongly preferred. Relevant technology certification is
   encouraged.
   - 5 - 7 plus years of hands on experience developing, implementing and
   delivering application development solutions for either enterprise level
   projects or departmental projects.
   - 2 - 4 years of hands on experience developing, implementing and
   delivering mobile applications
   - Knowledge of key solution technologies including Objective-C, XCode,
   iOS SDK
   - Experience in Swift and Cocoa Touch is desired.
   - Experience in Web services (SOAP. REST)
   - Experience with various development / delivery methodologies, i.e.
   Agile, SDLC, RAD, etc.
   - Advanced knowledge of object-oriented concepts and design patterns.
   - Proficient understanding of code versioning tools such as Git, SVN, or
   TFS.
   - Understanding of Apple’s design principles and interface guidelines.
   - Deployed one or more applications to a public mobile app store desired.
   - Experience in mobile interface design and development
   - Knowledge of professional software engineering best practices for the
   full software development life cycle, including coding standards, code
   reviews, source control management, build processes, testing and support.
   - Demonstrate excellent verbal and written communications skills and
   effectively collaborates with other team members and project stakeholders.
   - Ability to estimate project deliverables within a 25% variance to the
   actual completion time.
   - Ability to effectively handle multiple tasks and manage workload based
   on project deadlines and priorities.
   - Excellent problem solving and troubleshooting skills.


*Thanks & Regards,*
*Abhishek Ojha*
*732- 837- 2138*
*ao...@sagetl.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAKpcopS1u8BMqeTN6VyzUBMDoMdCr28C-TGbOhDSydOZDTMoKA%40mail.gmail.com.
For more options, visit https://groups.g

[android-developers] Urgent Role : Scala Developer- 6 months with possible extension - San Francisco, CA

2017-02-21 Thread Priya Recruiter
Greetings !!




Hope  you  doing Great !!



This is Priya from  *InfoSmart Systems Inc*, please let me know if you are
interested and available for the below position. I would appreciate if you
can refer someone for this position.



*Title: **Scala Developer*

*Location :** San Francisco, CA*

*Duration:* *6 months with possible extension   *

*Visa : USC,GC and H1b *

*Experiences : More than 9+Years*



*MUST to have:*

   - *technologies such as Scala, Spark, Elastic search and HBase*
   - *Java, JBOSS, Spring, Unix shell scripting, Python, hive, Backbone JS
   etc. *
   - *Strong oral and written communication skills *
   - *Ability to work independently *
   - *Ability to work on multiple and often competing issues at the same
   time *





*Thanks & Regards,*



*[image: infosmart]*








*Priya InfoSmart Systems Inc Direct : (972) 607 3737 Fax : (972) 294 5430
Email : pr...@infosmartsys.com 
www.infosmartsys.com

*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABm%3DTobgaKOCZrAd5UU5PPCHR3w3kBdvvg2MJDxBk%3DSTavFVgA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP PM @ Nashville, TN

2017-02-21 Thread Shyamsundar
Hi,
Hope you are doing good.
Please find below job description and let do share me matched resumes
to *saiki...@2krpo.com
*

*Job title: SAP PM*

*Location: Nashville, TN*

*Duration: 12-18Months*

*Description:*

Project Management (7-10 years of PM Experience in an Enterprise Level
PMO).

Managed multiple SAP Implementations/Projects.

SAP Point-of-Sale Data Management.

Waterfall/Agile Methodology (Majority of projects are waterfall, if they
have some Agile it is a plus).

Retail vertical experience a BIG plus.


*Thanks,*

*Saikiran*

*saiki...@2krpo.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAF0v0_OrbHcvz0H5vh9vmJ4R4cfaO8cOcqTUYQYjuw-01gRAkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for Scrum Master for Juno Beach, FL

2017-02-21 Thread Umang Goswami
*Hi *
*Please lookup the below position and if you feel comfortable ,then please
send me your updated resume *



Role   :   Scrum Master

Location   :   Juno Beach, FL

Interview:   Phone and F2F

Duration  :   12+months



*End Client Domain: *Energy Sector

Provides formalized, continuing work direction and leadership to assigned
team(s) to ensure timely and effective project execution. Also responsible
for employee development, coaching and ongoing performance management.
Plans and directs the installation of Information Technology projects which
typically involve and impact multiple business areas



*Job Description: Essential Duties:*

· § Strongly serving and supporting the Product Owner and
Development Team in their quest to do everything possible to delight
customers

· § Ability to effectively facilitate Daily Scrum stand-ups,
backlog refinement sessions, Sprint planning, compelling Sprint
Reviews/Demos and effective Retrospectives

· § Providing all support to the team using a servant leadership
style and leading by example. This person should personify Scrum and Agile.

· § Guiding and Coaching the Scrum Team and organization on how to
use Agile/Scrum practices and values to delight customers

· § Guiding and Coaching both the Scrum Team and the Development
team on how to get the most out of self-organization

· § Guiding and Coaching both the Scrum Team and the Development
team on self-organizing to fill in the intentional gaps left in the
Agile/Scrum frameworks

· § Assessing the Scrum Maturity of the team and organization and
coaching the team to higher levels of maturity, at a pace that is
sustainable and comfortable for the team and organization

· § Removing impediments or guiding the team to remove impediments
by finding the right personnel to remove the impediment.

· § Building a trusting and safe environment where problems can be
raised without fear of blame, retribution, or being judged, with an
emphasis of healing and problem solving

· § Facilitating getting the work done without coercion, assigning,
or dictating the work

· § Facilitating discussion, decision making, and conflict
resolution

· § Assisting with internal and external communication, improving
transparency, and radiating information § Supporting and educating the
Product Owner, especially with respect to refining (aka grooming) and
managing the product backlog



*Required Skills/Experience:*

§ *First level Scrum Master certification (PSM I, CSM )*

§ Experience playing the Scrum Master role for at least one year for a
software development team

§ Good skills and knowledge of servant leadership, facilitation,
situational awareness, conflict resolution, continual improvement,
empowerment, and increasing transparency

§ Knowledge of numerous well documented patterns and techniques for filling
in the intentional gaps left in the Scrum approach (example: numerous
Burndown techniques, numerous Retrospective formats, handling bugs, etc.)

 § The ability to distinguish between what "is Scrum" what is "not Scrum"



*Preferred Skills/Experience (Any of these is a plus):*

* § Second level Scrum Master certification (PSM II, CSP)*

§ Experience playing the Scrum Master role for at least two years for a
software development team.

 § SAFe (Scaled Agile Framework) or LeSS (Large-Scale Scrum) experience

§ Experience being on multiple Scrum teams in a variety of different
contexts (different team sizes, different organizations, different
cultures, co-located vs. distributed, etc.)

 § Track record of continued and recent education in Scrum, including
training, conferences, user groups, self-study, etc.

§ Knowledge of other approaches discussed in the Agile space: XP, Kanban,
Crystal, FDD, etc.

§ Knowledge and/or experience with widely successful Agile techniques: User
Stories, ATDD, TDD, Continuous Integration, Continuous Testing, Pairing,
Automated Testing, Agile Games § Applicable knowledge of the technologies
used by the team

§ Experience applying a wide variety of well documented patterns and
techniques for filling in the intentional gaps left in the Scrum approach
(example: numerous Burndown techniques, numerous Retrospective formats,
handling bugs, etc.)

 § Previous experience as a collaborative leader

§ Excellent communication and mentoring skills













*Regards , *

*Umang Goswami*

*Technical Recruiter*

*VSG Business Solutions*

*Email ID :  um...@vsgbusinesssolutions.com
*

*Gmail ID : umang@gmail.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegrou

[android-developers] Hotlist - MPR Soft Inc

2017-02-21 Thread MPR Soft Inc
Hi,

Hope you are doing great!!

Please find the list our consultants available based on below skills/titles
and let me know if you have any suitable requirements on C2C.

*Salesforce Developer/Admin*
Candidate Name: Avinash V
Current location: VA
Relocation: Anywhere in USA
Work Authorization: H1B
Availability: Immediate

*Android Developer*
Candidate Name: Sujith Reddy
Current location: IL
Relocation: Anywhere in USA
Work Authorization: H1B
Availability: Immediate

*Java Developer*
Candidate Name: Sandeep M
Current location: Monroe, LA
Relocation: Anywhere in USA
Work Authorization: H1B
Availability: Immediate

*DevOps Engineer*
Candidate Name: Navya Y
Current location: CT
Relocation: Anywhere in USA
Work Authorization: H1B
Availability: Immediate

*Penetration tester*
Candidate Name: Mounika R
Current location: Warren, NJ
Relocation: Anywhere in USA
Work Authorization: EAD
Availability: Immediate

*Workday Consultant*
Candidate Name: Kavita S
Current location: NC
Relocation: No (looking for local projects)
Work Authorization: H1B
Availability: Immediate

Regards
Krishna
MPR Soft Inc
kris...@mprsoft.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BN3Z7vkvpQ_0-RNroeiSKoP5pAH7sfG6zRJ0VmTx89tqh6izg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for SAP Security Admin for West Chester, PA

2017-02-21 Thread Aman Sharma
*Hi *
*Please lookup the below position and if you feel comfortable ,then please
send me your updated resume *



Role   :   SAP Security Admin
Location   :   West Chester, PA
Duration  :   3-6 month contract
Interview:   Phone and F2F



*No H1b*





NEED- SAP Security Administration experience, experience with
administration as it applies to SAP ECC, BW, and GRC Systems

The ideal candidate will have a strong user administration background and
understanding of SAP operations with abilities to work with various
operating systems; should also be able create SAP roles in our complex,
inter-related SAP and non-SAP environments.  The position requires
familiarity with SAP administration as it applies to SAP ECC, BW and GRC
systems. The incumbent should be proficient with SAP Business Objects, and
understand the SAP change management system (Transport System).



*Requirements:*

   - Bachelors of Science in Computer Science and 4+ years of relevant work
   experience or equivalent experience.
   - 4+ years of overall Information Technology experience required.
   - 4+ years’ experience in SAP administration and/or SAP Security
   - Experience monitoring operations and supporting quality,
   high-performance business systems.
   - Knowledge of SAP change management system (STMS)
   - Demonstrated capabilities in presenting ideas written and orally
   within a cross-functional environment required.
   - Experience in the SAP product suite.

*Desired Experience:*

   - SAP analysis of production systems for audit related tasks. (
   inactivity, SOD conflicts, approvals, and owners for accounts)
   - Manage audit and compliance in SAP to ensure internal controls and
   approvals are properly documented.
   - Demonstrated ability to analyze, define, and recommend security
   concepts, processes, and continuously contribute to improvement to meet
   business needs
   - Experience creating, maintaining security, and authorizations across
   SAP modules for users.
   - General administrator responsibilities including creation of users,
   troubleshooting of ECC and BW security tasks



*Preferred Requirements:*

   - Strong understanding of SOX compliance as it relates to Segregation of
   Duty (SOD) across our integrated landscape.
   - Must demonstrate ability to be flexible and work analytically in a
   problem-solving environment.















Regards ,

Aman Sharma

Technical Recruiter

VSG Business Solutions

Email ID :  a...@vsgbusinesssolutions.com 

Phone: 302-261-3207 x 103

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANXTjGjmD4mQ4vAwbNus9f7C1RD4jHAsktMKESmcVoHHFbfmQQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: Required: UI/UX Developer at Richmond, VA.

2017-02-21 Thread Praveen
Hi,

I have an urgent requirement mentioned below. If you find yourself
comfortable with the requirement please reply back with your updated resume
and I will get back to you or I would really appreciate if you can give me
a call back at my contact number.







*Position: Senior **UI/UX Developer*

*Location: **Richmond, VA)*

*Duration: **Long Term Contract*





*Required Skills:*

Need Senio UI/UX Web Developer

Skills: Angular 1&2, Bootstrap, JavaScript, C#, SQL, REST APIs, Bullhorn
(if possible but not likely)









*Thanks & Regards,*



*Praveen Tiwari*

Senior Technical Recruiter

*Sage Group*

*W:*+ 732-767-0010 x  113 |Direct: 732-851-1637 | *F:* 732-749-8969 | *Email:
*ptiw...@sagetl.com

*Gtalk/yahoo/Skype: praveentj101*

[image: SageLogoC] [image:
cid:image004.jpg@01D26D7E.63B9BEF0]

This message contains information that may be privileged or confidential
and is the property of Sage Group. It is intended only for the person to
whom it is addressed. If you are not the intended recipient, you are not
authorized to read, print, retain copy, disseminate, distribute, or use
this message or any part thereof. If you receive this message in error,
please notify the sender immediately and delete all copies of this message.
Sage Group does not accept any liability for virus infected mails.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CADa58PRbKk08rn4V6bzOYzd%3DaBWJ3S9p46KT09r409V4veRg_g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement::: .Net Developer :: Chattanooga, TN

2017-02-21 Thread rahul goswami
Hi

Hope You're doing great!

*Job Title: .Net developer*

*Duration: 3-6 months*

*Location: Chattanooga, TN*



*Qualifications:*
Education • *A Bachelor’s degree in Computer Science or related field or
equivalent years of experience is required.* Equivalent years of experience
are determined as one year of technical experience for every year of
college requested.



*Experience • 5 - 7 years experience in systems analysis and programming
with .Net • SQL server experience *

*• Experience in the health insurance industry preferred*

• Knowledge of information technology concepts, application development
methodology, terminology and standards. • Demonstrated ability to lead,
organize and prioritize multiple assignments and associated resources.

• Demonstrated ability to interpret and translate technical and/or complex
concepts into information meaningful to team members and/or business
personnel Skills/Certifications • Excellent communication skills in
technical and non-technical forms are required • Proven analysis, design,
and coding skills, and demonstrated success in leading medium to complex
technology-base efforts. General Skills: *• Windows Presentation Foundation
(WPF) • eXtensible Application Markup Language (XAML) •
Model-View-ViewModel (MVVM) framework • Multi-threaded desktop applications
• Web API Preferred Skills: • Windows Communication Foundation (WCF) *




*Best Regards,*


*Rahul Goswamy **Sr. IT Recruiter*

*Yomp Software, Inc *460W 42nd St, Suite # 59G, New York, NY 10036 USA
*917-732-7354 X 121* || ra...@yompsoft.com || www.yompsoft.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAA0vNTGerG%3DPzPD5zriGSk5uQOFRPuKvMgaY_pJHG1vQoMKLjw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] availale consultants on bench

2017-02-21 Thread unicom srinivas
Hi,



This is *Srinivas* from Unicom Technologies Inc.,Hope you are doing great!



Below is my available consultants Hotlist. Kindly send the suitable
requirements and also add me to your mailing list.

send your mails to sr...@unicomtec.com  You can reach
me at 630-780-3299.





*TITLE*

*EXPERIENCE*

*CURRENT LOCATION*

*RELOCATION*

*STATUS*

Oracle Plsql/DBA

8+ years

CA

Open

H1B

Oracle Plsql

8+ years

CA

Open

H1B

Oracle Plsql

12+ years

WA

Open

H1B

QA Lead

12+ years

IL

IL

H1B

SQL DBA

10 years

NJ

Open

H4 EAD

Salesforce

7+ years

IL

Open

H1B

Java

10 + years

CO

Open

H1B

Pega/Oracle Plsql

7+ years

TX

Open

H4 EAD

Java

9+ years

FL

Open

TN

Performance

7+ years

CO

Open

H1B

PM

16 years

CA

FL

USC

Windchill

8  years

WI

Open

H1B



*Thanks & Regards*

*Srinivas *

*Unicom Technologies Inc., **Phone: 630-780-3299*


*S: 630-847-4845 *

*Fax: 1-866-291-2541 Mail: sr...@unicomtec.com 
Web: www.unicomtec.com
*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJDa6yE0q%2BzC7NfE5sBqStEB5YU-BKb%2Bd4hHjmUtCGuz3dvHag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] RE:- osition Title – Datacap Development Expert

2017-02-21 Thread durga prasad
*Position ID – 0183*

*Position Title – Datacap Development Expert*

*Organization – Minnesota Department of Human Services*

*Worksite Address – St. Paul. MN*

*Length of Project – 12+ Months (Extendable)*

*No. of Positions – 1*

*Interviews – Phone/Skype*



*Mandatory Qualifications:*



· Four (4) years of experience developing solutions with Datacap

· One (1) year of experience working with Datacap version 9.x.

· Five (5) years of experience integrating software with other
systems and databases.

*Desired Skills:*



· Consultant certified as an IBM Certified Solution Designer with
Datacap Taskmaster.

· Advanced experience with FileNet P8 Content manager.

-- 
durga

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CALA028aqYkfPr3hSbCPnkWdSHdd1bHDYC8ov0bkz6pWFm5Dz8Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] REQUIREMENT : “Oracle DBA " at Philadelphia,PA

2017-02-21 Thread Varun
*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*



Dear Recruiter,

Hope you are doing fine. We have an urgent requirement for   *Oracle DBA *at
 *Philadelphia, PA, USA* for a* 6+** Months **Contract* role. Please go
through the same and let us know if you have anyone matching the below
role. Please send your responses to *varun.j...@diverselynx.com*
 with your candidate resume and contact details.



*Title –**Oracle DBA *
*Location –*
*Philadelphia, PA Duration – 6+ Months Contract*


*EXPERIENCE REQUIRED : min 8 YEARS *

*SHARE YOUR UPDATED RESUME AT varun.j...@diverselynx.com
*


*SKILLS: *

· Technical Skills Database Administration

· Technical Skills Database management

· Technical Skills Database Technology


*Technical/Functional Skills:*


(1) A good knowledge of the operating system(s)

(2) A good knowledge of physical database design

(3) Ability to perform both Oracle and also operating system performance
monitoring and the necessary adjustments.

(4) Be able to provide a strategic database direction for the organisation.

(5) Excellent knowledge of Oracle backup and recovery scenarios.

(6) Good skills in all Oracle tools.

(7) A good knowledge of Oracle security management.

(8) A good knowledge of how Oracle acquires and manages resources.

(9) Sound knowledge of the applications at your site.

(10) Experience and knowledge in migrating code, database changes, data and
menus through the various stages of the development life cycle.

(11) A good knowledge of the way Oracle enforces data integrity.

(12) A sound knowledge of both database and program code performance tuning.



*If you are interested in this project, then kindly filled the details and
revert me back ASAP along with Visa Copy !! *



Name (As per SSN) :

Current Location: City/ State

Relocation:

Visa Status :

Contact Number:

Email ID :

Linkedin ID:  Prefererred :

Skype ID: needed!  :

SSN No (Last 4 digit) :

Skill set:

DOB(spell month please):

Currently on a project (Yes/No) :

Availability :

Available for webcam interview (Yes/No) :

Available for Face to Face interview(Yes/No) :

Any potential offer lined up (Yes/No)   :

Education: Degree, University and completion dates (Duration):

Best time for interview-Time Slots  :

Total IT exp:

Total Relevant exp:

Total US exp:

















*Thanks and Regards,*

*Varun Jain*

*Diverse Lynx LLC*



Email is the best way to reach me…





*Email – varun.j...@diverselynx.com *





Diverse Lynx LLC |300 Alexander Park|Suite #200|Princeton , NJ 08540



“For our open jobs please visit Diverselynx Jobs

”





*“Note: Diverse Lynx LLC is an Equal Employment Opportunity employer. All
qualified applicants will receive consideration for employment without
regard to race, religion, color, sex, age, national origin or disability.
All applicants will be evaluated solely on the basis of their ability,
competence, and performance of the essential functions of their positions.
We promote and support a diverse workforce at all levels in the company.
This is not an unsolicited mail. If it is not intended for you or you are
not interested in receiving our e-mails please reply with a "remove" in the
subject line and mention all the e-mail addresses to be removed with any
e-mail addresses, which might be diverting the e-mails to you. We are
extremely sorry if our email has caused any inconvenience to you.”*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAGkmiyyspYKo9XyaJqASunCK14GT-R1hkFujk9J%3DozZzcJgmw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Updated Hotlist

2017-02-21 Thread Karthik Akula


Hello!!!

 

 

Hope you are doing well


This is Karthik from WeWork Solutions Inc. *We have suitable candidates 
available for your client’s requirement.* Please forward your job 
requirements to akart...@weworksusa.com or you can reach me on my number 
*718-942-7108* for any further information.

 

*S.NO*

*Name*

*Experience*

*Skill*

*Current Location*

*Relocation*

*Visa*

1

Sravan

7 Years

Java Developer

MCLean, VA

YES

H1B

2

Sridhar

7+ Years

Java FullStack

New York

YES

H1B

3

Jacob

8 Years

Devops Engineer

Philly PA

YES

H1B

4

Shiva 

8+ Years

.NET Developer

Atlanta, GA

YES

H1B

5

Anil

12 Years

Devops/.NET

New York

NO

H1B

6

Mohan

8+ Years

.NET Developer

New Jersey

YES

GC

 

Kindly add akart...@weworksusa.com to your vendors list.

 


Thank You and have a Great Day!

 

Thanks & Regards,

*Karthik Akula*

*WeWork Solutions Inc.*

 

*Email:* *akart...@weworksusa.com *

*Phone:* *718-942-7108*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/37fb28a2-2dfb-4439-8a4a-26b4e8e5fc3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Scrum Master// MUST INTERVIEW ONSITE// Charlotte, NC

2017-02-21 Thread Priyanka Katiyar
Scrum Master

Coca Cola Bottling Consolidated- Charlotte, NC

MUST INTERVIEW ONSITE

*Type: *Contract


USC GC



*Summary: *

This position is for a seasoned professional having wide-ranging experience
and recognized as an advanced individual contributor, using professional
concepts and company objectives to resolve complex issues in creative and
effective ways.  As such the need for strong program management is critical
to address both the scoping, sizing, and definition of the solution is
required; as well as, the ability to then assume responsibility for the
implementation of the solution.  This candidate must be able to organize
and facilitate release & sprint planning, release & sprint retrospectives,
daily stand-ups and inter-team dependency meetings.



*The ideal candidate has:*

   - Technical roots, vast experience in software development with
   organizational and leadership traits to provide day to day project
   management
   - Software Development lead/manager background
   - Broader IT experience – someone that has dabbled in all arenas of IT
   so that they can serve as an advocate, mentor and coach
   - 10+ years of professional technical related experience with 2-3 years
   of SCRUM experience
   - Candidate must have held a recent (within the last 3 years) SCRUM
   Master role for at least of the 6 months in software development



ScrumMaster Certification (CSM) and/or Professional ScrumMaster (PSM)
Certification is preferred, but not required







Priyanka Katiyar

Technical Recruiter

Nityo Infotech Corp.

Direct: 609-378-1139

Email: priyanka.kati...@nityo.com

Gtalk: puja123h...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAETinPPPThfNRAH0rSRD4Jy7DmNv02L1T4jGGbaG9c_51-Q0QQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] JDE Database & OS Administration @ Fort Worth TX 76134

2017-02-21 Thread amit yadav
Hi,

Hope you are doing great!







*Job Description: Job Title* JDE Database & OS Administration Work Location
& Address* Fort Worth TX 76134 Contract duration (in months)*  6 Target
Start Date* 10 Feb 2017*
*Mandatory

Job Details:

Must Have Skills (Top 3 technical skills only) *
1. JDE Technical
2. AS400 object structure awareness
3. AS400 security
Nice to have skills (Top 2 only)
1. JDE security
2. Complex Showcase QueryExcel
Detailed Job Description:
Ability to work independently



2. Ability to analyze this ability is relied on heavily in assigned
tasks

3. EnglishSpanish required Portuguese a plus

4. JDE all modules

5. JDE security

6. Alcon environment structure

7. AS400 object structure awareness

8. AS400 security

9. AS400 Job Queues

10.  ControlM Exposure

11.  Complex Showcase QueryExcel Addin reporting system design and ability
to review existing work and convey current implementationTest script
building for implemen
Desired years of experience*:
Above 5 years
Education/ Certifications (Required):
Graduation
Top 3 responsibilities you would expect the Subcon to shoulder and execute*:
1. Ability to work independently
2. Ability to analyze this ability is relied on heavily in assigned tasks
3. . EnglishSpanish required Portuguese a plus
Will the candidate be client facing and/or working with business users?
Yes



*Best Regards,*

*Amit Yadav* | SYSMIND, LLC

Team Lead

[image:
ttps://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]



Phone: 609-897-9670 x 4009

Email: am...@sysmind.com

Gtalk: amitkumaryadav489

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAKAv6EQEknt8SJpK-PLqi03B7snZeLG_6V1P8hFFj%2BND8dEECQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Adobe AEM CQ | AEM 6.0 @ Irvine CA 92602

2017-02-21 Thread amit yadav
*Hi,*

*Hope you are doing great!*








*Job Title*  Adobe AEM CQ | AEM 6.0 Work Location & Address* Irvine CA
92602 Contract duration (in months)*  6 Target Start Date* 21 Feb 2017*
*Mandatory

Job Details:

Must Have Skills (Top 3 technical skills only) *
1. AEM
2. Java
3.

Detailed Job Description:
AEM development for Katana project in Capital Group Account.
Desired years of experience*:
Above 5 years
Education/ Certifications (Required):
BE
Top 3 responsibilities you would expect the Subcon to shoulder and execute*:
1. AEM development
2. Java Developer
3.



*Best Regards,*

*Amit Yadav* | SYSMIND, LLC

Team Lead

[image:
ttps://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]



Phone: 609-897-9670 x 4009

Email: am...@sysmind.com

Gtalk: amitkumaryadav489

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAKAv6EQ0ca5MrNEnWDeYDZhzM60Y_W2cLensNrTh8S88jYEa2Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] NEED: Middleware Admin @ Saint Paul, MN 55129 --- Contract

2017-02-21 Thread Martin Zeller
Hi,

This Is Martin Zeller from Agile Enterprise Solutions,

This is Reference for Following Position



* Please reply with Resume, Work Authorization , Rate & Contact Details
ASAP *



*Job Title:  Middleware Admin*

*Location:*  Saint Paul, MN 55129

*Duration:*  6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:Middleware Support, TOMCAT, WAS*



*Job Description:*



*Must Have Skills:*

1. Middleware Support

2. TOMCAT

3. WAS



*Nice to have skills:*

1. Automation

2. Middleware Admin



*Detailed Job Description:*

Assist in building and configuring middleware containers Tomcat

Support the middleware infrastructure during and after the application
rollout from WAS to Tomcat

Assist in creating support run books to be given to level 2 support

Assist in creating and validating automation scripting



*Top 3 responsibilities:*

1. Assist in building and configuring middleware containers Tomcat

2. Support the middleware infrastructure during and after the application
rollout from WAS to Tomcat

3. Assist in creating and validating automation scripting



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

Email: martin_zel...@aesinc.us.com||| www.aesinc.us.com

Gmail: martinzeller0...@gmail.com



*Note:* If you have received this mail in error or prefer not to receive
such emails in the future, please reply with *"REMOVE"* in the subject line
and the email id(s) to be removed.

All removal requests will be honored ASAP. We sincerely apologize for any
inconvenience caused.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJkGZ%2BxoiGp5yT08%3Dj5ZJqxXtXFkuq%2Bj68K_zfgU5hKfiewrdg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] NEED: Adobe AEM CQ Lead @ Irvine, CA 92602 --- Contract

2017-02-21 Thread Martin Zeller
Hi,

This Is Martin Zeller from Agile Enterprise Solutions,

This is Reference for Following Position



* Please reply with *Resume, Work Authorization , Rate & Contact
Details* ASAP *



*Job Title: Adobe AEM CQ Lead*

*Location:* Irvine, CA 92602

*Duration:* 6+ Months

*Interview Type: *Phone+ Skype



*Primary Skills:  AEM 6.0, Java*



*Job Description:*



*Must Have Skills:*

1. AEM 6.0

2. Java



*Detailed Job Description:*

AEM development



*Top 3 responsibilities:*

1. AEM development

2. Java Developer



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

Email: martin_zel...@aesinc.us.com||| www.aesinc.us.com

Gmail: martinzeller0...@gmail.com



*Note:* If you have received this mail in error or prefer not to receive
such emails in the future, please reply with *"REMOVE"* in the subject line
and the email id(s) to be removed.

All removal requests will be honored ASAP. We sincerely apologize for any
inconvenience caused.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJkGZ%2Bye73X7p17KS_9vCs-G39aMErugrwJex-ZJJVPe1CWyMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Required::::Documentum Developer - F2F Interview at Raleigh, NC

2017-02-21 Thread priyadarshani . s145


Hi, 

 

Hope you are doing Good! 

 

This is Priya Technical Recruiter form MSYS Inc. We have come across your 
profile on LinkedIn/Job Boards and we found your profile matching to the 
below job description. 


* Title: Documentum Developer - F2F Interview*




*  Location: Raleigh, NC Duration: Long term*

 

*Description:*

Responsibilities include:


   -   Design and programming of capture flows programs for scanned 
   forms using Captiva.
   - ·  Development of programs that store unemployment insurance 
   response data from clients in a database, and use web services to move 
   temporary stored data to the unemployment insurance Oracle database.
   - · Work with business users to design and develop capture flow 
   work processes and programs.
   
 

 

Required Skills

· Bachelor’s degree in information technology, computer science, or 
engineering

· Three or more years’ experience with Documentum

· Two or more years’ experience with ECM Captiva

· Two or more years’ experience with unemployment insurance 
applications and correspondence forms.

· Must have programming skills in one or more languages including: 
Java, C#, SQL, VB

· Government experience preferred.

· Ability to work in a team-oriented, collaborative environment.

· Proven organizational skills with the ability to 
prioritize/re-prioritize and resolve complex problems quickly in a high 
pressure and time sensitive environment.

 Thank you!!

Priya S.

Technical Recruiter

MSys Inc.,

Direct (972) 544 7798

pr...@msysinc.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e0e56ae2-a692-4682-a38a-f647c43206d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need: UI Lead @ Atlanta GA 30339

2017-02-21 Thread praveen sistla
Hi,

This Is Praveen sistla from Agile Enterprise Solutions,

This is Reference for Following Position



* Please reply with *Resume, Work Authorization , Rate & Contact
Details* ASAP *



*Job Title:  Java Consultant*

*Location:* Atlanta GA 30339

*Duration:* 6+ Months

*Interview Type: *Phone+ Skype



*Primary Skills:   Angular JS , UX , Java*

*Job Description:*



*Must Have Skills:*

1. Angular JS

2. UX

3. Java



*Top 3 responsibilities:*

1. Design and Development

2. QA Support

3. Pre and Post implementation support



Thanks & Regards,

Praveen Sistla
Agile Enterprise Solutions Inc
PH: 972-427-1806
E-mail:  praveen_sis...@aesinc.us.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CADHAxxvd0PkwiAPnHVf%2BRNXoO2ZGbLrJprV_%3DCKfcPf_zcnAfg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need: Java Consultant @ Houston TX 77079

2017-02-21 Thread praveen sistla
Note: We need strong experience on pl/Sql



Hi,

This Is Praveen sistla from Agile Enterprise Solutions,

This is Reference for Following Position



* Please reply with *Resume, Work Authorization , Rate & Contact
Details* ASAP *



*Job Title:  Java Consultant*

*Location:* Houston TX 77079

*Duration:* 6+ Months

*Interview Type: *Phone+ Skype



*Primary Skills:  J2ee, core java, pl/sql*

*Job Description:*



*Must Have Skills:*

1. J2EE

2. Core Java

3. PL SQL



*Top 3 responsibilities:*

1. Development

2. Testing

3. Interaction with multiple stakeholders



Thanks & Regards,

Praveen Sistla
Agile Enterprise Solutions Inc
PH: 972-427-1806
E-mail:  praveen_sis...@aesinc.us.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CADHAxxt%3DJ8prtmwz0FVitfV1J_emEOmt4FZbsuzPoLss%3D3st4g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Full Stack Developer - Irvine, CA

2017-02-21 Thread Sekhar Reddy
Hi,

*Sekhar* here from *METASIS INFORMATION,* one of our client has an opening
for *.Net Full Stack Developer.*

Below is the job description for your reference, do let me know your
interest.



*Role   : .Net Full Stack Developer*

*Location   : Irvine, CA*

*Start Date: ASAP*

*Duration  : 9 – 12 Months*



*primary technologies include Microsoft .Net (C#), Oracle, Angular JS*

*Experienced in .Net (C#), REST, Oracle/SQL Server, Angular JS. *

· Client is looking for "full stack" developers who can move
equally fast and reliably across front-end Web development, middle-tier
application & services, and database development.

· Very strong modern Web UI development experience is required.
Developers who have spent most of their career doing only back-end
development or server-based Web development who do not also have enough
strength in building modern browser-based Javascript-centric applications
will NOT be successful.  Successful developers would need to have good
experience building modern, responsive Web applications using HTML5, CSS3,
and Angular.JS to build and maintain moderate to complex line-of-business
Web applications.

· Solid C# .NET background (ASP.NET MVC, WebAPI, WCF, nUnit/xUnit)
is required in addition to the above.

· Client is using Oracle and SQL Server on the back end, so all
developers would need to be experienced in both of these.  Client intends
to use MongoDB as the database for future development, so experience with
MongoDB or other NoSQL databases (Cassandra, etc.) is a plus.

· Strong Agile/Scrum and communication skills

· Candidates should have at least 1 year experience in a Scrum team
and should understand the Scrum rituals and practices very well and be able
to articulate this knowledge during an interview.

· Communications skills and strong fluency in business English will
be vital.

· 3-5 plus years of technical experience in building large scale
Line of Business Web Apps

· Strong Object Oriented Design skills

· Solid understanding of modern development techniques i.e. REST,
Unit testing, TDD etc.

· Developers should have a good understanding of dependency
injection and automated unit testing/integration testing using frameworks
like NUnit/xUnit along with at least one .NET mocking framework (such as
Moq, Rhino, FakeItEasy, MS Fakes, etc.)  Developers should also be familiar
with automated unit testing for front-end/Angular.JS code using frameworks
like Jasmine/Karma or equivalent



*Thanks & Regards,*

*Sekhar*

*Email : sek...@metasisinfo.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BeU0sTuMhwiqMzaJCtpEucmXNK2g-6EC9xPju0PhkRqHfKPw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] DevOps Engineer with Informatica Exp.(Strong)@Charlotte, NC

2017-02-21 Thread Santosh kumar Nityo
Hi,



Hope you are doing Great!

I was going through your profile with reference to the job opening that I
have with my client at Location *Charlotte, NC*. This is an urgent fill and
the client is looking for *“P** DevOps Engineer with Informatica
Exp.(Strong)**. *I appreciate your quick response.



*Role:* *DevOps Engineer with Informatica Exp.(Strong)*

*Location: **Charlotte, NC*

*Work Duration:** Long Term*


*Job Description: Must Have Skills *
1.  Excellent knowledge on Informatica. Good hands on experience on data
integration, data warehousing, data migration and data management.
2.  Good experience in Data Stage. Knowledge of creating Logical design
(flow chart), Physical design (coding), Unit test, Performance Tuning
3.  Experience in implementing Continuous Integration and Continuous
Deployment (CICD).Work experience in DevOps tolls like GIT, SVN, Ant, MS
Build, Jenkins, Artifactory, uDeploy, JIRA, Sonar Qube, Fortify etc.



*If I'm not available over the phone, best way to reach me in email...*





[image: cid:image001.jpg@01D0BE16.B9DD7240]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

Desk No-609-853-0818 Ext-2170
Fax :   609 799 5746

kuntal.sant...@nityo.com
www.nityo.com


--

USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines |
Thailand  | UK | Australia / Zealand
--

*Nityo Infotech has been rated as One of the top 500 Fastest growing
companies by INC 500*
--

*Disclaimer:* http://www.nityo.com/Email_Disclaimer.html
--

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAG0Zfz1HC-dmAEAHPSrpCc7c4v%2B%2BN4Lu5EZJFwhbJzrYL7CrDg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need: Sr. Linux Administrator (GC & USC Only)

2017-02-21 Thread Aman Bhattacharya
Hello,

Please share resume to a...@resource-logistics.com

*Title:* *Sr. Linux Administrator*

*Location: Dallas, TX*

*Position:  Contract *

*Interview: Phone/Face to Face/Skype*



*Job description:*

· 10 years hands on experience with enterprise Linux environments,

· Excellent communication skills

· Ability to succeed under pressure and in fast paced environment

· Experience with clustering, replication, and other
high-availability and disaster recovery technologies

· Experience with multiple Linux OS flavours including Red Hat
(CentOS) and Ubuntu

· Experience or good understanding of VMware(ESX, vCenter, etc,.)

· Knowledge of HP and Dell server hardware

· Knowledge of SAN & NAS Storage technologies(3PAR and XIV storage
arrays)

· Experience using scripting languages for task automation (Shell,
etc.)

· Familiar with Disaster Recovery Procedures

· Adding and configuring external devices like SAN disks

· Should have good understanding of Global Load Balancer, Load
Balancer, F5, DNS, Firewalls, LDAP
Should have good understanding of high availability, DR & BCP solutions

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEDZ_pvdr%2B0TPUM5PEW_D_11JskjEKCHuTmYzfaCcsHBphq8yw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Developer II

2017-02-21 Thread Shekhar Chaudhary
*.Net Developer II*

Chattanooga, TN

Best rate is $40/HR All-Inclusive

GC, GC EAD or Citizen/OPT



Health Insurance experience required



   - A Bachelor’s degree in Computer Science or related field or equivalent
   years of experience is required. Equivalent years of experience are
   determined as one year of technical experience for every year of college
   requested.
   - 5 - 7 years experience in systems analysis and programming with .Net
   - SQL server experience
   - Experience in the health insurance industry
   - Windows Presentation Foundation (WPF)
   - eXtensible Application Markup Language (XAML)
   - Model-View-ViewModel (MVVM) framework
   - Multi-threaded desktop applications
   - Web API
   - Windows Communication Foundation (WCF)
   - Knowledge of information technology concepts, application development
   methodology, terminology and standards.
   - Demonstrated ability to lead, organize and prioritize multiple
   assignments and associated resources.
   - Demonstrated ability to interpret and translate technical and/or
   complex concepts into information meaningful to team members and/or
   business personnel
   - Excellent communication skills in technical and non-technical forms
   are required
   - Proven analysis, design, and coding skills, and demonstrated success
   in leading medium to complex technology-base efforts.




*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW9Fxkexjp9dEuAacHAaRJGF8N8xcPHXcbFesqsJogQKXg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Automation Selenium Engineer .Net Development - Only GC / Citizens / EADs - Sorry No H1bs & No OPTS

2017-02-21 Thread Addis Damour
Hi,



We have an Immediate *Contract Onsite Job Opening for Automation Selenium
Engineer .Net Development - Only GC / Citizens / EADs  - No H1bs & No OPTS*



*Only GC / Citizens / EADs  - Sorry No H1bs & No OPTS*

*Only GC / Citizens / EADs  - Sorry No H1bs & No OPTS*





*Please Note – This is a Contract Onsite Job Opening with No Expenses to be
paid by Client [No Travel, No Food, No Lodging etc] Please share me your
resume to **ad...@pvtechusa.com* 



*Let’s Connect Over **LinkedIn* *
– I have over 50 plus position to fill. *

*LinkedIn Email ID: **addisdam...@gmail.com* 

*https://www.linkedin.com/in/addisdamour*




*Details*



*Full Name - *

*Email Id - *

*Cell No - *

*Current Location - *

*Notice Period – *

*Currently in Project - *



*Skills*

*Yrs of Exp*

*Rate out of 10*

Automation Testing





Selenium





.Net Development





Webservices/API testing





Webdriver









*Automation Selenium Engineer .Net Development*

*Location: Minnesota *

*Candidate must be Green Card holder or US Citizen.*

Mandatory Skills Required:

· Strong Test Automation script creation, planning and execution

· Webservices/API testing

· Selenium Webdriver

· .Net/C# development



*Thanks With Regards*



Addis Damour 

Professional Vision Technologies Inc 

42180 Ford Road, Suite 306, Canton, MI 48187

Cell No. 734-666-6575

Desk No. (734) 329-5335 Ext. 103

Fax No. -734-249-6281

ad...@pvtechusa.com

www.pvtechusa.com

Let’s Connect LinkedIn 



*Disclaimer*: We respect your Online Privacy. This e-mail message,
including any attachments, is for the sole use of the intended recipient(s)
and may contain confidential and privileged information. Any unauthorized
review, use, disclosure or distribution is prohibited. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies of the original message. If you are not interested in receiving
our e-mails then please reply with a "REMOVE" in the subject line and
mention all the e-mail addresses to be removed with any e-mail addresses,
which might be diverting the e mails to you. We are sorry for the
inconvenience.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAokjasiZNDbZUFxVq7%3De96wz-LKjPMM1Qa9Kmy3A%2BEu4WYcFQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Load/performance tester

2017-02-21 Thread Shekhar Chaudhary
I have a contract to hire *Load/performance tester* job with my client in
Ohio.



6 months to hire



Visa: GC, GC EAD or Citizen



If you have anyone that would transfer after contract please let me know.



JD:



2-3+ years of experience as a Load/Performance Tester

MS Visual Studio enterprise for load/performance testing (C#)

*Visual Studio IS A MUST*



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW_9%3DM6V76ShmTx5b6OFOT%2BTgdw5vr0HvUyEaFmjOxdK2A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer - Virginia / DC - Only Citizens - Open for C2C

2017-02-21 Thread Addis Damour
Hi,



We have an Immediate *Contract Onsite Job Opening for Java Developer -
Virginia / DC - Only Citizens - Open for C2C*



*Only Citizens - Open for C2C*



*Please Note – This is a Contract Onsite Job Opening with No Expenses to be
paid by Client [No Travel, No Food, No Lodging etc] Please share me your
resume to **ad...@pvtechusa.com* 



*Let’s Connect Over **LinkedIn* *
– I have over 50 plus position to fill. *

*LinkedIn Email ID: **addisdam...@gmail.com* 

*https://www.linkedin.com/in/addisdamour*




*Details*



*Full Name - *

*Email Id - *

*Cell No - *

*Current Location - *

*Notice Period – *

*Currently in Project - *





Title: Java Developer

Location: Washington, DC or Richmond, VA



Must be US Citizen..



Job Description:

Need Java/J2EE developer with Struts, Spring, Hibernate skills

Experience in Java/J2EE with web services REST and SOAP technologies





*Thanks With Regards*



Addis Damour 

Professional Vision Technologies Inc 

42180 Ford Road, Suite 306, Canton, MI 48187

Cell No. 734-666-6575

Desk No. (734) 329-5335 Ext. 103

Fax No. -734-249-6281

ad...@pvtechusa.com

www.pvtechusa.com

Let’s Connect LinkedIn 



*Disclaimer*: We respect your Online Privacy. This e-mail message,
including any attachments, is for the sole use of the intended recipient(s)
and may contain confidential and privileged information. Any unauthorized
review, use, disclosure or distribution is prohibited. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies of the original message. If you are not interested in receiving
our e-mails then please reply with a "REMOVE" in the subject line and
mention all the e-mail addresses to be removed with any e-mail addresses,
which might be diverting the e mails to you. We are sorry for the
inconvenience.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAokjasx4L%3D2W%3DwJbEiW1oFa6vOxt5UCs7KnbNBBoOyegDgQ9w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Available Consultant HotList from “vTech Solution Inc.”

2017-02-21 Thread Nirmal Patel


Hello Associate,

 

Available Consultant HotList from “vTech Solution Inc.” So Send me 
requirement on nirma...@vtechsolution.com

Ph: (202) 241.2419 (D)

 

Name :- Kebede

 

Technology Skill :-  GIS Analyst / SQL DBA

 

Work Authorization :- Green Card Holder

 

Current Location :-  VA

 

Relocation :-   VA DC MD

 

Total Exp :-  16+

 

 

 

Name :- MARC B

 

Technology Skill :-  SERVICE NOW DEVELOPER/ BMC REMEDYDEVELOPER

 

Work Authorization :- U.S Citizen

 

Current Location :-  NJ

 

Relocation :-   EASTERN USA

 

Total Exp :-  17+

 

 

Name :- MARK H

 

Technology Skill :-  Sr. SharePoint Admin / project Manager

 

Work Authorization :- U.S Citizen

 

Current Location :-  CO

 

Relocation :-   Any- Where

 

Total Exp :-  22+

 

 

 

Name :- Donald

 

Technology Skill :-  Technical Writer / Trainer

 

Work Authorization :- U.S Citizen

 

Current Location :-  DC

 

Relocation :-   MD, DC, VA

 

Total Exp :-  22+ 

 

 

Name  :- Gbenga

 

Technology Skill :-  Sr. Project Manager (Agile, CSM, PMP)

 

Work Authorization :- U.S Citizen

 

Current Location :-  MD

 

Relocation :-   MD, DC, VA

 

Total Exp :-  12+

 

 

Name :- Andrew

 

Technology Skill :-  Data Server Administrator

 

Work Authorization :- U.S Citizen

 

Current Location :-  IA

 

Relocation :-   IA

 

Total Exp :-  10+

 

 

Name :- Ernest

 

Technology Skill :-  Sharepoint Admin / Architect

 

Work Authorization :- U.S Citizen

 

Current Location :-  AZ

 

Relocation :-   Houston, CA AZ NV

 

Total Exp :-  15+

 

 

 

 

 

 Name :- Adrain

 

Technology Skill :-  System Admin (CCNA Certified )

 

Work Authorization :- U.S Citizen

 

Current Location :-  Houston, TX

 

Relocation :-   Houston, TX

 

Total Exp :-  10+

  

 

*Thanks & Regards,*

 

*Nirmal Patel*

*Technical Recruiter*

 

*vTech Solution Inc.*

*You Seek, We Deliver**.s*

 

(202) 241.2419 (D)

866.733.4974 Fax

*r...@vtechsolution.us*

nirma...@vtechsolution.com

 

1100 H street, N.W. Suite 450,

Washington DC 20005

 

www.vTechSolution.com 


This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind vTech to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.

 

 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/862543b8-fb46-49e6-b870-168b2dbe3df3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] URGENT NEED !! C++ developer - St. Louis, MO

2017-02-21 Thread Shaan Malik
 Hi ,
Hope all is well..

I have an exciting new opportunity that I wanted to share with you and your
network. Our top client, located in the St. Louis, MO. is currently seeking
a C++ developer resource to join their organization. I have included a
complete job description below in case you or someone you know might be
interested in learning more.



*Role: C++ developerLocation: St. Louis, MODuration: 6+ Months Contract*

*ONLY EAD GC, GC, TN OR USC.*

Job description
We are seeking C/C++ developers with Telecom experience.
3+ yrs C/C++ experience
Software Documentation experience
Ability to use git, gerrit, github and gitlab

Experience W/ One Or More Of The Following:
Ubuntu 14.04/16.04
CentOS/RHEL 7.x
OpenSUSE
OpenStack experience is a plus
Bash/shell scripting preferred
Basic System Administration Skills Preferred

*Best Regards,*


*Shaan Malik - Talent Acquisition SpecialistAYR Global IT Solutions Inc. |*
1431 Opus Pl, Suite 110, Downers Grove, IL -  60515
Direct: (331) 481-6635 | Email: sma...@ayrglobal.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAAMJd8ww4%2B-j3S8hLN0YiM-uGN4UNk9wfnk%3D_rJoOkc2PGSW5Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone than F2F Interview:Sr. Hadoop Administrator|Charlotte, NC

2017-02-21 Thread Neha K
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: Sr. Hadoop Administrator*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Charlotte, NC*

*DURATION:6 MONTHS*

*START :ASAP*





*Job Overview:*





*Daily you will:*

· Install, configure and administer Cloudera clusters (both Cloud
and on premise)

· Conduct performance tests as new users are added

· Manage all data files available in the HDFS

· Configure HIVE and Oozie to store metadata in Microsoft SQL
Sevrver

· Interact with developers, PMs, end users and architects

· Perform ongoing administration of the Hadoop infrastructure

*Environment:*

· *(Direct report)* Reporting directly to the Director over the
group

· *(Company size) *One of the Charlotte's largest financial
companies

· *(Hours) *Regular 8-5pm M-F with no weekends or on call

· *(Dress code) *Business casual

· *(Work culture) *Professional yet collaborative environment where
you’ll be able to interact with everyone from developers to QA to C level
employees

· *(Location) *Uptown area of Charlotte NC

*Qualities of a Top Candidate:*

· *(Top characteristic):* Expert level knowledge of Hadoop

· (*Can't miss quality):* Excellent communication skills and the
ability to translate highly technical terms to end users and business
personnel

· (*Technical knowledge): *SME level knowledge of Hadoop and it’s
ecosystems (HIVE, SQOOP, OOZIE), strong understanding of the Cloudera
platform

· *(Soft Skills) *Strong collaborative skills, ability to
communicate with wide range of users, creative mentality to provide
solutions to complex problems

*Benefits of working with Brooksource:*

· Constant communication and updates with your Brooksource
Recruiter. Every 48 hours you will get a personal update on where you stand
in the process

· No games or tricks. We believe in a direct, honest
and transparent recruiting process

·  Intelligent conversations, our recruiters are technically
trained and have complete understanding of the technical aspects of the
positions



Thanks,







*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 |Email:n...@apetan.com

*Mail *: 72 van reipen ave pmb#255, Jersey City, NJ 07306 |

*Corp. Office:*  15 Union Avenue,  office # 6,  Rutherford, New Jersey
07070 |

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAOMeN-t%2BgXzWUmGp7H5M60ghRvF9v%3DOoP9vfc_ZHu8k%2BzmjaUg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP FI Analyst with Hana @ Houston TX

2017-02-21 Thread ANUDEEP
*Title : SAP FI Analyst with Hana*

*Location : Houston TX*

*Duration : 12+ Months*



*Skills*: SAP, PHP, python, SQL, XML, T-SQL, TOAD, Agile, analytical,
Analytics, BI, Business Process, data modeling, Design, EIM, ETL, Excel,
FiCo, HANA, Project Management, SAP FiCo, SAP HANA, SSIS, Tableau, data
analysis, Angular, master data management, data profiling



Expert level Central Finance, SAP Finance, HANA developer Need, Information
Technology has an immediate opening for a Data Design Lead in its Data and
Analytics team.

The team works closely with the business to proactively develop solutions,
deliver training, and understand the current and future technologies needed
to understand data.

*Work environment*:

The work environment is fast paced and dynamic. Individuals will be
handling multiple activities in a team as well as individual contributor
environment. Primary functions: data architecture, data analysis and
design, data standardization, data quality management, reference and master
data management, data integration, data governance

*Primary Deliverables*:  Data architecture, data flow, logical models,
physical source data models, data profiling reports and data audits, data
definitions, data taxonomy, data insights, meta-data, data lineage, *data
cleansing services Activities: *data modeling, data audit, detailed data
design, define rules, establish master data solutions, define hierarchies
and affiliations, profile analyze assess data quality, design data quality
management procedures, clean and correct data quality defects, establish
data governance



*Preferred candidate should: *Demonstrate critical thinking, analytical
skills, and employ judgment to offer thoughtful, concise input toward
resolutions of problems.

Be able to translate data requirements into business processes and reverse
engineer business processes into data requirements

Comprehension of  DevOps and Agile development and application to data
centric architecture and solutions

Strong communication and interpersonal skills with strong English
proficiency

Leadership skills needed to successfully promote ideas, coordinate work
activities, and plan deliverables within a project team.

Minimum Bachelor’s Degree in Engineering Technology, Computer Science, or
closely related field.

Be able to easily communicate both to the Business as well as to the
technical.

*Be able to set expectations and to follow deadlines Technical Competencies*
:

Advanced expert database handling languages

Expert in data modeling (physical and logical), ER diagrams, data
dictionary, normalize/denormalize, agile data modeling

*Expert in data manipulation tools such as:* SSMS, SSIS, TOAD, Access,
Excel, Info Steward, Data Services, SAP SDI / SDA

Practical skill sets in BI and Data visualization tools is desirable

Some knowledge of other programming languages and ability to write code
(e.g.: .NET, Angular, python, XML) is desirable

Working knowledge of ETL

Working knowledge of SAP

Working experience in integrating SAP to non-SAP systems together

Basic Project Management and Business Process modeling

A minimum of *5 years’ experience in the SAP FiCo module, including
understanding in Data Management and Governance*

Advanced competency in the *T-SQL language*

Experienced in handling/integrating large volumes of data



*Preferably (or Desirable) a Good to Expert level of knowledge in: *

SAP Central Finance

SAP HANA Modeling and/or HANA EIM

SAP Data Services (Data Extract, Data Profiling, de-duplication)

Main SAP FiCo tables

Tableau



*Thanks *

*Anudeep | Anblicks | www.anblicks.com *

*14651 Dallas Parkway, Suite 816, Dallas, TX-75254*

*anudee...@anblicks.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJOb5BbAkrynME7bZsfiCjtCy04b2xUgTOoTYht-t%2BT03%2BYGWg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Informatica Developer

2017-02-21 Thread Ashish Kumar
Hi,
Hope you are doing great!!

Please find the requirement below , If you find yourself comfortable with
the requirement please reply back with your updated resume and I will get
back to you or I would really appreciate if you can give me a call back at
my contact number 609-897-9670 *3527

*Title: Informatica Developer*

*Location: **Norfolk, VA*

*Interview:* *face to face*

*Duration: 12+ Months *


*Skills Required:*



Must Have Skills

1. Informatica

2. SSIS

3. SSRS


Nice to have skills (Top 2 only)

1. Healthcare domain

2. Excellent communication



Job Description:

Top 3 responsibilities you would expect the Subcon to shoulder and execute*:
1. Data Analysis
2. Reconciliation Reports
3. Identification of test scenarios

*With Best Regards,*





*Ashish Kumar* | SYSMIND, LLC

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

*Trainee Recruiter*

Phone: 609-897-9670 x3527

Email: ashi...@sysmind.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAKD8LG%2BHn%2Bh09JTq7Y8%2BCmqg08phLMieh%3Db-c4tJR6R2T3PLVg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle / Fusion Middleware

2017-02-21 Thread sammy
Oracle / Fusion Middleware

Location:

Infosys

Columbus oh

Requirement

· Oracle 12C / Fusion Middleware

· Services Management – API Management experience – any product

· iPaas Concepts

*With Regards..**?*

Sharmishtha Rawat


Systems America, Inc.

3130 Crow Canyon Place Suite 425 San Ramon, CA 94583

Sr. Technical Recruiter|Direct: 408-789-8768
Email: sam.ra...@systemsamerica.com  web: http://www.systemsamerica.com/


[image: Logo]


 *P*Please consider the environment before printing this e-mail!



Disclaimer*:* If you wish to be removed from this mailing list, please
reply with "REMOVE" in the subject line.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAP3QAUq-Td4uCkMK3ohU1xObG%2BKdEzpScNdk3_Sbg9Odyb-uPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle 12C Fusion Middleware Consultant / Contract

2017-02-21 Thread tejasri surapaneni
Hi,



*Position:  Oracle 12C Fusion Middleware ConsultantLocation: Columbus,
OHDuration: 6+ Months Contract*



*Job Description:*



Requirement

· Oracle 12C / Fusion Middleware

· Services Management – API Management experience – any product

· iPaas Concepts


*Tejasri Surapaneni (Teju)*

Desk No-609-853-0818 Ext-2162
tejasri.surapan...@nityo.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAD4JY0%2BA8r5GZ7J%3D4TQDndf_H5e13mTyXts%3DveA0mXR80tS0Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] FlashLight application - Orientation problem

2017-02-21 Thread developa012


Hello,

I am creating Flashlight Android App..and facing below problem..Please guide me 
...

*when i press button in potrait mode Flash light is goes on and when I rotate 
to landscape mode flash light goes off..*


Code is below - 



package com.example.admin.finalflash;
import android.content.DialogInterface;
import android.content.pm.PackageManager;
import android.hardware.Camera;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;

public class MainActivity extends AppCompatActivity {

ImageButton imagebuttonon, imagebuttonoff;
public static Camera cmr;
Camera.Parameters parameters;

boolean isFlash = false;
boolean isOn = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

imagebuttonoff = (ImageButton) findViewById(R.id.imagebuttonoff);
if 
(getApplicationContext().getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH))

{

cmr = Camera.open();
parameters = cmr.getParameters();
isFlash = true;

}

//setting onclicklistner on off ie red imagebutton..
imagebuttonoff.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (isFlash)
// if your mobile support flash light

{


//if flash light is not on
if (!isOn) {

imagebuttonoff.setImageResource(R.drawable.onswitch); 
//replace offswitch image with onswitch image.

parameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);//also set on flash 
torch parameter..
cmr.setParameters(parameters);//by using object  cmr.
cmr.startPreview();
isOn = true;// now flashlight is on..ie true


} else {
//exactly opposite as above ie as switch on..ie how to off flash light..
imagebuttonoff.setImageResource(R.drawable.offswitch);

parameters.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
cmr.setParameters(parameters);
cmr.stopPreview();
isOn = false; // now flash light is off..

}
} else { // if your mobile does not support flash light..

AlertDialog.Builder builder = new 
AlertDialog.Builder(MainActivity.this);
builder.setTitle("Error"); // this will set title for error 
message...
builder.setMessage("Flash light not available"); // will 
display message
builder.setPositiveButton("ok", new 
DialogInterface.OnClickListener() {//so that you can click on "ok"..
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss(); // so application is dismiss
finish();
}
});


AlertDialog alertDialog = builder.create(); //this will 
shows dialog box..which is showing above error message..
alertDialog.show();

}

}
});


}


@Override
protected void onDestroy() {
super.onDestroy();
}

@Override
protected void onPause() {
super.onPause();

// on pause turn off the flash
cmr.stopPreview();
}

@Override
protected void onRestart() {
super.onRestart();
}

@Override
protected void onResume() {
super.onResume();

// on resume turn on the flash
if (isOn)
cmr.startPreview();
}

@Override
protected void onStart() {
super.onStart();

// on starting the app get the camera params
cmr.startPreview();
}


@Override
protected void onStop() { // this will stop out flash light..
super.onStop();
if (cmr != null)

cmr.release();
cmr = null;

}

@Override
protected void onSaveInstanceState(Bundle outState) {
//outState.getBoolean("mode", false);
super.onSaveInstanceState(outState);
outState.putBoolean("mode", isOn);

   }
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
   super.onRestoreInstanceState(savedInstanceState);
isOn = savedInstanceState.getBoolean("mode");

}

}

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-de

[android-developers] Mini MBA in Strategic Planning ماجستير التخطيط الاستراتيجي المهني المصغر والممنوح من جامعة ميزوري – الولايات المتحدة الأمريكية مكان الانعقاد : المملكة المغربية - كازابلانكا موعد ا

2017-02-21 Thread Arab Sara
*  الدار العربية للتنمية الادارية *

*تقدم*

*Mini MBA in Strategic Planning*

*ماجستير التخطيط الاستراتيجي المهني المصغر*

*والممنوح من جامعة ميزوري – الولايات المتحدة الأمريكية*

*مكان الانعقاد : المملكة المغربية - كازابلانكا*

*موعد الانعقاد : من 15* * الى 26 يوليو  2017 م*

*بهدف : *

*التعرف على الأساليب العلمية والعملية الحديثة المستخدمة فى عملية التخطيط
الإستراتيجى، تنمية المهارات فى ممارسة الأساليب الحديثة لتحقيق الكفاءة
والفعالية فى مجال التخطيط الإستراتيجى للمنظمة، مساعدة الإدارة على تطبيق
إستراتيجيتها من خلال فاعليتها فى ترجمة الخطط الإستراتيجية عبر مجموعة
الأهداف التشغيلية القابلة للقياس والتى تحكم سلوك الإدارة وإتجاهات أدائها،
يعقد هذا البرنامج المهني ليعرض في اطاره العام الى أساليب التخطيط
الإستراتيجى، إعداد الخطة الإستراتيجية، قياس الأداء المتوازن وفقا للمنظور
المعاصر، الإستراتيجيات الإدارية وأساليب تحليلها وتقييمها، تطوير الأداء
الإقتصادى والمؤسسى لمؤسسات القطاع العام والحكومى، التميز فى الأداء المؤسسى،
دور القيادات الإدارية فى تحسين جودة الأداء المؤسسى، أساليب الرقابة على
الخطة الإستراتيجية، التخطيط والمتابعة وتقييم الأداء، تخطيط ومراقبة الإنتاج
فى ضوء المعايير والمتغيرات العالمية**.*

*مستهدفين في ذلك :*

*وكلاء الوزارات ورؤوساء مجالس الإدارة ومديرو العموم ومديرو إدارات التخطيط
والتطوير والمتابعة والمرشحون لشغل تلك الوظائف وكل ذات الصلة.*



*تأكيد المشاركة*

*يتم إرسال خطاب المشاركة الرسمى او تعبئة النموذج المرفق موضح بة أسماء
المرشحين – مناصبهم الإدارية -  اسم النشاط – طريقة سداد رسوم المشاركة ( كاش
اول أيام التدريب او بتحويل بنكى قبل بدء النشاط)وصورة من تذكرة الطيران **علماً
بأن رسوم الاشتراك شاملة الاقامة  *



*علي فاكس رقم *0020237800573 او0020235866323 *اوعلي *

*بريدي الإلكتروني**saragw...@gmail.com* 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAONgEr1LQfszcrqRcRo2da_TeLJKQYSYmuB64VmGgLg3ZtGxNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] FullStack Java Developer :: NYC, NY and San Jose, CA

2017-02-21 Thread Yagya Gupta
Hi Team,

Please share the resume for below candidate.
*(do not send less than 10 year exp. guy)*

*Position: FullStack Java Developer*

*Location: NYC, NY and San Jose, CA*

*Duration: Contract*



*Job Description:*

· 10+ year’s hands-on strong programming experience in JAVA,
Hibernate, spring.

· Development of strategic systems using service oriented
architecture primarily in Java.

· Expertise in Front-end technologies include JavaScript and
AngularJS and NodeJS.

· MVC, Multi-threaded server-side development.

· 6+ years data modeling and SQL experience.

· Experience with at least one NoSQL Database (Apache Cassandra) is
a plus.

· Solid experience with development of interactive web applications
(HTML, JavaScript, AngularJS).




*Thanks & Regards, *

*Yash | Assistant Manager | Pro-Tek Consulting |*

*y...@pro-tekconsulting.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHOdh5C1hvpzuomdmJK0J1hTvR1OQEZjUh0eJMfmHboBqEL-Pw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Need: C++ developers with Telecom - St. Louis, MO - 6+ Months Contract

2017-02-21 Thread Kaazmi Kahn
Hi folks,
Hope all is well..

Please share your consultant resume to *kk...@ayrglobal.com
*



*Role: C++ developers with Telecom.Location: St. Louis, MODuration: 6+
Months Contract*

*ONLY EAD GC, GC OR USC.*

*Job description*

*We are seeking C/C++ developers with Telecom experience.3+ yrs C/C++
experience*
Software Documentation experience
Ability to use git, gerrit, github and gitlab

*Experience W/ One Or More Of The Following:*


*Ubuntu 14.04/16.04CentOS/RHEL 7.xOpenSUSE*
OpenStack experience is a plus
Bash/shell scripting preferred
Basic System Administration Skills Preferred


*Best Regards,*

*Kaazmi Kahn - Recruiter*
*AYR Global IT Solutions Inc.*
*1431 Opus Pl, Suite 110, Downers Grove, IL -  60515*
*Direct: (281) 670-9343 | Email: kk...@ayrglobal.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANBLWA8_k_cUke5ZyAW7L41rHO%3DiqktS35a0seQG78kMmMuVYg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer//Must have TANF public assistance application or related public assistance applications

2017-02-21 Thread Priyanka Katiyar
*End client name: Health Group *

*Duration– 6 Month Contract*

*Location: – Charleston, West Virginia *

*Interview mode– Fine with Skype *

*Rates: $50/hr c2c *



*– Java Developer *



*NOTE: – Candidates MUST have at least 1 FULL YEAR OF  TANF public
assistance application or related public assistance applications (ex. SNAP)*



Five (5) years of  programming experience on large scale systems, including
working directly with customers to define their needs and product outputs
satisfying those needs in a pre-determined time frame;
- Three (3) years of J2EE programming experience with the last six (6)
months using Core Java, EJB, MVC Architecture, Design Patterns & JSPs;
- Two (2) years of programming experience in writing Services and Ul
components;
-
*One (1) year of experience with public assistance programs such as TANF,
SNAP and Medical Assistance; *- One (1) year of experience working in
Operations and Support






Priyanka Katiyar

Technical Recruiter

Nityo Infotech Corp.

Direct: 609-378-1139

Email: priyanka.kati...@nityo.com

Gtalk: puja123h...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAETinPN0m6OODTd%2Bw8i7DAqfJU39hfjcuE%2BwV2OtZ1pFO7d32w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Today Interview and start ASAP !! Data Modeler - EDEN PRAIRIE-MN

2017-02-21 Thread Richard Shaw
*Role:  **Data Modeler *
*Location: EDEN** PRAIRIE-MN*
*Duration: 6+Months Contract to Hire*

*Visa: USC & GC*

*Job Description:*
*What skills/attributes are a must have?*
-5+ years of Data Modeling experience
-7+ years of experience in the Information Technology profession
-7+ years working with RDBMS
-7+ years of Oracle knowledge/experience
-7+ years of analytical skills and capable of influencing on technical
issues
-Ability to manage multiple projects simultaneously
-Broad knowledge of relational database technologies

*What skills/attributes are nice to have? *
Health Case Domain Knowledge
Agile Experience

*Best Regards,*

*Richard Shaw - IT Recruiter*
*AYR Global IT Solutions Inc. *
*1431 Opus Pl, Suite 110, Downers Grove, IL -  60515*
*Email: rs...@ayrglobal.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BHf1r%2BW%2Bd845F%3D9RDqZB5FMBCuXirRH8kLLXErkawLFTLa_UQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mini MBA in Strategic Planning ماجستير التخطيط الاستراتيجي المهني المصغر والممنوح من جامعة ميزوري – الولايات المتحدة الأمريكية مكان الانعقاد : المملكة المغربية - كازابلانكا موعد ا

2017-02-21 Thread sara ali
*  الدار العربية للتنمية الادارية *

*تقدم*

*Mini MBA in Strategic Planning*

*ماجستير التخطيط الاستراتيجي المهني المصغر*

*والممنوح من جامعة ميزوري – الولايات المتحدة الأمريكية*

*مكان الانعقاد : المملكة المغربية - كازابلانكا*

*موعد الانعقاد : من 15* * الى 26 يوليو  2017 م*

*بهدف : *

*التعرف على الأساليب العلمية والعملية الحديثة المستخدمة فى عملية التخطيط
الإستراتيجى، تنمية المهارات فى ممارسة الأساليب الحديثة لتحقيق الكفاءة
والفعالية فى مجال التخطيط الإستراتيجى للمنظمة، مساعدة الإدارة على تطبيق
إستراتيجيتها من خلال فاعليتها فى ترجمة الخطط الإستراتيجية عبر مجموعة
الأهداف التشغيلية القابلة للقياس والتى تحكم سلوك الإدارة وإتجاهات أدائها،
يعقد هذا البرنامج المهني ليعرض في اطاره العام الى أساليب التخطيط
الإستراتيجى، إعداد الخطة الإستراتيجية، قياس الأداء المتوازن وفقا للمنظور
المعاصر، الإستراتيجيات الإدارية وأساليب تحليلها وتقييمها، تطوير الأداء
الإقتصادى والمؤسسى لمؤسسات القطاع العام والحكومى، التميز فى الأداء المؤسسى،
دور القيادات الإدارية فى تحسين جودة الأداء المؤسسى، أساليب الرقابة على
الخطة الإستراتيجية، التخطيط والمتابعة وتقييم الأداء، تخطيط ومراقبة الإنتاج
فى ضوء المعايير والمتغيرات العالمية**.*

*مستهدفين في ذلك :*

*وكلاء الوزارات ورؤوساء مجالس الإدارة ومديرو العموم ومديرو إدارات التخطيط
والتطوير والمتابعة والمرشحون لشغل تلك الوظائف وكل ذات الصلة.*



*تأكيد المشاركة*

*يتم إرسال خطاب المشاركة الرسمى او تعبئة النموذج المرفق موضح بة أسماء
المرشحين – مناصبهم الإدارية -  اسم النشاط – طريقة سداد رسوم المشاركة ( كاش
اول أيام التدريب او بتحويل بنكى قبل بدء النشاط)وصورة من تذكرة الطيران **علماً
بأن رسوم الاشتراك شاملة الاقامة  *



*علي فاكس رقم *0020237800573 او0020235866323 *اوعلي *

*بريدي الإلكتروني**saragw...@gmail.com* 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CADSPL_sWoCqeV%3D%3D-r8Wew1EOHmwYNhwBDBtT6VtYBZAfFEPgQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: MuleSoft Consultant, Thousand Oaks, CA

2017-02-21 Thread aman tanwar
Share Resume on *ama...@nityo.com *

*Positions: MuleSoft Consultant*


* Location: Thousand Oaks, CA Duration: 12+ months*

*Summary:*

1.   An expert with architectural and leadership capabilities.
2.   An expert with experience in Mule ESB - on prem, CloudHub and
Mulesoft API Manger.
3.   Admin role capabilities.
4.   Additionally, require Platform Development and API certification.

*Thanks & Regards*
* Aman Tanwar*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEMs_z5dkDiUj1_V1m96pbRXA2NnSViFku2y4HP%2Bk1Uk474Cww%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer

2017-02-21 Thread Shekhar Chaudhary
*Good Morning,*

We have a new Java requirement that is a straight 12 month contract! ONLY
accepting candidates who are CURRENTLY LOCAL to Minnesota!!!

City: Ramsey, Minnesota
Length: 12 month contract

Must have:
• Full-stack development experience
• Maven 3.x
• Java 7/Java 8
• JavaEE (Tomcat/Jetty preferred)
• Spring 4.x/Spring-Boot
• MySQL/Oracle database experience + able to write SQL and design table
structures
• Front end development experience (HTML, CSS, AJAX, jQuery)
• Strong XML (schemas, JAX-B, namespaces, parsing, etc.)
• Web services (REST)
• Build tools (Jenkins, Bamboo experience)
• Git/BitBucket multi-branch team development
• Excellent communication skills (written & spoken)

Nice to have:
• Eclipse Neon development IDE
• AngularJS / ECMAScript front end experience
• Docker/deployment
• AWS experience (deployment, monitoring)
• Unit test frameworks, Spock
• Atlassian tools (Jira, BitBucket, Bamboo, Confluence)
• Scrum/Sprint-based development
• Experience working with remote/offshore teams and team members
• JWT authorization tokens
• SAML/OAuth2 security experience

10+ years professional experience

Thank you for your help!

Thanks and have a great day.



*Regards*

 *Shekhar Chaudhary*

*Where Commitment Is A Passion*
*Lead-Healthcare Resource Executive,TEK Inspirations LLC*

*469-242-2490* <469-242-2490> | *shek...@tekinspirations.com*
 | *14138 Badlands Dr, Frisco, TX 75035*

*P* *Let's Go Green... think before you print!*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAGaXMW9q1%3DNri0adsxnJHYKzxAGrqGDvSxeLQ1zyYePRTkLZjA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP SSO Consultant for San Francisco, CA only for EAD GC or GC or Citizen

2017-02-21 Thread Harry Smith
I have an urgent position for SAP SSO Consultant, kindly send the updated 
resume ASAP.


Phone/Skype


only  EAD-GC or GC or Citizen


Location: San Francisco, CA
Duration: 8 month+


Job Description:


We need someone with at least 10 years SAP experience.


We are looking into implementing SSO for SAP 3.0 for our SAP GUI and UI5 
interface users.


Thanks & Regards

Harry Smith
Sales Recruiter
WiltonIT System
Ph - + 1 315 512 2245 Ph. 347-713-7078
Email - harry.sm...@wiltonit.com
Website: www.wiltonit.com
LinkedIn: https://www.linkedin.com/in/neil-hunter-026a8a121


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a7a314cb-2d99-4acf-bea4-edb837daa112%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Back-end Developer with NodeJs__Need Urgent with 9+ Profile only

2017-02-21 Thread Bharat Chhibber
Hello,

Hope you are doing well.

This is Bharat from Nityo Infotech. Please find the JD below and if you
have any consultant available then please let me know ASAP at
bhara...@nityo.com.



*   Back-end Developer*:

*Location Indianapolis*

*Contract *

*Duration 6 months plus *







*Back-end Developer*: Participates in the estimation of activities, owns
technical implementation of the story and responsible for the design,
build, and unit and integration testing for new/modified features. The
Back-end developer has a keen focus to detail through ensuring the
architecture, logic and information needs are implemented through code and
the user’s experience is accurate and performant

oExperience with:

oSignificant development using NodeJS (2.0) with associated frameworks
such as HapiJS

oCreating scalable JSON/Swagger based micro-service ecosystems that
integrates with multiple platforms, applications and other micro-services
at a global scale

oModern security protocols such as OAuth, JSON Web Tokens, Kerberos,
TLS/SSL

oFluent with SQL and NoSQL databases such as Redis, PostgreSQL, OData,
RDF

oBuilding solutions in a cloud hosted and DevOps container based
infrastructure such as Heroku, or Amazon AWS with associated PaaS and
monitoring offerings

oAutomated tooling for unit testing and documentation

oDeveloping to consume structured and unstructured content optimized
for multiple devices


--

[image: Description: cid:image001.png@01CB85A7.EC3D8B00]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Regards*



*Bharat Chhibber*
Desk : 6098530818 Extn 2111

Fax : 609 799 5746
*bhara...@nityo.com *


--

USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines |
Thailand  | UK | Australia / Zealand
--

*Nityo Infotech has been rated as One of the top 500 Fastest growing
companies by INC 500*
--

*Disclaimer:* http://www.nityo.com/Email_Disclaimer.html
--

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEmgVe17hwAJg8Wuz66_R8N6jvDvsLX%3DK2XT_N0vfCjaHsMiQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Hiring - Healthcare Business Systems Analyst @ NJ

2017-02-21 Thread nanda kishore
Hi,

Hope you are doing good!!!



This is Nanda from Deegit Inc. We do have an urgent Position for *Healthcare
Business Systems Analyst at NJ*. Please find the requirement below for your
review



*Role: Healthcare Business Systems Analyst*

*Location: Newark NJ*

*Duration: 6+ Months*



*Job Description:*

Resource will have direct interaction with Senior IT Leadership,
Operational Business Owners, third party development vendors, and internal
IT development departments.

Must be an exceptional communicator who effectively conveys verbal and
written information in a clear and concise manner.  Resource must be
self-motivated with a high regard for accountability of their work and able
to motivate stakeholders to drive outcomes.  Will require a proven ability
to organize, lead, and execute necessary decisions while operating under
pressure in complex situations. The individual must be a resourceful team
player and excel at building trusted relationships with stakeholders.

Dependable, responsible contributor committed to excellence and success.

Extensive knowledge and business acumen of the health insurance industry.
Optimal resource will have experience leading and implementing government
mandates and health care management related projects.



*Job Description:*

• Primary deliverables and activities for this position may include,
although not limited, to the following:

• Business Requirements Documents

• Technical Requirements Documents

• Requirements Traceability Matrix

• Gathering and preparing solution based estimates

• Use Cases

• Test Plans/Test Cases

• Activity Diagrams

• Process Flows

• High Level Solution Diagrams (short of architecture)

• Gap Analysis

• Defect/Root Cause Analysis

• Conducting JAD sessions

• UML

• Data Mapping Documents



*Required experience:*

• Minimum 4 - 6 years as a business system analyst

• Greater than 3 -  4 years in the health insurance industry working with a
Health Plan

• Must have product implementation experience

• Proficiency in Health Care product types

• Proficiency in Health Care terminologies

• Proficiency in Health Care Management

• Knowledge of healthcare regulations and mandates (State and Federal)

• Should be highly knowledgeable regarding various health care provider
types

• Affordable Care Act implementation experience preferred

• Blues experience preferred, including ITS knowledge

• Mandate experience required (BCBSA, Federal, State)

• NASCO experience preferred

• Medicare/Medicaid knowledge preferred



*Required skillset*

• Excellent Communication skills

• Excellent Soft skills

• Excellent BSA skills



*Preferred:*

• Worked in State and Federal Mandates

• Must have product implementation experience

• Proficiency in Health Care product types

-- 

Kind regards,

Nanda Kishore | Technical Recruiter









*DeegitTM Inc* | Technology Consulting



1900 E Golf Rd., Suite 925 | Schaumburg, IL 60173



*Phone*: (847) 440 2436 Ext. 392



Email: na...@deegit.com



Skype:nanda.neoarden...@gmail.com

www.deegit.com



The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPeGz-S_Hq_J0Tu38TJBJMMbOheNWGw%3DQTPK-5Ys1YV%2B%2BcJAvw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: HP-UX Linux Administrator at Englewood, CO

2017-02-21 Thread AAYAN RAJ
Hi ,



Hope you are doing great!



Please review the following Job Description and share updated resume if you
find comfortable for this position...



*Role: HP-UX Linux Administrator*

*Location : Englewood, CO*

*Duration: Long Term*




*Job Description *

Role & Responsibilities



•   Experienced in Production Server Environment.

•   Handling Data center operations

•   Documentation skills

•   Vendor Management

•   Design, Migration and upgradation

•   Handling escalated incidents

•   Participating in Change review meetings

•   Reporting and dash boards



Profile: Level-3 HP-UX System Administrator

•   Supporting escalated tasks/incidents.

•   Strong expertise in LVM,OS,S/W, Patch Management

•   High Availability / BCP design, review &  implementation

•   Expert in Virtualization technologies

(nPar,vpar,IVM)

•   HP DRD, Ignite server, HP Perf view

•   HP SIM

•   Capacity Planning

•   Change Management

•   Vendor Management

•   Expertise in automation and reduction of manual efforts thru
Scripting/tools



Technical Skills Required

•   Key skills required: (in the order of priority: min 2)

o  HP-UX

o  AIX

o  Solaris

o  Linux

•   MCSG, IVM,nPar,VPAR,HP Perf View,DRD,SIM

•   Ignite

•   Shell scripting









Regards,

*Aayan Raj* | SYSMIND, LLC

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

*Trainee Recruiter*

Phone: 609-897-9670 x 5107

Email: aay...@sysmind.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2Beoea1w17_bWYYvhNCBVJJrkHErphEtkdMtDxoY5sPnX2fQxA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: HP-UX Linux Administrator@ Englewood, CO

2017-02-21 Thread satish kumar
Hi ,



Hope you are doing great!



Please review the following Job Description and share updated resume if you
find comfortable for this position...



*Role: HP-UX Linux Administrator*

*Location : Englewood, CO*

*Duration: Long Term*



*Job Description *

Role & Responsibilities



•   Experienced in Production Server Environment.

•   Handling Data center operations

•   Documentation skills

•   Vendor Management

•   Design, Migration and upgradation

•   Handling escalated incidents

•   Participating in Change review meetings

•   Reporting and dash boards



Profile: Level-3 HP-UX System Administrator

•   Supporting escalated tasks/incidents.

•   Strong expertise in LVM,OS,S/W, Patch Management

•   High Availability / BCP design, review &  implementation

•   Expert in Virtualization technologies

(nPar,vpar,IVM)

•   HP DRD, Ignite server, HP Perf view

•   HP SIM

•   Capacity Planning

•   Change Management

•   Vendor Management

•   Expertise in automation and reduction of manual efforts thru
Scripting/tools



Technical Skills Required

•   Key skills required: (in the order of priority: min 2)

o  HP-UX

o  AIX

o  Solaris

o  Linux

•   MCSG, IVM,nPar,VPAR,HP Perf View,DRD,SIM

•   Ignite

•   Shell scripting







*Satish Kumar* | SYSMIND, LLC
*Technical Recruiter*

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

Phone: 609-897-9670 x 2152

Email: sati...@sysmind.com

Gmail: satishsysmi...@gmail.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHxR9GazocxRaUfMcpK-6qxmo_Dr5RAZeG47Su-icbiRPetAnA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] (USC OR GC NEEDED) Salesforce Developer/Admin @ Charlotte, NC

2017-02-21 Thread ANUDEEP
*Title : Salesforce Developer/Admin*

*Location: Charlotte, NC*

*Contact Length: 12 - 18 months*



*NEED USC OR GC*



*Mode of Interview (no travel compensation): 1st round phone, potential 2nd
round phone and 3rd round in person (maybe skype/webex for non-local
candidates, but please try for local candidates first!!). if they know they
like them before, manager may not require in person interview. *



*Position Summary and key responsibilities (day to day job summary):*

•  Participates in design, development and
implementation of application design activities,  programming, and
deployment activities

•  Lead Salesforce Administration efforts which address
SFDC Release impacts, product maintenance, and enabling Salesforce product
enhancements

•  Responsible for components of complex engineering
and/or analytical tasks and activities.

•  Ensure all internal processes, procedures, and
policies are effectively enforced on Salesforce platforms.

•  Serves as a fully seasoned/proficient technical
resource; provides tech knowledge and capabilities as a team member and
individual contributor.

•  Will work closely with business partners and
technology systems owners to define requirements for POC initiatives,
projects, information management analysis, analytical reporting
deliverables, business intelligence tasks, and ETL solutions.

•  Will serve as a Salesforce and technology subject
matter expert; able to provide and communicate complex technology solutions
across differing audiences including technical, managerial, business
executives, and/or vendors.

•  Leads the resolution process for complex problems
where analysis of situations or data requires an in-depth evaluation of
various components.

•  Exercises judgment within broadly defined practices
and policies in selecting methods, techniques, and evaluation criterion for
obtaining results.



*Required Skills (must have to be minimally qualified):*

•  Bachelors Degree: Computer Science, Information
Technology, etc

•  Minimum 5+ years of experience in an application
developer role with Salesforce.com

•  Salesforce Advanced Administration Certification

•  Salesforce Platform Developer Certification

•  Proven experience delivering multiple full lifecycle
Salesforce.com implementations

•  Strong technical foundation including: 5+ yrs
experience with advanced structured programming - APEX, Force.com, .Net,
Java, SOA

•  Strong knowledge of data warehouse, multiple
database platforms, and ETL expertise

•  Ability to comprehend client requirements and
provide effective business solutions; Works with leads to transform and
develop new requirements into designs, development approaches and
implementation.

•  Effectively work with management, on-site/off-site
development staff to accomplish project deliverables

•  Experience with AGILE/SCRUM methodology and processes

•  Strong communication/interpersonal skills both
written and verbal and the ability to quickly form meaningful working
partnerships.

•  Work well under pressure. Manage multiple
priorities, be proactive, and deliver quality results under aggressive
deadlines.

•  Self-starter, good aptitude, Problem Solver and
someone who is open to learning new technologies

•  Strong analytical capabilities



*Additional Info from Manager:*

They use the Eclipse tool. It is a plus if they come from a .NET background
rather than Java. Additional tasks the devs will be performing:  Integrating
widgets into Salesforce. JMS and experience to subscribing to and posting
messages to an anchor application.



*Thanks *

*Anudeep | Anblicks | www.anblicks.com *

*14651 Dallas Parkway, Suite 816, Dallas, TX-75254*

*anudee...@anblicks.com *

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJOb5BYVU8acS1tVn_E-Vmfh0tK%2Bas78cwFzQkOEbKubba6r7w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >