[android-developers] Automate SVG import

2016-12-01 Thread Thomas W
Hi all,
  We have a legacy Android project using drawables in the respective 
drawable folders for mdpi, hdpi, etc., We are planning to remove the PNG 
files and transition to SVG. The SVG Import described here 
 creates 
the drawables xml from the svg. Is there a way to run this tool from 
command line so that we can automate the conversion process. We have a lot 
of files, so doing it manually is tedious.

Thanks. 

-- 
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/051c593b-7b3d-43b0-8bb6-0f9ca914cbf2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP BW HANA TRAINING

2016-12-01 Thread pk s


Hi All,

Greetings from #primarkinfotech 

!!!

We are Conducting #SAP 

 BW 
HANA Demo 3rd Dec Saturday(Tomorrow)…

 

https://docs.google.com/forms/d/e/1FAIpQLSfxMCBMGHs79j9RPbqy9SdMSteILRJQKEMXz40cceVknOyztA/viewform

https://goo.gl/forms/k9iu4F93mvMZJl3M2

 Primarkinfotech offers classroom,online,Corporate sap bw hana  online 
training in Hyderabad by 13+ years Expert,Live Projects,Free DEMO’s In 
Hyderabad Ameerpet,we are provding not only training best consulting also 

Aditya Enclave, Annapurna Block, Near Maitrivanam, Mumbai Hwy, Sanjeeva 
Reddy Nagar, Ameerpet, Hyderabad, 

www.primarkinfotech.com

train...@primarkinfotech.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/d1cc363f-1248-4055-894d-35322d8f978a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] GoogleApiClient with Web login

2016-12-01 Thread Akashdeep Patel
Hi,

Is it possible to get an instance of "GoogleApiClient", if I am using 
Google Web login. After the Web login, I have Access token and Refresh 
token with me. So can I use these values to generate an instance of 
GoogleApiClient.

Thanks

-- 
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/29a2497d-d836-44f6-a1b3-32084dc1ac62%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Promoting my new App

2016-12-01 Thread Sumit Gupta
I have created new innovative chess related app. M afraid i am unable to 
market it properly. The name i thought also seems to be not compatible with 
SEO. 
https://play.google.com/store/apps/details?id=com.allers.halfchess.engine 
How can i get big numbers in downloads? They say if your app is good you 
need not to market or bother for SEO and ASO, but i see my graph going down.

-- 
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/4132df78-2f57-42ec-906c-e3ee8d3cad95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Deleting item in recylerview

2016-12-01 Thread Chie Paliza


I got an error in adapter.getRef(position).removeValue();


FATAL EXCEPTION: main
 
java.lang.ArrayIndexOutOfBoundsException: length=12; index=-1
 at 
java.util.ArrayList.get(ArrayList.java:306)
 at 
com.firebase.ui.database.FirebaseArray.getItem(FirebaseArray.java:52)
 at 
com.firebase.ui.database.FirebaseRecyclerAdapter.getRef(FirebaseRecyclerAdapter.java:150)
 at 
com.example.maecea.ipon4.Expenses$3$1$2.onClick(Expenses.java:281)
 at 
android.support.v7.app.AlertController$ButtonHandler.handleMessage(AlertController.java:157)
 at 
android.os.Handler.dispatchMessage(Handler.java:99)
 at 
android.os.Looper.loop(Looper.java:137)
 at 
android.app.ActivityThread.main(ActivityThread.java:4745)
 at 
java.lang.reflect.Method.invokeNative(Native Method)
 at 
java.lang.reflect.Method.invoke(Method.java:511)
 at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
 at 
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
 at 
dalvik.system.NativeStart.main(Native Method)


viewHolder.mView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

AlertDialog.Builder builder = new AlertDialog.Builder(Expenses.this);
builder.setMessage("Gusto mo ba talaga burahin ito, katulad ng 
pagkalimot niya sayo?").setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() 
{
@Override
public void onClick(DialogInterface dialog, int which) {

adapter.getRef(position).removeValue();
adapter.notifyDataSetChanged();
//Intent NotesIntent = new Intent(getApplication(), 
Notes.class);
//startActivity(NotesIntent);
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog dialog =builder.create();
dialog.setTitle("Expenses");
dialog.show();

}
});

-- 
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/27684c87-c38c-4e63-9f2f-66f62aca2f81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] hi please let me know this.

2016-12-01 Thread leonardo
i sale the apps in google play store. my threshold is 100% reach in 
november 10.
And i wonder when google send me my earning.
Thanks for your answer.

-- 
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/b84991d2-4276-40ca-944e-a7e7f001f3bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android v6.0.1 SMS directory location

2016-12-01 Thread Ben Bartolomucci


On Thursday, December 1, 2016 at 4:36:13 PM UTC-6, Ben Bartolomucci wrote:
>
> Android v6.0.1 SMS directory location
>
> Can someone copy & paste the exact path? What is the name of the folder?
>
> Is the file structure defined by Google? Samsung? or AT? I own Samsung 
> Galaxy S7
>
> Not sure how soon this question will be answered or when I'll check back 
> on this forum
>
> Goal: I just want to be connect the cell phone to PC andsearch SMS chat 
> logs for specific data like you can with wild card searches in Windows OS
>
> Please drop an Email: the.italian.paradox@gmail 
>
>

-- 
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/d42879f2-934e-4c50-a21f-dcadf97b6627%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IMMD NEED: Sr QA Tester in Downtown Washington, DC

2016-12-01 Thread Mohd Taher
Hello,
Please share your consultant resume to tah...@usmsystems.com

Sr QA Tester
Downtown Washington, DC
Long Term Contract

*Must have: SQL, Mobile Testing, Web service, AEM/CQ5*
*Need EAD, GC, TN or Citizen Only!!*

Below is the job description:
Backend SQL experience especially with complex joins. – must have
MySQL database is what they use here to that is preferred
Mobile Apps testing (Note: this is different than testing on mobile
devices)-must have
Ability to read and interpret Java code – must have
Testing on different browsers, mobile devices, services testing (eg. SOAP
UI, Postman) – must have
Worked in an Agile methodology – must have
Worked with JIRA – basic/intermediate knowledge
Flexible, fast learner in a fast paced environment where extra hours and
possibly some weekend would be needed – must have
Ability to write test cases - preferred
Testing Content Management Systems (Adobe AEM/CQ5 experience preferred, but
there are several different content management systems on the market) –
THIS IS A MUST HAVE
Selenium Automation nice to have

Best Regards,

Mohammed Taher
US IT Recruiter
Direct: 703 349 4237
USM Business Systems
Chantilly, VA 20151, USA.

-- 
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/CAL4ROq73M8JTzz5BF%3D3t3aCgEFivK3%3D%2Bga_t84sOFufNENEBCQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement for Micro Strategy Admin at Atlanta, GA, NJ

2016-12-01 Thread satish kumar
Hi



Hope you are doing great,



*Please review the following Job Description and share me Details below if
you find comfortable for this position...*



*Title: **Micro Strategy Admin*

*Location : Atlanta, GA, NJ*

*Duration: 12+ Months Contract*



*Note: Passport Number Mandatory.*



*Job Description:*

Installing and Configuring Micro Strategy 9.x/8.x, Micro Strategy Desktop,
Micro Strategy Web, Micro Strategy Mobile, Micro Strategy Intelligence
Server.Experience with full enterprise applications migration from MSTR
9x/8x to MSTR 10x/9x.Scale the processing servers to fulfill scheduled jobs
and adhoc requests.Meta data recovery and back up, implement
security.Upgrade the content from MSTR 8x/9x to 9x/10x.Distribute the
upgraded content across nodes/clusters/multiple servers for efficient
performance.Configuring DB connections on MSTR Servers

- Teradata, Aster, Big Data, Hive, Oracle etc.Technical resolution for
Micro strategy environments, including trouble shooting server
errors.Vendor Mgmt, Performance Mgmt.Micro strategy 10x/9x/8x

- 5 yrs with hands on experience.Oracle 9i, 10g, 11i

 - 3 yrs Windows 2012 ServerRed Hat Linux 6.2/6.5

 - 3 yrs Apache/Tomcat/Web Logic/JBoss

 - 3 yrs Unix Shell Script

- 3 yrs Bourne Shell

 - 3 yrs Korn Shell Script

- 3 yrs PL/SQL







*If Interested please fill following details *



 *Full Name *









*Contact Number *









*Email Id *









*Current Location *









*Visa Status (visa expiration date)*









*Passport Number*









*Availability to start  (End date of project)*









*Available for interview (timing)*









*Rate Expectation :*









*Date of Birth*









*Overall IT Exp *









*Overall US work Exp*









*Relevant Experience as per requirement*









*Skype Id*









*Employer detail*









*Current project status(finish/working)*









*Reference – 1*











*Reference - 2*











*   Education*

*Start Year*

*Passing Year*

*University *

*Percentage*

*Bachelors in: *









*Masters in: *

























*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/CAHxR9GZevzLfusnRCEkjEvbSqzv6FU6ZcMGLib0BfQXHd%2B3wtQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android v6.0.1 SMS directory location

2016-12-01 Thread Ben Bartolomucci
Android v6.0.1 SMS directory location

Can someone copy & paste the exact path? What is the name of the folder?

Is the file structure defined by Google? Samsung? or AT? I own Samsung 
Galaxy S7

Not sure how soon this question will be answered or when I'll check back on 
this forum

Goal: I just want to backup search SMS chat logs for specific data like you 
can with wild card searches in Windows OS

Please drop an Email: the.italian.paradox@gmail 

-- 
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/035f4860-00e1-4642-9bc3-33400b9427e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement for Hadoop Admin at San Jose, CA

2016-12-01 Thread satish kumar
Hi



Hope you are doing great,



*Please review the following Job Description and share me Details below if
you find comfortable for this position...*



*Title: Hadoop Admin*

*Location : San Jose, CA*

*Duration: 12+ Months Contract*



*Note: Passport Number Mandatory.*



*Requirements:*

· Good Unix skills including access based on user/groups for access
management

· Good Unix skills to cover monitoring and tracking
jobs/resources/issues/debug

· Good Hadoop ecosystem skills including SPARK, SQOOP, Java and
Python ü SQL and Database skills to connect and verify data in source
system i.e. Oracle, Teradata etc.

· Good communication, coordination and documentation skill with
attention to detail Scope of WORK:

· Access Management o Managing access to Hadoop data. This
leverages UNIX based security using user/group and sudo access to hadoop
data. For current environment it involves mapping between CEC user and
Hadoop owners/group/dataset. Additional new Hadoop related group are added
to cater to specific subset of access requirement.

· Data Lake Job Monitoring

· Monitoring of Data lake jobs to ensure timely execution as well
as fixing minor problem/debugging/RCA/logging cases/follow up with GIS/Dev
to fix issues.

· These jobs pull external data and monitoring extends to those
external areas also.

· These jobs use Hadoop ecosystem including SPARK/SQOOP and Java.

· Data Transformation Job Monitoring

· Monitoring of Data Transformations jobs to ensure timely
execution as well as fixing minor problem/ debugging/RCA/logging
cases/follow up with GIS/Dev to fix issues.

· Some of these jobs pull external data and monitoring extends to
those external areas also.

· These jobs use Hadoop ecosystem including SPARK/SQOOP and Java.

· GIS Interaction and Issues to resolution

· Working with GIS team and providing support to client team for
day to day operation as well as closure and management updates for Issues.

*If Interested please fill following details *



 *Full Name *









*Contact Number *









*Email Id *









*Current Location *









*Visa Status (visa expiration date)*









*Passport Number*









*Availability to start  (End date of project)*









*Available for interview (timing)*









*Rate Expectation :*









*Date of Birth*









*Overall IT Exp *









*Overall US work Exp*









*Relevant Experience as per requirement*









*Skype Id*









*Employer detail*









*Current project status(finish/working)*









*Reference – 1*











*Reference - 2*











*   Education*

*Start Year*

*Passing Year*

*University *

*Percentage*

*Bachelors in: *









*Masters in: *

























*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/CAHxR9GYeKvYMtYa6G0n2Wwb_17NN%2B%2BU7wfQ1MuEiYowh61bQsw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Req - SAP Consultant With TSW / TD - San Diego, TX

2016-12-01 Thread rahul . virtualrecruiter
Hello,

Greetings!

Hope you are doing good!!!


We have an excellent opportunity with our direct client. Kindly go through 
the below position and revert to me with your updated resume

US CITIZENS & GREEN CARD / EAD  and H1B can apply for this position


Job Title : SAP Consultant

Location : San Diego, TX

Duration : 6 - 9 Months.

IM: Telephonic / Skype


Position 1: SAP IS Oil with hands on experience in TSW (Trader's and 
Scheduler's Workbench) Ticketing


Position 2: SAP IS Oil with hands on experience in TD (Transportation & 
Distribution) Shipment, Costing and LETRA



Thanks & Regards


Rahul B

Sr Recruiter 

ra...@virtualrecruiters.co

http://www.virtualrecruiters.co/

-- 
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/8e49da81-6b7d-442d-ac51-57e7be02b094%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] RE: Please note my new Email ID

2016-12-01 Thread Sirisha Lakshmi


Hi 

Hope you are doing great.

Sirisha here.  I have a new email address and wanted to let you know about 
it. 

My old email address was s...@mansaiinc.com

My new email address is anu...@akvarr.com

Please only use my new email account from now on.  Thanks!

 

 

Thanks & Regards,

Lakshmi Anusha

-- 
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/3aed532e-61ae-450d-a7cc-811e415c785c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] URGENT REQ **** CLOUD AZURE ARCHITECT *** TX

2016-12-01 Thread tejasri surapaneni
hI,





*Position: Cloud / Azure ArchitectLocation: Houston, TXDuration: Long Term
Contract*

*Job Description:*



1.   Architecture: Knowledge of Architecture Principles, methods and
tools. Architecture Framework Experience like IAF, TOGAF etc., Business
Architecture, Logical Architecture etc.

*Key Technical experience:*

a.   Experience in solutions based on Azure PaaS

b.  Experience on Azure components like Azure Stream Analytics, Azure
API apps, Event Hubs, SQL Azure

c.   Experience in designing cloud based solutions



2.   Design Knowledge and Solution Design Methods

3.   High Impact Communication


*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/CAD4JY0K-%3De0VbJ2e9wvzw8OckRtbrmNvXjDm0zrkhrYqkiKSGw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] URGENT NEED: Sr Java Developer with Grails Exp in TX

2016-12-01 Thread Mohd Taher
Hello,
Please share your consultant resume to tah...@usmsystems.com

Sr Java Developer with *Grails *Exp.
Austin, TX
Long term contract

*Need EAD, GC, TN or Citizen Only!!*

Top Three Skills:
-6+ years experience Java web application full stack development
-at least 6 months of experience using Grails (previously known as groovy
on rails circa 2006). Grails is an open source framework for development.
-6+ years experience with relational and document databases (Oracle, SQL
Server, MongoDB)
-6+ years experience working with Spring framework for java dev.

Best Regards,

Mohammed Taher
US IT Recruiter
Direct: 703 349 4237
USM Business Systems
Chantilly, VA 20151, USA.

-- 
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/CAL4ROq5GWDob0W9aB1VDJwq2Cv5b0z%3DEn6HVztpvwatX3caGRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need || Device Driver Engineer || Santa Clara, CA.....Only GC/USC

2016-12-01 Thread swamil singh
Hi,


Hope you are Doing well...!!!



I have urgent requirement for below position. Please go through the job
description and if you are interested kindly let me know. Please revert me
on swam...@sysmind.com



*Role*: Device Driver Engineer

*Location: *Santa Clara, CA

*Experience*: 9+ Years

*JD:*
 Good C and ARM assembly language skills
• Experience developing low level software (such as low level device
drivers for PCIe, DMA and similar peripherals) that interacts with the HW
• Experience with embedded OS’s (ThreadX) preferred
• Good debugging skills – experience using ARM DStream/Lauterbach
debuggers, Logic Analyzers
• An ideal candidate would have previously worked on Chip/Platform bring
up.
• Good knowledge of multi-core ARM processors.

-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

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



Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

Hangout: swamil.sysm...@gmail.com

Website: www.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/CAP_aUSzBvRVAUtOm2HUUe38v%3DKLQtx8su4snR_3wOq%2BDHDfWWQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need----SENIOR .NET DEVELOPER----EAD OR GC OR CITIZENS ONLY--Locals Only

2016-12-01 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



I have an urgent requirement from one of my esteem client, I will
appreciate if you can have an eye on the below requirement and send me your
consultant updated profile ASAP.


*SENIOR .NET DEVELOPER*

*COLUMBUS, OH*

*6+ MONTHS *

*EAD OR GC OR CITIZENS ONLY*



***LOCAL CANDIDATES AS THE CLIENT REQUIRES IN PERSON INTERVIEWS ** *





*Top Skills – WPF, XAML, UI development, .NET, MVVM, Windows*



*Top Three Skills:*

1) WPF

2) general .net development

3) search (Lucene.net) and recommendation (click data)



Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

-- 
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/CAJT%2BorAn_1R4oxvE_ckgEjoDHZBRfLYE7huXrmS%2BowOq53fNEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: CMOD Developer @ Scottsdale, AZ | Contract Position

2016-12-01 Thread Ateeq Rehman
*Hi Associate, *

Greetings of the day !

This is Ateeq, from Diverse Lynx.



*Please share resume for CMOD Developer at **ateeq.reh...@diverselynx.com
*


*Job Description:*



*Role: CMOD Developer*

*Location: Scottsdale, AZ*

*Hiring: Contract*





*Primary skills (5 years of experience):*


· IBM CMOD for multi-platform

· InfoPrint Afp2Pdf

· Very good knowledge on configuring pre-printed forms and font
mapping, afp2pdf.ini and a2pxopts.cfg

· PDF indexer

· ACIF indexer

· Generic indexer

· Must have experience storing LINE reports as AFPs in CMOD

· Unix shell scripting

· Must be good at understanding programming logic



*Secondary skills (good to have):*


· ABAP programming

· Tivoli Workload Scheduler







*Thanks & Regards*

*Ateeq Rehman*

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

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

-- 
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/CAN6NZJvZWkaasexCeqH50jn_uYfprtHUtoKUSextqj9P_-UVtw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Windows Admin with MS Azure, Powershell @ San Jose, CA

2016-12-01 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: Windows Admin*

*Location: San Jose, CA*

*Duration: Long Term*





Mandatory Technical Skills *MS Azure, Powershell*

Desirable Technical Skills   Windows Server 2008R2 / 2012R2
Active DirectoryWindows Security

LDAP
MS-SQLEnterprise management

Documentation
HTML
  IIS

Apache
MS-FIMSCCM

SCOM
Azure
Identify management

DNS
DHCP Networking

Enterprise backup
Linux
  PKI

Smart cards



Desirable Functional Skills  • Analytical and creative problem
solving skills for troubleshooting complex system issues

• Communication skills to communicate system health to management and
customers and provide systems diagnoses and resolution for current systems

• Interpersonal skills to interact with customers, senior level personnel,
and team members

• Organization skills to balance and prioritize work

• Leadership skills to assist less experienced personnel

• Ability to work independently and as part of a team

Total Experience Required  7+





*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/CAHxR9GapScGgJgVFXRmW%2B5XSPzgTvcv1QKwaURe6XJkW01ybMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] New Position - System Integrator/ Chicago, IL

2016-12-01 Thread Rizwan Dawood
*System Integrator   *

*Chicago, IL*

*6+ Months  *


*Rate: $50/hr C2C*



*Gather and analyze data to establish system requirements:*



· Research, evaluate, and recommend solution based upon client needs

· Draft technical instructions, technical designs, and other
systems integration related documents

· Interface with external teams such as business, program and
downstream / upstream teams and with PO and key stakeholders on a regular
basis

· Develop and conduct testing plans and procedures based upon
system recommendations

· Provide client with post-installation and integration support



*Thanks and Regards,*



Rizwan

Themesoft Inc

Call: (214) 666-6634

Mail: rizwan.daw...@themesoft.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/CANpokiBTSsiUYchofRGYGki7rLYnk2QjsXG1va8fj8SthTXzBw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mobility Hiring / IOS developer in Dublin, OH & Dallas /TX

2016-12-01 Thread ratedr nikhil


Hi,


Please send me profiles to - s...@itekpeople.com



We are hiring multiple *ios Developers**/Senior Developers (Mid level /Sr 
level resources)  *for *Columbus /Ohio* and *Dallas /TX**:*

 

*Practice*

*Skill*

*COLUMBUS*

*DALLAS*

*Grand Total*

*Mobile*

*iOS Dev*

*5 POSITIONS*

*8 POSITIONS*

*13 POSITIONS*

 

 

*Mandatory for these positions: Contractors are ok  as we need to close 
these positions by Jan 1st week , 2017*

 

 

*Mandatory :While Submission :*

 

1)I will Need Photo ID , (Drivers License )

2)LinkedIn Presence –Need the link ,

3)Proper work authorization validation – (as below)

work authorization –if H1B, GC ,& GC EAD , need a copy ).,

 

*Also post Skype  they need to come for In person or for Local resource 
they can go to our Lex Office as below for F2F , (to & fro  travel expenses 
paid by Virtusa travel desk)*

Location details as below:

*New York, NY*
370 Lexington Ave,
16th Floor, Suite 1600,
New York, NY 10017

 

 

For *Jersey City /NJ* –*Senior Android Developers* (*Contractors*)-*Client 
FDC* – *C2C Rate depending on experience*.(*3 POSITIONS*)

 

For *Dublin Ohio* & *SFO/CA*  (*iOS Senior Developer) (Contractors)Client – 
JPMC –C2C Rate depending on experience and location (8 POSITIONS)*

 

 

*Role*

*iOS Developer*

*Responsibilities:*

1.  Strong Sr. Developer who has practical experience of 
developing multiple, B2C facing apps

2.  Required to design, develop, test, document, deploy, 
support and sustain the mobile apps--iPhone, iPad -- interface and libraries

3.  Demonstrated ability to leverage open source and/or 
build frameworks, i.e. (more clarification needed) experience in SDK 
integration if needed

4.  Understanding the functionality by going through the 
code base and functional flows.

5.  Unit Testing the code for the apps developed.

6.  Documentation for the code developed.

7.   Know architectural principals and ways to optimize for 
better performance of apps & participate in architecture reviews

8.  Participation in code reviews

 

*Required Skills:*

1.  5+ years of experience in iOS development and 10+ total 
years of development background

2.  Be aware of the most commonly used libraries essential 
for development

3.  Coding expertise in Objective-C, xCode and Cocoa & Swift

4.  Experience in REST, JSON, XML, SOAP and other 
technologies 

5.  Native App Designing Experience

6.  Strong iOS Programming background

7.  Unit testing

8.  Git

 

*Nice to Have Skills*

1.  Have knowledge of Apple Pay, Bluetooth, NFC, industry 
background etc. 

2.  Understanding of integration with mBaaS or mobile API 
experience

3.  Banking & Financial Services experience a strong nice 
to have

 

 

 


Thanks and Regards

 

Sam

iTek People Inc

32969 Hamilton Ct, Suite: 210

Farmington Hills, MI-48334

Off: +1-248-579-5677

s...@itekpeople.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/b28b92c4-06f2-4372-b8ae-31a797b8e5f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need || Mobile Test Analyst || Minneapolis,MN....Passport No. must

2016-12-01 Thread swamil singh
Hi,


Hope you are Doing well...!!!



I have urgent requirement for below position. Please go through the job
description and if you are interested kindly let me know. Please revert me
on swam...@sysmind.com



*Role*: Mobile Test Analyst

*Location: *Minneapolis,MN

*Experience*: 6+ Years


*JD:*

a)  Resource should have worked for at least 4 years in Stores with
hands on testing on Backroom, Inventory management, Price management, Order
Management (Sterling OMS is common across) and RMS, using TC70

b)  Knowledge on End to End flow is very critical

c)  Fundamental and thorough knowledge on device testing

d)  Apart from functional – there is device testing skills that will
require deep knowledge of device –

a.  for e.g.  Device Installation testing, Connectivity testing,
Firmware testing (third party firmware), OS Test, Wrapper Test, Touch
screen test, Scan test, Performance test (device level), Voice & Video

e)  Note: if the resource has been working only on wrapper projects in
Store, (s)he will have good knowledge on device levels mentioned above but
may not have functional knowledge

f)   TC70 is predominantly used in Store level so in my opinion
in-depth store knowledge combined with device knowledge is the key ask

g)  Resource should be able to differentiate between functional issue
and device related issue and technical issue, should be capable of getting
to logs and pulling errors out of the device

h)  Understanding of basic working technicalities with the device

i)POS knowledge with Store Knowledge and Mobility knowledge

j)Person who has worked with a leading Retailer in Stores with
hands-on device testing skills for a  minimum 4 years should be fine.

k)  Should have proficiency in SQL scripting to generate data sets for
quick testing, can thus attempt to reduce the dependency on others



-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

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



Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

Hangout: swamil.sysm...@gmail.com

Website: www.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/CAP_aUSxLZ9FumshZHiOgSmY0ieS-BP493-nL3Eq2RbLZqRVJXw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: Techno Functional Business Analyst, Thousand Oaks, CA

2016-12-01 Thread aman tanwar
Share resume on





*ama...@nityo.com  Positions: Techno Functional Business
Analyst Location: Thousand Oaks, CA Duration: 12+ months Summary:*
1.Technical background on BI/Visualizations – Tableau and Spotfire
2.Functional knowledge of Life Sciences publications process will be value
add
3.Excellent communications and business client handling skills
4. Experience with Agile / Scrum
5. Experience in driving requirements and design workshops


*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_z4C9%3Dxos1%2B0XhVweHdsuv%2BJ-3h7Xc0W35AimH08e_39dw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Java UI Developer @ Mclean,VA

2016-12-01 Thread satish kumar
Hi ,



Hope you are doing great,



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



*Note: Need Passport no/copy*


*Role: Java UI Developer*

*Location: Mclean,VA*

*Duration: Long Term*





Experience (Years)8-10



Essential Skills

Expert level understanding of OOP and OOD concepts.  8+ years of experience.

• Expert level programming skills in Java (1.7 or higher).  8+ years of
experience.  1.8 is a must.

• Solid Working experience with Web development using J2EE frameworks.
Experience in Swing or Vaadin is would be great.

• Experience with building web based systems with real time capabilities.

• Demonstrate ownership, innovation, and focus on delivering results.

• Expert in creating SQL, XQuery and Stored Procedures, performance tuning
of Database queries.





*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/CAHxR9GaofCNSnoksLQxOMiUaa45iYWz-ypUgMEt-gJBYD%3DhNxg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: FW: Sr. Cognos Developer with TM1 (Must):::Hillsboro, OR

2016-12-01 Thread ranjeet majumdar
Hi,

Hope you are doing good…!!!

I have an urgent requirement below, please go through JD and send your
updated profile and expected rate ASAP.

Also, please recommend someone if suitable for the same kind of position.

You can also call me at *609-897-9670*5117*

*Role:* Sr. Cognos Developer with TM1 (Must)

*Location: *Hillsboro, OR

*Client: *Wipro/Nike Inc.



*Key skills required for the job are:*

•  Experience participating in multiple, complex projects and
working with diverse teams in multiple locations

•  Ability to model complex financial planning processes using IBM
Cognos TM1

•  Experience formulating, developing and documenting sustainable
integration with various data sources and targets

•  SAP BW experience is preferred, specifically experience with SAP
BW Business Explorer (BEx) and/or SAP BW Financial cubes

•  Experience querying data directly from Teradata is preferred

•  Experience with data modeling and data modeling tools preferred

•  Finance background is strongly preferred

•  Experience with financial planning and/or reporting systems
strongly preferred

•  Ability to pass a 7 year background investigation

•  Bachelor's degree in Business, Finance, Information Technology,
or a related field

•  5 years' additional experience in lieu of a degree

•  5 years' experience in a programmer, application developer,
application engineer or similar coding experience role

•  Ability to gather and understand business requirements and
translate them into technology  solutions

•  Ability to design, develop, create and test planning solutions

•  Ability to communicate verbally, in writing and via
presentations effectively with a broad range of Technology and business
counterparts

•  Successful track record collaborating with product owners,
product managers and business SMEs to ensure  delivered solutions optimally
support the achievement of business outcomes

•  Experience in an iterative Lean/Agile delivery environment





Best Regards,

*Ranjeet Majumdar* | SYSMIND, LLC

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

Phone: 609-897-9670 x 5117

Email: ranje...@sysmind.com

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

Gtalk: ranjeet.sysm...@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/CADUE5J-8-j%2By9xx0-XuAL%3DUQF3Qc3kMk4488Qka3va1gSpc3Sw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] JAVA DEVELOPER with React JS(Must Be 9+)@Columbus, IN

2016-12-01 Thread Santosh kumar Nityo
*URGENT NEED *

* ONLY FOR LOCAL*


Hi,

Hope you doing Well !!!



Here is our Implementing partner Requirement, Please go through the below
requirement and send us suitable consultant with their updated resume,
rates and Contact details ..



*Role:** JAVA DEVELOPER with React JS**(Must Be 9+)*

*Location: **Columbus, IN*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Must Have Skills
1. Thorough hands on knowledge of Java/ J2EE frameworks specially Spring
MVC, Spring JDBC, Rest Web Services, iBatis, jQuery, Bootstrap
2. Detailed knowledge of Oracle, My SQL, SQL Server, query, function, store
procedures along with performance tuning through query optimization.

Nice to have skills (Top 2 only)
1. Knowledge of AngularJS, React JS
2. Knowledge of J2EE portal applications


Desired years of experience* : 9-10 years







*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/CAG0Zfz1CVM0z_unMumogPKhVxuTpPAG_deMYBEMDaQ-7mKyp2g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Release Engineer/DevOps in Denver, CO !

2016-12-01 Thread Abhishek ojha
*Job Title: Release Engineer/DevOps*

*Duration: 7 Months*

*Job City, State Denver,  CO*



*Need Local *


*Req Skills:*

5 years of senior level server administration experience in a large-scale
production environment.
Strong understanding of development workflow and process


*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/CAKpcopTLFZtxo__CGF%2Bt6ypTPr98uqCZPg_Uz9B8ZE5U0XpWLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: Oracle Developer with DBA and Golden Gate @ Boston, MA ( Initial one month at San, CA ) | Contract Position

2016-12-01 Thread Ateeq Rehman
*Hi Associate, *

Greetings of the day !

This is Ateeq, from Diverse Lynx.



*Please share resume for **Oracle Developer with DBA and Golden Gate skill
at **ateeq.reh...@diverselynx.com *


*Job Description:*



*Role : Oracle Developer with DBA and Golden Gate skill*

*Location: Boston, MA (Initial one month at San, CA)*

*Hiring: Contract*



*Primary Skill: Oracle Developer  *

*Secondary Skill: DBA + Golden Gate*





*The JD for the onsite role is as follows:*

· Strong SQL, PL/SQL skills  and Performance tuning of SQL, PL/SQL

· Ability to understand logical data model and implement physical
model

· Good knowledge of information life cycle management (archiving
and pruning)

· Sound understanding of replication technology (Oracle Golden
Gate)

· Basic Unix and shell scripting knowledge

· Preferably from E-Commerce or Mission critical engineering
background







*Thanks & Regards*

*Ateeq Rehman*

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

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

-- 
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/CAN6NZJt3N-BpaMbpfdaGN2zhN4NP4m5PC835Etkh40FQBBR7uQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IT - Senior Consultant | CRM | SFDC Sales Cloud

2016-12-01 Thread sammy
Job Details:

Infosys

Work Location:  Overland Park, KS 66212

IT - Senior  | CRM | SFDC Sales Cloud



*Must Have Skills (Top 2 technical skills only)*

*With SFDC Certified  *

*1. Minimum 5 years’ experience in implementing configuring, customizing
Salesforce.com instance*

*2. Minimum 2 years’ experience in developing with relational database
management systems*

*3. Experience integrating Salesforce with other applications*

*4. Command on Apex/triggers/Visualforce Pages. (Sync/Async mechanism)*

*5. Good in Integration/Webservices/XSD changes*

*6. Working knowledge of Javascript, Jquery and HTML*

*7. SFDC configuration modules: Workflows/validation rules/ custom
settings/ Security settings/ Time*



based workflows/permission sets/ user set up/ forecasting/ Territory
management/ Approval Process/ Page layouts/ Different types of
relationship/ Formula fields/ Roll up summary fields

8. Working knowledge on Force.com IDE development kit and ANT migration

9. Deliver advanced business intelligence solutions leveraging the
Salesforce Wave application framework

10. Working knowledge of JSON, Pigql, SAQL, ETL Tool, such as Dell Boomi,
MuleSoft, Informatica on Cloud

Top 3 responsibilities you would expect the subcon to shoulder and execute:

1. SFDC Configured code & UT Results

2. Fixing the UAT Defects

3. Fixing the Post production defects



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/

*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/CAP3QAUo5DOcioZxig_z8sdhnoorydYHV735XFg52UE9wcYzfbw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MSBI Developer

2016-12-01 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

Here is our Implementing partner Requirement, Please go through the below
requirement and send us suitable consultant with their updated resume,
rates and Contact details ..




*Role: MSBI Developer*

*Location: Milwaukee, WI*

*Duration: Long term *

*Interview:- Phone/Skype*



*Technical Skills*:-

Must Have Skills (Top 2 technical skills only)

1.Power BI



Nice to have skills (Top 2 only)

1. SSAS, SSIS knowledge

2. Knowledge of Power BI integration with other tools, specifically CRM



*Top 3 responsibilities you would expect the subcon to shoulder and
execute:-*
1. Skilled in Power BI and specifically in building dashboards that provide
an engaging user experience with knowledge in SSAS and SSIS
2. Designs, develops and tests program units; works on new systems
development and enhancement/maintenance of existing systems; participates
in implementations of new systems or modifications to existing systems to
meet Information Systems and client business requirements
3. Oversee development, unit/integration testing, and implementation of
solutions, for other Power BI developers. Prepare, maintain, and update
support documentation for the business solution developed. Identify and
implement opportunities for optimizing business. Report to Infosys Onsite
Manager



*Thanks & Regards,
  *

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@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/CANOPGKxw0UbBk7eHwfTOCdO-WEExCf26yHxLow-sAoXM%2BhUqGQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP ABAP HR @ Atlanta, GA

2016-12-01 Thread Yuvi D
Hello,

Good Afternoon!!!

Please share resumes to *r...@hclglobal.com *

Below is the JD for your reference.

*Title: SAP ABAP HR*
Experience: 8 - 10 years
location: Atlanta, GA
Duration: 6 - 12 Months
Rate: $DOE/hr on C2C all Inc




-- 

---
Thanks and Regards,
Kalyan,
HCL Global Systems,
Ph: 248-473-0720*167
Email: r...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3w26oW17zxVAmEtDDHegoSo2F7vMq%2B9jLDmtZQpF%2Bf10A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] lead oracle EBS functional consultant

2016-12-01 Thread chandrakanth itiyam
*Position:1*

*Job Title : lead oracle EBS functional consultant*


*Work Location & Address :Atlanta-GAContract duration : 6
Months Exp:9+years*

Job Details: Anchor different phases of the engagement including business
process consulting, problem definition, discovery, solution generation,
design, development, deployment and validation; guide teams on project
processes and deliverables; contribute to effort estimation and proposal
development, client training and internal capability building with the
objective of providing high-quality and value-adding consulting solutions
to customers within the guidelines, policies and norms of Infosys.

Must Have Skills (Top 2 technical skills only)
1. Oracle EBS Financials (GL, AP, AR, Cash Management, SLA, EB Tax)
2. Accounting Background
Nice to have skills
1. Vertex Tax Application


Education/ Certifications (Required) : CA or MBA (Finance)
Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. Resolve high priority Production Support tickets
2. Act as a single point of contact at onsite for Finance area
3. Liaise with offshore team for Production ticket closures

*Position:2*

*Job Title: Lead **oracle EBS functional consultant*

*Work Location & Address: St. Louis, Missouri Contract duration :3 mounths*


*Exp:10 yearsJob Details:*

*Must Have Skills (Top 2 technical skills only)*
1. Oracle EBS Warehouse Management(WMS) R12.2 Functional skills
2. Ability to work with offshore India team
Education/ Certifications (Required) : BE/BTECH
*Top 3 responsibilities you would expect the subcon to shoulder and execute*
:
1. Work with client and offshore team and provide functional expertise on
Oracle EBS WMS R12.2 and lead the WMS track with offshore team members in
the project.
Primarily skill needed is Oracle WMS.
2. Work on business process demonstration

3. Status reporting on WMS track deliverables for the project

-- 
Please send resume to my Official mail ID*:** chandrakan...@itiyam.com
*


-- 
Thanks & Regards,

*Chandrakanth Grandhi*
*ITiyam LLC*

chandrakan...@itiyam.com / *(571) 446-4825*105*
*www.itiyam.com *

Under Bill s.1618 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 in the subject heading and your email
address in the body. Include complete address and domain to be removed.
Pursuant to Federal law, if you do not wish to receive future email
messages from us, please reply with "remove" to the same id.

-- 
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%2BBaSkeL2FVwHgMkSPmyzivzZEvDSha8u65fnV6n6JMHJPyrSQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement for Business Analyst at Chicago

2016-12-01 Thread Rajesh Kumar Behera
Hi Partners,



Hope you are doing  well !!!



*Please share your consultant profile below position at*
raj...@tekinspirations.com



*Business Analyst*

Chicago

*12+ months contract*



*Face to face interviews, no phone, no Skype…(Client doesn’t pay expanses)
prefer LOCAL*



*MUST HAVE STRONG HEALTHCARE EXPERIENCE- 7 YEARS AS BA IN HEALTHCARE*



*Job description:*

· This position is responsible for functions on projects of
moderate to high complexity by working with business partners within
multiple business functions to align ASO Blue Balanced Funding product set
up data needs with business strategies;

·  eliciting, documenting, and refining product portfolio data to
support key product platform requirements for the organization;

· serving as a liaison across multiple facets of the business
community leveraging an informed knowledge of business areas to identify
and/or resolve problems on an ongoing basis.   MUST BE STRONG IN AGILE



*Required skills:*

Knowledge of HealthCare Products (Retail: Small Group/Non Regulated Mid
Market). Excel Proficiency.



 *Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

E: raj...@tekinspirations.com 

W: www.tekinspirations.co m


-- 
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/CAHc%3Dgbr12PZmG2Vz6awAzb7KqKxjBPZOxhvv63Ld9NTABiVkPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Mobile Test Analyst @ Minneapolis, MN

2016-12-01 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: Mobile Test Analyst*

*Location: Minneapolis, MN *

*Duration: Long Term*





Job Summary:

The candidate should be able to understand the business requirements for
the mobile application. Create test scenarios, test cases and execute test
cases.

Experience in testing retail applications in mobile hand held devices
(Bluebird/Symbol TC70 etc.) required.

SIM (Store Inventory Management) knowledge required.

Manhattan experience preferable not mandatory.



a)  Resource should have worked for at least 4 years in Stores with
hands on testing on Backroom, Inventory management, Price management, Order
Management (Sterling OMS is common across) and RMS, using TC70

b)  Knowledge on End to End flow is very critical

c)  Fundamental and thorough knowledge on device testing

d)  Apart from functional – there is device testing skills that will
require deep knowledge of device –

a.  for e.g.  Device Installation testing, Connectivity testing,
Firmware testing (third party firmware), OS Test, Wrapper Test, Touch
screen test, Scan test, Performance test (device level), Voice & Video

e)  Note: if the resource has been working only on wrapper projects in
Store, (s)he will have good knowledge on device levels mentioned above but
may not have functional knowledge

f)   TC70 is predominantly used in Store level so in my opinion
in-depth store knowledge combined with device knowledge is the key ask

g)  Resource should be able to differentiate between functional issue
and device related issue and technical issue, should be capable of getting
to logs and pulling errors out of the device

h)  Understanding of basic working technicalities with the device

i)POS knowledge with Store Knowledge and Mobility knowledge

j)Person who has worked with a leading Retailer in Stores with
hands-on device testing skills for a  minimum 4 years should be fine.

k)  Should have proficiency in SQL scripting to generate data sets for
quick testing, can thus attempt to reduce the dependency on others





*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/CAHxR9GbWX-%3DicAqc1Mx_Y2_nZLpnEEBW5bR0s3r1TmChh1A0pQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate :: Jenkins Administrator :: Salt Lake City, UT

2016-12-01 Thread Amit Kumar
*Hello,*

*Hope you are doing great!!!*
*We have the following requirements as below, please go through job
description and let me know  on *
*609-897-9670 x 5124,* <609-897-9670%20x%204013>* Email: *



*am...@sysmind.com *

*Position  : Jenkins Administrator*

*Location : Salt Lake City, UT*



*Duration : 6 Months+*



*Job Descriptions : *

*Basic Requirements:*

• BS in Computer Science, Information Systems or related
technical degree.

• 3+ years experience with build and release automation in a
Linux environment.

Preferred Qualifications:

• Experience with Jenkins, Bamboo, Hudson, Nexus, Ant, or
similar continuous integration tools.

• Familiarity with continuous deployment tools such as
Saltstack, Ansible, Chef, or Puppet a plus.

• Demonstrated ability to install, configure, upgrade, and
support build servers.

• Understanding of version control systems like Git, SVN,
Perforce, etc.

• Familiarity with test automation frameworks.

• Working knowledge of Git repositories and commands.

• Experience with shell scripting.

• Some software development background a plus.





*Responsibilities:*

• Provide work effort and subject matter expertise in state of
the art continuous integration tools.

• Configure and maintain release automation jobs.

• Help troubleshoot issues with builds and deployments.

• Install, configure, upgrade, and administrate build servers
and clients across multiple environments and data centers.

• Employ best practices to ensure high availability of deployed
build servers and clients.

• Respond to and resolve build server access and performance
issues.

• Coordinate with primary stakeholders and participate in
strategic release planning.

• Implementation of standards and controls to improve release
processes and procedures.

• Provide technical assistance with builds and ensure teams are
trained.

• Work across IT and engineering teams to identify and
recommend continuous improvements.

• Develop and maintain documentation and troubleshooting
playbooks detailing usage, standards, and procedures.
• Build faster, build better, build smarter and let coders
focus on coding!










*Thanks and Regards,*



*Amit Kumar* | SYSMIND, LLC


*Technical Recruiter*

Phone: 609-897-9670 x 5124

Email: am...@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/CALtO%2BBF7Zm8F9fhfnzC%2BR-rmmzV1RejVDbsAiTSYfsz0Cbw5HA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for QA Tester with Mainframe at Minneapolis, MN

2016-12-01 Thread USIT Recruiter
*Hi *



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



*Job Title: QA Tester with Mainframe*

*Duration: 6+ months*

*Location: Minneapolis, MN*



*Job Requirement :*

· Mainframe Testing

· Unix and SDLC Knowledge

· Automation On UFT





*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

*An Oracle Recognized Partner & *An ISO 27001 and 2-1 Certified &
Minority Business Enterprise (CMBE)

 *f: *+1 (608) 646 8326

*e:* abhishek.kum...@nlbservices.com | *w:* www.nlbservices.com

*a:* 8613 Old Kings Road South, Unit 303, Jacksonville, Florida 32217

-- 
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/CALnpRi02%2Bs25epgM%2ByvnXMsZY0DkQtY349-UX2Z8r%3DjbF3w29g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] oracle EBS

2016-12-01 Thread chandrakanth itiyam
*Position:1*

*Job Title (as chosen in ECMS L1->L2->L3) Lead Consultant*


* Work Location & Address :Atlanta-GA Contract duration : 6 Months
Exp:9+years*

Job Details: Anchor different phases of the engagement including business
process consulting, problem definition, discovery, solution generation,
design, development, deployment and validation; guide teams on project
processes and deliverables; contribute to effort estimation and proposal
development, client training and internal capability building with the
objective of providing high-quality and value-adding consulting solutions
to customers within the guidelines, policies and norms of Infosys.

Must Have Skills (Top 2 technical skills only)
1. Oracle EBS Financials (GL, AP, AR, Cash Management, SLA, EB Tax)
2. Accounting Background
Nice to have skills
1. Vertex Tax Application


Education/ Certifications (Required) : CA or MBA (Finance)
Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. Resolve high priority Production Support tickets
2. Act as a single point of contact at onsite for Finance area
3. Liaise with offshore team for Production ticket closures

*Position:2*

*Job Title: Lead Consultant*

* Work Location & Address: St. Louis, Missouri Contract duration :3 mounths*


*Exp:10 years Job Details:*

*Must Have Skills (Top 2 technical skills only)*
1. Oracle EBS Warehouse Management(WMS) R12.2 Functional skills
2. Ability to work with offshore India team
Education/ Certifications (Required) : BE/BTECH
*Top 3 responsibilities you would expect the subcon to shoulder and execute*
:
1. Work with client and offshore team and provide functional expertise on
Oracle EBS WMS R12.2 and lead the WMS track with offshore team members in
the project.
Primarily skill needed is Oracle WMS.
2. Work on business process demonstration

3. Status reporting on WMS track deliverables for the project




-- 
Please send resume to my Official mail ID*:** chandrakan...@itiyam.com
*


-- 
Thanks & Regards,

*Chandrakanth Grandhi*
*ITiyam LLC*

chandrakan...@itiyam.com / *(571) 446-4822*
*www.itiyam.com *

Under Bill s.1618 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 in the subject heading and your email
address in the body. Include complete address and domain to be removed.
Pursuant to Federal law, if you do not wish to receive future email
messages from us, please reply with "remove" to the same id.

-- 
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%2BBaSkcCR670-J8KfHB18hTb2tpijDe-fXDgQdHiBuyw%3DbhZuQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: .NET Developer with Azure Cloud services, Melville, NY

2016-12-01 Thread aman tanwar
Share resume on

*ama...@nityo.com * *Position: .NET Developer with Azure*




*Cloud services Location: Melville, NY Duration: 12+Months Summary: *-Min
5/6 years experience in developing applications in dot net
-Min. 3/4 years experience in Azure Cloud services & microservices
administration
-Excellent hands on Powershell scripting experience
-Minimum 2/3 years experience in Octopus auto deployment tool.
-RabbitMQ
-Min 1 year experience in App Dynamics Or Splunk monitoring tool set up.


*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_z7Z5kj%3DcpZOFYK7Vr8Ez71%3DtbRswD4VhKbRjEJfAdxhiQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] We are looing for a Oracle Apps Testing at Alpharetta, GA

2016-12-01 Thread Sandeep Sam
Hi,


Greetings from InsaSys..!!

Following is the opening with one of our client based in the * *Alpharetta,
GA* *.If you are available and interested please revert back with your
updated resume so that we can discuss further.





*Title   : Oracle Apps Testing*


*Location   : Alpharetta, GADuration  : 6+ Months*



1. Project description (Please do not use EY specific acronyms) Projects
involve implementation of Oracle Identity Manager, Oracle Privileged
Account Manager, Forefront Identity Manager, Active Directory Provisioning
in multiple projects under Global Account Provisioning Program.

2. Please give a high level explanation of the application or technology
that this candidate would work. Oracle Identity Manager system, Oracle
Privileged Account Manager, Forefront Identity Manager, IVR implementation
for user self-service password management. Candidate should be comfortable
working with Active Directory, SQL server and Oracle.

3. Reporting to a QA Program Lead or Quality Assurance Lead you will
participate in a global test team responsible for delivery of tested
systems into production. Where appropriate you will lead a small team of
Test Analysts in delivering functional testing on small or low complexity
projects.



*Essential Functions of the Job:*

•Assist with the planning for and where appropriate management of
all functional testing including; static; system; system integration; where
appropriate advise User Acceptance Testing for given projects

•Through analysis of requirements specifications and design
documents use structured techniques to identify testable conditions

•Draft, revise, approve and execute system test plans and cases
ensuring alignment with standards

•Ensure that system tests are successfully completed and documented
and all problems are resolved

•Conduct tests and analyse results to ensure that software meets or
exceeds specified standards and customer requirements

•Create test data files with valid and invalid records to
thoroughly test program logic and verify system flow

•Support the Test Manager in determining the appropriate quality
initiatives to implement during each phase of testing

•Support the QA organization in the development, revision and
approval quality assurance and testing policies, standards and procedures

•Assist with the implementation and management of QA & T test
processes to support global QA testing activities

•Develop and maintain strong working relationships with other IT
Services functions and customers to expedite delivery of IT solutions

•Provide insightful recommendations to Testing Process Improvement

•Support Test Manager / Senior Test Manager in upward stakeholder
management and day-to-day management of the QA & T test organisation

•Assist with development of pipeline, Test Plans, Status Reporting,
Test Readiness Reviews and post-implementation Reviews as appropriate

•Work closely with off-shore 3rd party vendors to deliver projects
to time, cost and quality requirements



*Analytical/Decision Making Responsibilities:*

•Adopt a logical and organized approach to problem resolution

•Ability to clearly articulate both problems and proposed solutions

•Willingness to learn and quick to adapt to changing requirements

•Good numerate / / mathematical ability

•Proactive approach to identifying issues and presenting solutions
and options

•Ability to prioritise personal and team workloads to best meet
organisational objectives



*Supervision Responsibilities:*

•Assist in the training and development of staff members to develop
their skills and maintain industry-leading knowledge in their areas of
responsibility

•Where appropriate, directly and indirectly supervise staff members
in the development, implementation, and delivery of applications to
client's requirements

•Where appropriate coordinate and supervise the daily activities of
team members or business representatives.

•Where appropriate set priorities for the team to ensure task
completion; coordinates work activities with other supervisors -




Thanks and Regards,

Sam

InsaSys LLC|103 Carnegie Center |Suite 300 |Princeton,  NJ 08540

s...@insasys.com | Fax: 848-260-3669|www.insasys.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/CAPUvgPDZM6q6rnM_GQpx9JjNRCAX%2Bmjq5ZS66SSmwT%2BVm6O8Cw%40mail.gmail.com.

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 updates in 24 topics

2016-12-01 Thread Kyaw Thura Maung
On Dec 1, 2016 9:20 PM,  wrote:
>
> android-developers@googlegroups.com
> Google Groups
> Topic digest
> View all topics
> Hiring for IBM Datastage Consultant at Chicago, IL - 1 Update
> Urgent Need :: Network Design Engineer @ Mount Laurel, NJ - 1 Update
> Urgent Requirement for SR. PL/SQL Developer at Cleveland, OH - 1 Update
> oracle EBS positions - 1 Update
> Hotlist - 1 Update
> newbie needs help - play a sound when app opens - 1 Update
> List of Available Consultants –Scepter Technologies. - 1 Update
> 3+ Month Contract || SharePoint Expert(Development / Administration /
Analysis) - 1 Update
> Urgent need a ERP Principal Project Manager || Lexington, MA Locals are
highly preferable || phone and face to face || No H1B || - 1 Update
> Need :Sr Business Analyst -Columbus, OH (In-person Only) - 1 Update
> Urgent Need---Lead Data Modeler--EAD or GC or Citizens only - 1 Update
> AWS DevOps Engineer@El Segundo, CA - 1 Update
> IBM InfoSphere DataStage @ Chicago, IL - 1 Update
> IBM InfoSphere DataStage Developer - 1 Update
> Urgent need::Windows Server and Storage Admin::Mountain View, CA,USA(
passport no. mandatory) - 1 Update
> looking for a OBIEE Designer || North of Boston, MA || 5+ months || No
h1b || - 1 Update
> .Net Sitecore Developer in Dallas, TX ! - 1 Update
> How can I add beta tester to Google Play Developers Console by Google
Play Api? When I try I get this message: Invalid value for googleGroups - 1
Update
> NEED: Cassandra Admin @ Houston, TX 77073 --- Contract - 1 Update
> Face recognition using Android Mobile Vision - 2 Updates
> Tableau Training Developer - 1 Update
> HOTLIST - 1 Update
> Tableau Training Developer - 1 Update
> Tableau Training Developer - 1 Update
> Hiring for IBM Datastage Consultant at Chicago, IL
> USIT Recruiter : Dec 01 09:42AM -0500
>
> *Hi *
>
>
>
> * Please lookup the below position and if you feel comfortable ,then
please
> send me your updated resume *
>
>
>
> *Job Title: IBM Datastage Consultant*
>
> *Duration: 6+ months *
>
> *Location: Chicago, IL*
>
>
>
> *Job Requirement :*
>
> · IBM Datastage
>
> · Teradata
>
> · IBM Data Mirror
>
>
>
>
>
> *Thanks and Regards,*
>
> *Abhishek Kumar*
>
> Next Level Business Services, Inc.
>
> *An Oracle Recognized Partner & *An ISO 27001 and 2-1 Certified &
> Minority Business Enterprise (CMBE)
>
> *f: *+1 (608) 646 8326
>
> *e:* abhishek.kum...@nlbservices.com | *w:* www.nlbservices.com
>
> *a:* 8613 Old Kings Road South, Unit 303, Jacksonville, Florida 32217
> Back to top
> Urgent Need :: Network Design Engineer @ Mount Laurel, NJ
> satish kumar : Dec 01 09:42AM -0500
>
> Hi ,
>
>
>
> Hope you are doing great!
>
>
>
> Please review the following Job Description and share updated resume if
you
> find comfortable for this position...
>
>
>
>
>
> *Role: Network Design Engineer*
>
> *Location: Mount Laurel, NJ*
>
> *Duration: Long Term*
>
>
>
> Experience: 8-10 Years
>
>
>
> Job Summary:
>
> Responsible for designing, implementing and managing the use of
>
> Comcast’s National Converged IP Network. Designs and develops updated
>
> network infrastructure in support of one or more business needs. Ensures
>
> a balance between tactical and strategic network technology design
>
> solutions and considers end-to-end business problems within and outside
>
> the enterprise. Develops and produces converged network best practices
>
> and ensures architectural guidelines are utilized. Acts as a key
>
> contributor in a large complex environment. Determines and pursues
>
> course of action necessary to achieve results. Frequently leads teams on
>
> specific projects providing broad direction and expertise. Usually
>
> determines own work priorities. Acts as resource for colleagues with
>
> less experience.
>
>
>
> *Core Responsibilities:*
>
> - Provides configurations and technical leadership as a primary
>
> technical resource on Internet Protocol (IP) router network technologies
>
> (BGP, OSPF, ISIS), traffic flows and overall end to end network
>
> communication.
>
> - Performs a variety of highly complex analytical duties in network
>
> design and IP services for network optimization and produces fundamental
>
> and detailed designs for implementation.
>
> - Analyzes traffic engineering data to forecast network capacity
>
> requirements for efficient network designs and overall cost reductions.
>
> - Performs technical training for regional engineers and
>
> operations/engineering (XNOC) groups on current and future technology.
>
> - Develops test and acceptance criteria for IP networks and provides
>
> technical direction for network problems.
>
> - Maintains the configuration and supports the engineering design life
>
> cycle with proper documentation ensuring that all detailed designs
>
> adhere to network standards.
>
> - Consistent exercise of independent judgment and discretion in matters
>
> of significance.
>
> - Regular, 

[android-developers] We are looing for a Manual Testing at Alpharetta, GA

2016-12-01 Thread Sandeep Sam
Hi,


Greetings from InsaSys..!!

Following is the opening with one of our client based in the * *Alpharetta,
GA* *.If you are available and interested please revert back with your
updated resume so that we can discuss further.



*Title   : Manual Testing*

*Location   : Alpharetta, GA*

*Duration  : 6+ Months*

*Rate  :$45/Hr*



*Skills: *

· Experience in preparing and executing test scenario and test
cases

· Experience in Smoke, E2E, regression, Functional Testing

· Knowledge on Defect tracking to ALM and defect lifecycle

· Experience in SDLC process - Experience with Agile testing
methodology and Waterfall models

· Flexibility to travel (Agile Team member only)

· Previous experience on Financial/Tax/Banking applications is
added advantage

· Knowledge on PL/SQL queries is added advantage

· Good communication skills

· Could be able to start within 2 weeks of time or less

· Agile Test background 5-6 years

· Must have hands-on experience with UFT 4-6 years

· Must have experience in designing automation framework from
scratch

· Develop automated test suites covering application functionality
and features



*Requirements: *

• Minimum 7-10 years of hands-on manual experience with in QA

• Experience with test automation tools (e.g. HP Quality
Center, Quick Test Professional (QTP), Win Runner, Selenium) is added
advantage

• Understanding of the Software Development Life Cycle (SDLC)
and experience working in agile / iterative SDLC environments

• Ability to excel in team oriented environment - Able to work
independently and in a fast paced environment

• Adheres to development standards, software development
lifecycle processes

• Constantly seeks ways to improve processes for increased
agility and quality

• Good to have previous experience in UFT scripting for Agile
testing environment application

• Track record successfully managing automation testing process




Thanks and Regards,

Sam

InsaSys LLC|103 Carnegie Center |Suite 300 |Princeton,  NJ 08540

s...@insasys.com | Fax: 848-260-3669|www.insasys.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/CAPUvgPB_qedxCV-HazRDLAbGpj1dh06U47KtZuGuFHTKWjc3DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] UPDATED HOT-LIST 12/1/2016

2016-12-01 Thread Acha Hotlist
Hello,



Hope you’re doing great today.

Please find the below HOT-LIST and let me know any suitable requirements
for our consultants.



*Name*

*Technology*

*Location*

*Experience*

*Relocation*

Salma Bhanu

.Net Developer

Aberdeen, SD

12+

Yes

Sudeep Katiki

Informatica

Madison, WI

9+

Yes

Motti Javare Gowda

Hadoop Developer

Lisle, IL

7+

Yes

Satheesh Reddy

Open stack Engineer

Dallas, TX

7+

Yes

Rakesh N

Salesforce Developer

Dover, NH

8+

Yes

Eeshan Sharma

DevOps Engineer

Tampa, FL

8+

Yes

Maruthi Rajan Rekkala

UI Developer

Atlanta, GA

7+

Yes

Hari Charan

.Net

Los Angeles, CA

7+

Yes

Suresh Mekarthi

Senior .Net Developer

Louisville, KY

8+

Yes

Ushakar Reddy Rondla

Service Now Developer/Admin

Richardson, TX

7+

Yes





Thanks & Regards,



*Acha Ayyappa*

*CNET Global Solutions, Inc *

*Certified Minority Business Enterprise (MBE)*
800 E. Campbell Road, Suite # 345 Richardson, Texas 75081
Phone: 972 782 4306|| Fax: 972-692-8828
Email: a...@cnet-global.com  || *Hangouts:*
acha.requireme...@gmail.com 



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*



*P*Please consider the environment - do you really need to print this email?




Note: We respect your Online Privacy. This is not an unsolicited mail.
Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include Contact information and a
method to be removed from our mailing list. 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. I am sorry for the
inconvenience caused 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/CAP%2Bb5tEqi%2BsNtSiObJCvTee7Q%3DuufvMWew%2BWLV1CGPkh8R%3DC_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] New Position - Java Developer/ Scottsdale, AZ

2016-12-01 Thread Rizwan Dawood
*Job Title: Java Developer*

*Work Location & Address: Scottsdale, AZ *

*Contract duration (in months) 6 – Renewable*

*Rate: $50/hr on C2C*



*Need Locals (F2F Must)*



*Job Details: *



*Must Have Skills (Top 2 technical skills only)*

· Minimum 8+ years of experience as developer with Java, J2EE, EJB,
JAXP, XSLT, JSP, JSF Struts, AJAX and HTML/CSS, JavaScript, JQuery

· Experience with Spring MVC, Spring Data, Jackson JSON, Web
services, Hibernate or equivalent Object Relational Mapping platform, Junit
testing frameworks



*Nice to have skills (Top 2 only)*

· Android development experience

· SOA/ESB experience is a plus



*Thanks and Regards,*



Rizwan

Themesoft Inc

Call: (214) 666-6634

Mail: rizwan.daw...@themesoft.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/CANpokiCWLxjxck1RSPrK8LpcPqw8tzVY%2BUjMT71YWMENpkDPMA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Position---PowerBuilder Consultant in Jersey City, NJ

2016-12-01 Thread Murali Recruiter
Hi,



 I hope you are doing great today.



We are looking for a *PowerBuilder Consultant in Jersey City, NJ*



Job Title:  *PowerBuilder Consultant*

Location: * Jersey City, NJ*

Duration:  6+ Months



*Mandatory Copies: Passport Copy/Number and H1B copy.*



 *Job Description*:–

· Should have done large projects in Power Builder.

· Script knowledge PB

· Good analytic skills

· Knowledge in RDBMS technology i.e. Mysql, SQl, Oracle

· Will be involved in development and maintenance.

· Team handling exposure is an added advantage.

· Good Communication.





Thanks & Regards,

* Murali*

Technical Recruiter

Direct:  *408-868-5124*

EMail: *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%2BR6ji%3DwiDzsZU_pgf5v6hgcR4XLpDY%2BB%3D4X%3DUTPSX31pqCA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement :: SQL Developer(SQL Redgate) :: Philadelphia, PA :: Long Term Contract

2016-12-01 Thread Sharad Rajvanshi
Hi ,

Please share your consultant list at  anil.ku...@contech-it.com

*Position: **SQL Developer*

*Position Type: ** Long Term Contract*

*Location: **Philadelphia, PA*


*Must have **SQL RedGate Tools experience *


*Role Specific Knowledge, Skills and Abilities:*


• Must have expert experience with T-SQL development and writing stored
procedures

• Comfortable with entity-relationship models and data normalization

• Excellent verbal and written communication skills

• Fast learner able to quickly learn complex business processes


*Nice to have:* *SQL RedGate Tools experience*, SVN experience

• Detail oriented, self-motivated individual that can work independently on
a variety of simultaneous projects.

• Familiarity with business rules engines, BRMS, and/or workflow engines is
a plus



*Working Conditions:*


• This is a team work environment in cube or open work area.

• Duties are performed during standard business hours and overtime based on
project requirements.

• Overtime hours may be necessary, especially during critical issue
resolution and to achieve project milestones.

• The qualified SQL Developer will be part of a team environment and will
contribute to Client’s SQL Server stored procedure, data processing, and
database development needs

Thanks
Anil
anil.ku...@contech-it.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/CAOJmjN3oZV5jCKs8AuxUHgKt2%3D%2BY8q2c_TArk4-1rw6ZfS-r_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IMMD NEED: Requirements Analyst in Columbus, OH

2016-12-01 Thread Mohd Taher
Hello,
Please share your consultant resume to tah...@usmsystems.com

Requirements Analyst
Location: Columbus, OH
Duration: 6+ months (up to 18)

*Need EAD, GC, TN or Citizen Only!!*

Top Three Skills:
1. Skilled Requirements Analyst (elicit & gather requirements) experience.
2. Clearly and efficiently document requirements with the understanding
that it will be viewed by consumers and the technical team as they move
through the modification process.
3. Agile experience (story card writing, 3 amigos sessions)


Best Regards,

Mohammed Taher
US IT Recruiter
Direct: 703 349 4237
USM Business Systems
Chantilly, VA 20151, USA.

-- 
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/CAL4ROq4k%3DbG2KQhgEUBiNRKaNJotVJPLwXkugOg9%3DRLL%2B0hdcA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Business Analyst

2016-12-01 Thread Lisa Ray
Hi Business partner,  
​
Good morning...!
 

We just received a new resource for Guidewire Business Analyst &  An 
Business Analyst who will be available soon for new job

 

I wanted to stay ahead of everyone in finding her next career role

 

Please review attached resume and let me know if she is a fit for any role 
you have or know

  
 Please add me in your mailing list for your future requirements  at 
l...@techpunditsinc.com & lisaray2...@gmail.com
 

  Consultant :
  Candidate Name:  Kavya
  Skill  :.Guidewire Business Analyst OR Sr. Business 
Analyst
  Current Location:  New Jersey
  Availability   :  Immediate 
  Experience : 7+yrs
  Relocation  :  Yes
  Interview :  Telephonic, Skype, F2F

 
 
 Please feel free to reach me on the undersigned contact number.
Kindly add me to your Distribution List for lisaray2...@gmail.com
& l...@techpunditsinc.com
 
Thanks & Regards
Lisa
732 659 8650
TechPundits
www.techpunditsinc.com
Gtalk :lisaray2...@gmail.com

On Tuesday, November 29, 2016 at 4:56:21 PM UTC-5, Manisha Nityo wrote:
>
> Hi,
>
> Hope you doing Well !!! 
>
> I was Going through your Profile as I do have a Position of *Business 
> Analyst* for Our Implementation Partner Infosys. Below is the Job 
> Description. I would appreciate if you would let me know your interest.
>
>   
>   
>
>
> *Position: Business Analyst*
>
> *Location : Los Angeles, CA*
>
> *Duration: Long term *
>
> *Interview:- Phone/Skype*
>
>
> *Description:-*
>
> Clinical Care Advance. Data analysis and reporting using SQL Server 
> Reporting Services and SQL Server Integration Services
>
> 6+ years of experience with strong knowledge in SQL / SSRS / SSIS
> 3+ years of TriZetto Clinical Care Advance
> 3+ years of experience in US Health Care, Utilization Management
>
>  
>
> *Thanks & 
> Regards,  
> 
>*
>
> *Manisha 
> Budhwar*
>
> Technical Recruiter
>
> Nityo InfoTech .
>
> Desk No-609-853-0818 Ext-2160
>
> Gtalk ID:- manishanityo16   
>
> E Mail:- mani...@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/25a9698e-4317-4c87-bb22-56039725a542%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for IBM WMB Consultant at Cary, NC

2016-12-01 Thread USIT Recruiter
*Hi *



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



*Job Title: IBM WMB Consultant *

*Duration: 6+ months*

*Location: Cary, NC*



*Job Requirement : *

· IBM WMB v8.0, IBM WMQ v7.5

· Unix scripting





*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

*An Oracle Recognized Partner & *An ISO 27001 and 2-1 Certified &
Minority Business Enterprise (CMBE)

*f: *+1 (608) 646 8326

*e:* abhishek.kum...@nlbservices.com | *w:* www.nlbservices.com

*a:* 8613 Old Kings Road South, Unit 303, Jacksonville, Florida 32217

-- 
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/CALnpRi1ck5%3DUFhVO%3D%3DT5XpURXkqAfE78dTWXq-0ErZKqvtF%2B5A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Position---Java Architect in Herndon – Virginia// Detroit – Michigan.

2016-12-01 Thread Murali Recruiter
Hi,



I hope you are doing great today.



We are looking for a *Java Architect in Herndon – Virginia//* *Detroit –
Michigan.*



Job Title : *Java Architect*

Location : *Herndon – Virginia//* *Detroit – Michigan*

Contract  :  6+ Months



*Mandatory Copies: H1B Copy, Passport Copy/Number.*



*Job Description*:–

· Experience developing applications to run in a large-scale
environment.

· Strong knowledge and hands-on experience with Java.

· *Experience designing REST APIs and developing RESTful Web
Services*

· *Experience with developing automated unit tests and managing and
executing unit tests using tools such as TestNG or JUnit.*

· Experience developing Object Oriented, multi-tier applications in
a complex architectural landscape.

· Experience writing automated unit and integration tests using
JUnit or TestNG testing frameworks.

· Able to maintain the build and deployment process through use of
build integration tools.

· Experience working in an Agile development environment.

· Experience developing ecommerce based web applications.



Looking forward to hear from you!



Thanks & Regards,

* Murali*

Direct:  *408-868-5124*

EMail: *mur...@idctechnologies.com* 

IDC Technologies Inc

-- 
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%2BR6ja%3DWOHM-3vAfDg-FbL3%3DX2gCfzGbA0X195d%2BTDxOLcqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Software Engineer, at Okemos, MI.

2016-12-01 Thread Shaik Salam
Hi Everyone  ,
Hope you are doing great,

We have an immediate opportunity for *Software Engineer*, *at Okemos, MI*.
Below is the job description and if you’d like to pursue this, please
include a word copy of your latest resume along with a daytime phone number
and rate in your response.

*Job Title: Software Engineer*
*Location: Okemos, MI*
*Position: 5 (Level 1, 2 & 3)*
*F2F/In-person Interview Mandatory*
*US Citizens only*

*Key Job Responsibilities:*

   - Participate in all scrum team activities including sprint planning,
   story point estimation, sprint review, and sprint retrospectives.
   - Maintain high standards of software quality with a high level of
   detail given to code quality, application quality, and architectural
   practices.
   - Follow and introduce new coding practices and processes established by
   the development team.
   - Collaborate with the development team and stakeholders.
   - Excellent debugging and problem-solving skills.
   - Contribute to technical design documentation to share knowledge with
   other software engineers and technical architects.
   - Working knowledge and understanding of modern web development
   technologies and processes.
   - Continuously learn and improve skills to stay up-to-date with modern
   practices and approaches.
   - Work independently as required.


*Preferable Skills:*

   - Design and architecture experience with software solutions in
   multi-user, complex, modular, software solutions.
   - Experience working in continuous integration environments
   - Experience working with the Atlassian suite (JIRA, Bamboo, Confluence).
   - Experience with integrating third-party software.
   - Experience in Agile environments.
   - Experience with unit testing frameworks.
   - Experience with pair programming.
   - Experience with NoSQL technologies such as Key-Value-Pair, document,
   and graph databases.
   - Ability to mentor and provide guidance to assist other software
   engineers.


*Required Skills: *

   - Bachelor degree in Computer Science, Computer Engineering, Information
   Technology, Mathematics or related degree.  A combination of education,
   experience and training may be considered in lieu of a formal degree.
   - Minimum of 3 to 5 years’ experience in a Software Engineer role.
   - Evidence of strong analytical and troubleshooting skills driven by a
   logical, methodical approach.
   - Demonstrated strong verbal, written and presentation communication
   skills with the ability to communicate technical data to a wide variety of
   audiences.
   - Evidence of the ability to perform in a fast-paced, changing
   environment with multiple deadline-oriented projects.
   - Exhibit ability to learn new information and complex business
   functions and apply knowledge to new concepts and projects.
   - Develop solutions with at least one Object-Oriented programming
   language (Java, C#, Python) and at least one front end framework such as
   ReactJS, Bootstrap, Angular
   - Experience with web API technology such as REST or SOAP
   - Familiarity with databases and ability to write and execute SQL
   queries.


Thanks and Regards,
Sam
New York Technology Partners – Rochester
332 Jefferson Rd.
Rochester, NY 14623
T1: (201) 680-0200 x 7026
Fax: (201) 474-8533
? s...@nytpartners.com
? www.nytp.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/CAHWKL1jkSOROrpkzbwmghE%3D-h0Wf6EyKLzyD%3Dqzr0PHgJfaMJw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Frontend .Net developer

2016-12-01 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

Here is our Implementing partner Requirement, Please go through the below
requirement and send us suitable consultant with their updated resume,
rates and Contact details ..



*Rate :- $45/hr on C2C*


*Position: Frontend .Net developer*

*Location : Springs-NY*

*Duration: Long term *

*Interview:- Phone/Skype*


*   Description:-*


*Must Have Skills (Top 2 technical skills only) *1. .Net
2.Angular JS


* Nice to have skills (Top 2 only) *1.Financial Domain Experience


• A strong understanding of common application architecture design patterns
(i.e., MVC, MVVM).
• Strong Experience with Object Oriented Analysis and Design concepts.
• Strong Experience with MVC oriented JavaScript Frameworks (AngularJS).
• Working knowledge of essential data structures and data modeling
concepts.
• Hands-on experience with C# programming.
• Strong Experience with developing solutions that leverage ORM frameworks
(Entity Framework).
• Strong Experience with developing WebAPI.
• Strong Experience developing and executing Unit tests with MSTest or
NUnit.
• Strong Working knowledge of databases, SQL (SQL Server) NoSQL (MongoDB).
• Experience with web technologies (HTML5, CSS3, JavaScript).
• Hands-on experience with common JavaScript libraries (JQuery).
• Experience with Server Side JavaScript Frameworks (NodeJS)
• Knowledge of Source Control Management concepts.
• Understanding the concepts of dependency injection and unit testing.

*Thanks &
Regards,
*

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@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/CANOPGKzhiPwqsGoROood7BdKcxbZjviXWigsBTz-1Ey7%3DFtv-A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer in Basking Ridge, NJ !

2016-12-01 Thread Abhishek ojha
*Java Developer*

*Basking Ridge, NJ*

*6 Months *

*Phone then Face 2 Face*

*Need USC or GC only..*

* Skills:*
5-7 years of :

· Java 1.4 & 1.5 or Above

· Spring Core, Integration, Spring MVC

· MyBatis

· Struts

· Ant

· Maven

· Websphere App Server Environments

· Jquery

· Java/J2EE.

· DB2 and SQL.

· SVN


*Below a Plus *

· Jenkins

· Tomcat

· Jboss.

· healthcare appliction experience

· Any leading of Java projects


*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/CAKpcopQJO_F1yRwHinz0_J%2B2KTNfixJSsVzfW78Vgd3RxErTsQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need :UX Designer -Atlanta, GA

2016-12-01 Thread Mani Recruiter
*Dear,*

*Hope you are doing well…..*

*Please send resumes to* *r...@hclglobal.com *



*ROLE*

*UX Designer*

*LOCATION*

*Atlanta GA*

*DURATION*

*LONG TERM*

*RATE*

*DOE*

*CLIENT*

*DIRECT*

*INTERVIEW TYPE*

*Phone*

*State Experience Highly Preferred*

*U.S. Citizens and those authorized to work in the U.S. are encouraged to
apply*

*Note: For H1 While submitting I need consultant I 797 OR ID Proof.*

·  We are looking for a top-notch UX Designer to join our team.

·  They should be an expert in Photoshop.

·  A portfolio and a list of websites they've worked on is required.
There's no interview without one.

·  We'll start with a 3-month contract to test out the candidate and
then can extend for a longer term.





Thank You,

Warm Regards,

Mani

Technical Recruiter

HCL Global Systems Inc.

Desk: (248)473-0720 Ext: 157

Email: r...@hclglobal.com

Web: http://www.hclglobal.com



Certified Minority Business Enterprise (MBE)

___


DISCLAIMER: This message is intended only for the addressee and may contain
confidential, privileged information. If you are not the intended
recipient, you may not use, copy or disclose any information contained in
the message. If you have received this message in error, please notify the
sender by reply e-mail and delete the message.

-- 
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/CAJTn12TousXzpAnuRR3P2AcQvNJcH5QN8fsy0Pm-SVD%2Bk2qvPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] You are needed as || Windows admin || Mountain View, CA....Wipro

2016-12-01 Thread swamil singh
 Hi,


Hope you are Doing well...!!!



I have urgent requirement for below position. Please go through the job
description and if you are interested kindly let me know. Please revert me
on swam...@sysmind.com



*Role*: Windows admin

*Location: *Mountain View, CA

*Experience*: 6+ Years


*JD:*



*Primary Skill *– Windows Server and Storage Administration

*Secondary Skill* –Power Shell Scripting, Excellent communication & written
skills.

*Other Skills* – SQL Server Admin,

*Band: B2*



· Provide troubleshooting and problem resolution for Windows
Server, Storage administration and Knowledge on MS SQL Server related issues

· Windows Server and Storage related hardware design; performance;
security and configuration issues

· Knowledge and understanding of all aspects of Windows Server and
Storage administration: hardware issues, software configuration; memory
usage; data access

· Experience with Windows cloud storage and Exchange servers
management

·  Experience with scripting languages - PowerShell

· Effective time management and problem solving skills

· Ability to participate as a project team member and make
recommendations for routine problem solutions

· Ability to communicate and interact with internal and external
partners to solve problems

· Monitor overall health (performance and functional) of production
and pre-production

· Perform deployments, configuration,  Windows and database systems
administrations in production environment

-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

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



Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

Hangout: swamil.sysm...@gmail.com

Website: www.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/CAP_aUSwqFHM%2BTpZ48pJwiXYs9z-aFe1oGuGL1YPN_xHHiUZM9g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] A survey on compatibility issues caused by Android fragmentation

2016-12-01 Thread Lili Wei
Hi,

I am a student in HKUST. Our research group is investigating topics related 
to compatibility issues caused by Android fragmentation.
We have published a paper on this topic. If you are interested in it, you 
can find a copy here .

Now we are conducting a survey among Android developers, testers or 
managers to better understand compatibility issues from the developers' 
side.
The survey will only takes you one to two minutes. Your participation is 
very important to us. If you are interested, please find the questionnaire 
with the link:
https://goo.gl/forms/9WRRINcFQqPvQaRB2

Your response will only be used for research purpose.
Thanks a lot!

Lili Wei

-- 
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/b5b92f96-6162-46a7-a8df-b93cb57841f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] UPDATED HOT-LIST 12/1/2016

2016-12-01 Thread Acha Hotlist
Hello,



Hope you’re doing great today.

Please find the below HOT-LIST and let me know any suitable requirements
for our consultants.



*Name*

*Technology*

*Location*

*Experience*

*Relocation*

Salma Bhanu

.Net Developer

Aberdeen, SD

12+

Yes

Sudeep Katiki

Informatica

Madison, WI

9+

Yes

Motti Javare Gowda

Hadoop Developer

Lisle, IL

7+

Yes

Satheesh Reddy

Open stack Engineer

Dallas, TX

7+

Yes

Rakesh N

Salesforce Developer

Dover, NH

8+

Yes

Eeshan Sharma

DevOps Engineer

Tampa, FL

8+

Yes

Maruthi Rajan Rekkala

UI Developer

Atlanta, GA

7+

Yes

Hari Charan

.Net

Los Angeles, CA

7+

Yes

Suresh Mekarthi

Senior .Net Developer

Louisville, KY

8+

Yes

Ushakar Reddy Rondla

Service Now Developer/Admin

Richardson, TX

7+

Yes





Thanks & Regards,



*Acha Ayyappa*

*CNET Global Solutions, Inc *

*Certified Minority Business Enterprise (MBE)*
800 E. Campbell Road, Suite # 345 Richardson, Texas 75081
Phone: 972 782 4306|| Fax: 972-692-8828
Email: a...@cnet-global.com  || *Hangouts:*
acha.requireme...@gmail.com 



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*



*P*Please consider the environment - do you really need to print this email?




Note: We respect your Online Privacy. This is not an unsolicited mail.
Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include Contact information and a
method to be removed from our mailing list. 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. I am sorry for the
inconvenience caused 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/CAP%2Bb5tGNQHqRaogpP%3DuMY1HLM90deoT4_w9vzD60zL4Y_ETxEg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Need - Sr. Data Network Engineer

2016-12-01 Thread Mohammad Imran
Hi Partner, I hope you are doing great! Please share profiles for the below
position.

 

Title: Sr. Data Network Engineer 

Location Omaha, NE

Visa: H1/GC/USC

Contract: C2C

 

Face to face interview.

 

To Consult/lead architecture efforts within client Data Centers.  They are
looking to move from a traditional Cisco Data Center infrastructure ot Nexus
7/5/2 to a ACI Spine/Leaf deployment.  

 

Needs experience in ACI Deployment, also senior level R/S Engineer with
moderate F% knowledge

 

 

 

 

Best Regards,

Mohammad Imran Uddin

Manager Talent Acquisition

IDC Technologies Inc.

1851 McCarthy Boulevard, Suite 116, Milpitas, CA, USA, 95035.

Ph - 408-459-5636 Fax - 408-608-6088

Email -  
mohammad.ima...@idctechnologies.com

URL- .   www.idctechnologies.com

CMM LEVEL 3 Company & ISO 9001-2008 Certified

 

"Under Bill s. 1618 Title III passed by the 105th U.S. Congress this mail
can not be considered spam as long as we include a way to be removed from
our mailing list. Simply send us an e-mail with REMOVE in the subject and we
will gladly REMOVE you from our mailing list."

 

-- 
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/58405087.4d59240a.6205f.19bcSMTPIN_ADDED_BROKEN%40gmr-mx.google.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] need A Oracle SOA Consultant || Kansas City, MO || 12+ Months || No H1B||

2016-12-01 Thread Mohammad Wasim
Hello All,

Please find the Job Description and let me know the interest. Please reply
at wa...@sourceinfotech.com.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start:



*Oracle SOA Consultant*

*Kansas City, MO*

*12+ Months*

*Phone Hire*



*Any Visa is OK (But NO H1’s) !!*



*Requirements :*



   - 8-9+ years of Software and/or System Integration development
   - 5+ years of experience with Oracle SOA Suite 11.1 and above.
   Preferably, experience with Oracle SOA Suite 12c.
   - High level understanding of SOA and Web Service development concepts
   and patterns
   - Expertise in common protocols and technologies such as XML, SOAP,
   REST, XSLT, HTTP, XQuery
   - Development of Proxy and Business services utilizing Oracle Service Bus
   - Development of SOA Composites. Implementation of Mediator, BPEL, JMS
   and DB Adapters, and Human Workflows
   - Expertise in the use of Oracle MDS
   - Well versed in the use of SubVersion for source code management
   - High level understanding of the WebLogic container and configuration
   of objects such as JMS, Datasources, Adapters, etc.
   - Excellent oral and written communication skills.
   - High degree of understanding of Relational Database concepts,
   preferably Oracle 11g and above.



**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*W: *6099450420*| F: 732-909-2282|

Email: *wa...@sourceinfotech.com *|Website:
*www.sourceinfotech.com*  |



*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. 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/CANdkWrR5ozBKmk%3D4nX-PvKhfDjjOkCFQWUa3%2BDBxGSz0DAc_Lw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement for QA/Test Analyst Location is Albany, NY

2016-12-01 Thread Rajesh Kumar Behera
-- 

Hi Partners,



Hope you are doing  well !!!

*Please share your consultant profile below position at*
raj...@tekinspirations.com



QA/Test Analyst

Location is Albany, NY



Hello – we need a skilled QA/Test Analyst with *extensive Claim Test
Pro* experience
to join a project of ours immediately.



Desired skillset is:

· QA Testing

· CTP

· Training

· QNXT

· Medicare/Medicaid

· Healthcare


*Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

E: raj...@tekinspirations.com 

W: www.tekinspirations.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/CAHc%3DgbpymPKDdUP67DO2F0_U05n6Q10rpe28zS5yPJbixMr8NA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need : Technical Business System Analyst : Columbus, OH

2016-12-01 Thread Rahul Kushwaha
HI,



Please find the Requirement below and share suitable resume to
rahul.kushw...@nityo.com

*Role : Business System Analyst / Technical Business Analyst*

*Location - Columbus, OH*

*Duration – 12+Months*

*Experience : 9+Years*

*Domain : Banking / Finance*



*Visa Copy and Photo ID is must at the time of submission*



*Qualifications:*

• Bachelor’s Degree within a technical field.

• 5 years of hands-on experience as a Business Systems Analyst,
Systems Analyst, Technical Analyst or a related discipline with an emphasis
on delivering cutting edge technology within finance.

• Strong verbal and written communication with the ability to
forge lasting relationships with the scrum team(s) you are part of.

• Strong analytical and problem solving skills.

• Experience of working with Agile Development teams.

• Ability to read Java code and service definitions in order to
understand existing system behavior.

• SOAP, XML, JSON and other similar web service
protocols/technologies.

• SQL and database scripting.

• Behavioral Driven Development (BDD) using Gherkin scripting
language.



*Preferred Knowledge and Experience*

• Retail/Consumer banking and investment products.

• Programming Languages (JavaScript preferred).

• Appreciation of responsive web design.

• Experience of working with JIRA.


--





Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Regards*



*Rahul Kushwaha*
Desk : 6098530818 Extn2114

Fax : 609 799 5746 rahul.kushw...@nityo.com
www.nityo.com
https://www.linkedin.com/in/rahul-kushwaha-3816b994

--

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/CAD4f0d3H%2BKdu1nVwhZA0xuYTJjNv%2B1%2Bhe5m7gu8R24g8tDkssQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: [FWD: Urgent need:: Spring boot Micro Services with Java with SOLR::Bothal, CA]

2016-12-01 Thread ranjeet majumdar
>
>
>
> Role- Spring Boot Micro Services, Angular2 Developer
>
> Location- Bothell, WA
>
>
> Developer with good experience in
> Spring Boot Micro Services, Angular2 JS, Deploying micro services in
> Pivotal cloud foundry, SOLR and IBM commerce.
>
>
> Best Regards,
> *Ranjeet Majumdar* | SYSMIND, LLC
> [image:
> https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]
> Phone: 609-897-9670 x 5117 <(609)%20897-9670>
> Email: ranje...@sysmind.com
> Website: www.sysmind.com
> Address: 38 Washington Road, Princeton Junction, NJ 08550
> Gtalk: ranjeet.sysm...@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/CADUE5J-%2B4cMhgcJCTikKScEOubr%2B32RnKPrtonchw2Xcs%3DTj6g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Business Analyst (Must have Oracle PL/SQL Programming background) at Southfield, Michigan

2016-12-01 Thread Rajesh Kumar Behera
Hi Partners,



Hope you are doing  well !!!



*Please share your consultant profile below position at*
raj...@tekinspirations.com



Business Analyst

Location: Southfield, Michigan

Opening Business Analyst with Must have Oracle PL/SQL Programming
background.

 *BUSINESS ANALYST*

At our company, we want every colleague to THRIVE. We seek individuals who
will be fully committed to delighting our customers in every interaction.
We take pride in the fact that our company attracts candidates with
unparalleled experience and expertise to drive innovation, growth and
sustainability across our business. We hope YOU will consider joining us.
Find out why so many top professionals choose our company and how we
encourage each colleague to pursue his or her career goals. You can learn,
grow and prosper at our company because we are committed to providing you
with outstanding opportunities today and tomorrow.

·  Self-directed

·  10 years’ experience in the IT industry

·  Automotive knowledge preferred

·  Preferably a former developer

·  Working knowledge of Unix/Oracle PLSQL solutions

·  Comfortable with all Microsoft office tools

·  Extensive experience gathering business and technical requirements

·  Working knowledge of TOAD,  SQL Navigator or SQL Plus

·  Experience with conversion from mainframe to open systems technology a
HUGE plus

·  Excellent communication skills

·  Tech BA

·  Documentation

·  Testing



 *Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

E: raj...@tekinspirations.com 

W: www.tekinspirations.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/CAHc%3Dgboz-EPX0TYpEvAtU%3D2OkE3wouz9RybLFTahPvsbt5%2BxkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: SAP Functional APO Consultant, Redmond, WA

2016-12-01 Thread aman tanwar
Share Resume on ama...@nityo.com

*Positions: SAP Functional APO Consultant*

*Location: Redmond, WA*

*Duration: 12+ months*



*Summary:*

"For Microsoft Account, we need SAP APO Consultant - Experience in APO
GATP, SNP & DP are requried" Role  SAP APO GATP/SNP/DP.

• Design and configure solutions to support assemble-to-order planning and
sales order confirmation scenarios.

• Design and configure solutions to support build to stock planning and
sales order confirmation scenarios

• Detail configuration and system capability knowledge and system gap for
multi-level ATP (MATP), PPDS production planning, SNP heuristic, GATP
rule-based ATP, Demand planning book with realignment.

• Define functional specifications for custom program, user exit, required
in APO GATP and integration with ECC SD.

• Unit test and E2E test with APO SNP, GATP, and ECC SD.

• Have minimum of two end-to-end implementations for DP, SNP heuristics,
GATP RBA rules, MATP with ECC SD integration.

• Demonstrated strong DP/SNP configuration and technical skills including
history data mapping, APO BW design, Statistical models analysis and
selection (best fit vs. specific models), Macro development, Proportion
factors, Demand aggregation and disaggregation, Final demand release to
SNP, forecast consumption/reduction, SNP heuristic, SNP aggregate planning
and hierarchy, SNP macro development.

• Experience in finished goods planning and repair planning functionalities
and mapping them to DP and SNP solutions.

• Strong working knowledge of SAP ECC master data and transaction data, CIF
integration models, and troubleshoot CIF issues.

• Additional experiences with Ariba cXML message types and integration will
be preferred.
• Configuration experience in SAP APO GATP, SAP SD Order to Cash processes
- Make to Order, Make to Stock, Third Party Order, Drop Ship and
Intercompany Sales, Inbound Outbound Deliveries.


*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_z56TPqBGXaEgc-kANaBx-V7sHrzLqLWcFie15N_%3DZS_VQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: Techno Functional Business Analyst, Thousand Oaks, CA

2016-12-01 Thread aman tanwar
Share Resume on *ama...@nityo.com *





* Positions: Techno Functional Business Analyst Location: Thousand Oaks, CA
Duration: 12+ months Summary:*
1.Technical background on BI/Visualizations – Tableau and Spotfire
2.Functional knowledge of Life Sciences publications process will be value
add
3.Excellent communications and business client handling skills
4. Experience with Agile / Scrum
5. Experience in driving requirements and design workshops


*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_z4V36ydcKH_zeL%3DNQhzz7j6g5ZsQOm6kmUH_q99CVBHng%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Need for a C++ Developer for Spring Valley NY

2016-12-01 Thread peteradroitco


*Role: C++ Developer*

*Duration: 1 year +*

*Location: Spring Valley, NY*

*Interview Mode: Phone+ In-person/Skype*

*Job Description:*

 

C++ developer with Linux/ Unix, Socket programming, Multithreading, TCP/IP.

Verizon experience highly preferred.

 

*Awaiting for your quick response.*

 

 

 

*Thanks & Regards*

 

*Peter *

*Senior Recruiter*

*945 Lakeview Pkwy, Suite # 170*

*Vernon Hills, IL 60061*

*Call : 847.874.7198 | Fax : (877) 448-7376*

*Email :  **pe...@adroitco.com ; 
peteradroi...@gmail.com **|Web : www.adroitco.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/2d7b1fd2-21eb-4cf8-b3af-a0f8f5e57913%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate :: Core Java Lead Developer :: Austin, TX

2016-12-01 Thread Amit Kumar
*Hello,*

*Hope you are doing great!!!*
*We have the following requirements as below, please go through job
description and let me know  on *
*609-897-9670 x 5124,* <609-897-9670%20x%204013>* Email: *
*am...@sysmind.com *

*Reply ASAP (Only GC and USC)*




*Position  : Core Java Lead Developer*

*Location : Austin, TX*



*Duration : 6 Months+*


*Job Description :*Minimum 6+ yrs of proven hands-on Software Development
experience using core Java required.
Object Oriented analysis and design using common design patterns.
Profound insight of Java and JEE internals (Classloading, Memory
Management, Transaction management etc)
Excellent knowledge of Relational Databases, SQL and ORM technologies
(JPA2, Hibernate)
Experience in the Spring Framework
Must have good experience in application development using Core Java;
JAX-RS - Java API for RESTful Web Services required
Experience developing and consuming SOAP and RESTful web services required.
Must have strong working experience with XML,XSD and WSDL, Web Services.
Experience in developing web applications using at least one popular web
framework (JSF, Wicket, GWT, Spring MVC)
Experience with test-driven development.












*Thanks and Regards,*



*Amit Kumar* | SYSMIND, LLC


*Technical Recruiter*

Phone: 609-897-9670 x 5124

Email: am...@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/CALtO%2BBEZ%2BEw2Y_r6FPtsC42Ym7m-KZJk41XA9spQmB-A154DtA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] newbie needs help - play a sound when app opens

2016-12-01 Thread Steve Gabrilowitz
And in which of the lifecycle methods did you place this code?

On Dec 1, 2016 9:38 AM, "chicago chuck"  wrote:

> Thanks for the reply Steve.
>
> I have the following in my MainActivity.java:
>
> MediaPlayer mediaPlayer = MediaPlayer.create(context, R.raw.mysound);
> mediaPlayer.start();
>
> But Studio doesn't like context for some reason (cannot resolve symbol).  I 
> do have
> import android.media.MediaPlayer;
>
>
>
> On Wednesday, November 30, 2016 at 6:10:31 PM UTC-6, Steve Gabrilowitz
> wrote:
>>
>> I suggest that you do a web search for "android life cycle".  The
>> information you find there will not only answer your question but provide
>> you with some basic knowledge that any android developer must know!
>>
>> --
> 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/4ac16e38-ab12-4899-8234-
> c3b2e00c9ee3%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/CABfabRhMdPwSsdyqC1C9Qk0hoEKZxoDtdfTo66xG%2B8bq84u2XA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ***Account Executives, Sales and Recruitment Managers

2016-12-01 Thread venkata . kamaraju
***Opportunities***Account Executives, Sales and Recruitment Managers

Division: IT consulting services
Markets: USA, Canada

Please send resumes h...@ekriya.us
Best Regards,
Human Resources
*eKriya Solutions *| 
http://www.eKriya.us/wp/ 

-- 
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/8df46e7a-ed06-4316-bedb-90499012f3ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need || Jenkins Administrator || Salt lake city UT....passport no. must

2016-12-01 Thread swamil singh
Hi,


Hope you are Doing well...!!!



I have urgent requirement for below position. Please go through the job
description and if you are interested kindly let me know. Please revert me
on swam...@sysmind.com



*Role*:Jenkins Administrator

*Location*: Salt lake city UT

*Experience*: 6+ Years

*JD:*

*Basic Requirements:*

• BS in Computer Science, Information Systems or related
technical degree.

• 3+ years experience with build and release automation in a
Linux environment.

Preferred Qualifications:

• Experience with Jenkins, Bamboo, Hudson, Nexus, Ant, or
similar continuous integration tools.

• Familiarity with continuous deployment tools such as
Saltstack, Ansible, Chef, or Puppet a plus.

• Demonstrated ability to install, configure, upgrade, and
support build servers.

• Understanding of version control systems like Git, SVN,
Perforce, etc.

• Familiarity with test automation frameworks.

• Working knowledge of Git repositories and commands.

• Experience with shell scripting.

• Some software development background a plus.





*Responsibilities:*

• Provide work effort and subject matter expertise in state of
the art continuous integration tools.

• Configure and maintain release automation jobs.

• Help troubleshoot issues with builds and deployments.

• Install, configure, upgrade, and administrate build servers
and clients across multiple environments and data centers.

• Employ best practices to ensure high availability of deployed
build servers and clients.

• Respond to and resolve build server access and performance
issues.

• Coordinate with primary stakeholders and participate in
strategic release planning.

• Implementation of standards and controls to improve release
processes and procedures.

• Provide technical assistance with builds and ensure teams are
trained.

• Work across IT and engineering teams to identify and
recommend continuous improvements.

• Develop and maintain documentation and troubleshooting
playbooks detailing usage, standards, and procedures.

• Build faster, build better, build smarter and let coders
focus on coding!

-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

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



Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

Hangout: swamil.sysm...@gmail.com

Website: www.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/CAP_aUSxnF1RPXasc4k2N0uhcwKx%2BQgKVUToU3riRrBhE-i7tLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need || Tableau Developer || Salt lake city UT.....Passport No. Must

2016-12-01 Thread swamil singh
Hi,


Hope you are Doing well...!!!



I have urgent requirement for below position. Please go through the job
description and if you are interested kindly let me know. Please revert me
on swam...@sysmind.com



*Role*: Tableau Developer

*Location*: Salt lake city UT

*Experience*: 6+ Years


*JD:*

Responsibilities

•  Participate in the development of strategic goals for
leveraging big data.

•  Install, configure, and maintain BI applications, systems,
and servers.

•  BI application and systems performance tuning.

•  Collaborate with the big data team to optimize and enhance
data structures to be used in BI solutions.

•  Work with various teams to develop both static reporting and
interactive visualization solutions.

•  Perform ad-hoc reporting and visualization duties as
assigned.

•  Work with big data team to ensure data is always available,
reliable, and clean.

•  Proactively monitor BI application and system performance.

•  Conduct research and make recommendations on BI products,
services, and standards.

Basic Requirements

•  BS in Computer Science, Information Systems, or related
technical degree.

•  3 or more years experience with Tableau development and
administration.

Preferred Qualifications

•  High expertise in writing SQL and other data extraction
scripting.

•  Outstanding visualization design skills.

•  Understanding of data warehousing techniques including star
schemas.

•  Experience developing interactive dashboards in Tableau.

•  Experience with Tableau application and systems
administration.

•  Experience combining multiple Tableau data sources.

•  Experience extending and customizing Tableau visualizations
with JavaScript.

•  Experience with Elasticsearch and Kibana is a plus.


-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

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



Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

Hangout: swamil.sysm...@gmail.com

Website: www.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/CAP_aUSygPJDYRJ9Hxi%2B6JSykn9B9%3DnmH90R%3DpvzMya6W1u9j9g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] We are looking for a .NET backbone.js/Marionette.js Developer at Cleveland, OH

2016-12-01 Thread Sandeep Sam
Hi,


Greetings from InsaSys..!!

Following is the opening with one of our client based in the *Cleveland,
OH*.If you are available and interested please revert back with your
updated resume so that we can discuss further.


*Role   : .NET backbone.js/Marionette.js Developer*

*Location   : Cleveland, OH*

*Duration  : Long term Contract*



*Job Description:*

· Must have - *backbone.js OR marionette.js (Preferred if both the
skillsets involved)*.

· Minimum 7 years’ experience as Developer on .NET technologies
like ASP.NET  MVC(5), C# and Web API.

· Solid understanding of Object Oriented programming(OOP)

· Strong experience in using Entity Framework and LINQ.

· Experience with JavaScript, jQuery, HTML5

· Must have a good experience using backbone.js/Marionette.js.(
Mandatory)

· Good Knowledge of Single Page Application

· Knowledge of Bootstrap will be an added advantage







Thanks and Regards
Sam
InsaSys LLC|103 Carnegie Center |Suite 300 |Princeton,  NJ 08540
s...@insasys.com| Fax: 848-260-3669|www.insasys.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/CAPUvgPCq2UJN4xqbWj4tHxP%3DtnYhvGP3tTRBywPALOMrB%2B-0zg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for Business System Analyst at Atlanta, GA

2016-12-01 Thread USIT Recruiter
*Hi *



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



*Job Title: Business System Analyst*

*Duration: 6+ months*

*Location: Atlanta, GA*





*Job Description :*

*Looking for a senior Business Systems Analyst with the following
responsibility - Meet with the business to gather requirements and identify
areas of process improvement and automation while designing the technical
approach and System requirements and partner with Development team to
develop and test the business requirement*.



*Job Requirement :*

· Business and data analysis with *hands-on experience with Release
12 version of Oracle E-Business Suite specifically the Finance modules*.

· Exposure to IFRS guidelines is a huge plus.

· Outstanding communication skills are required.

· Must be a self-starter and willing to take ownership of critical
work streams.

· Background in Telecommunications .





*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

*An Oracle Recognized Partner & *An ISO 27001 and 2-1 Certified &
Minority Business Enterprise (CMBE)

*t:*  904-267-0743 *f: *+1 (608) 646 8326

*e:* abhishek.kum...@nlbservices.com | *w:* www.nlbservices.com

*a:* 8613 Old Kings Road South, Unit 303, Jacksonville, Florida 32217

-- 
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/CALnpRi2HKqGFqT32WTgHiCfJyQ%2BVqhoPusUDHcy0tdc1gRgAsA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Sr. Java Developer. at NYC, NY.

2016-12-01 Thread Shaik Salam
Hi Everyone ,
Hope you are doing great,

We have an immediate opportunity for *Sr. Java Developer.* at * NYC, NY*.
Below is the job description and if you’d like to pursue this, please
include a word copy of your latest resume along with a daytime phone number
and rate in your response.

*Send Resume to s...@nytpartners.com *

*Title: Sr. Java Developer*
*Location: NYC, NY*
*(US Citizens only)*

*Description:*

   - Participate in object oriented design, development and testing of J2EE
   intranet applications
   - Develop and maintain Java (J2EE, EJBs, Servlets, JSP), PL/SQL, Web
   Services, Javascript (Ajax, JSON) and HTML code
   - Perform unit testing; resolve defects; and work as part of a team
   reporting to a Project Leader
   - Support existing applications using a variety of technologies,
   including J2EE and PL/SQL
   - Maintain integrity of data managed through system interfaces and APIs
   - Performance tuning as needed
   - Manage and prioritize multiple projects simultaneously
   - Work with others in a collaborative environment
   - Additional assignments as assigned


*Job Skills:*

   - Bachelor's Degree and 5+ years of programming experience required
   - 4+ years Object Oriented Analysis and Design; 2+ years of WebLogic or
   JBoss experience
   - 4+ years of server-side Java (J2EE, Servlets, JSP)
   - 2+ years of Javascript experience preferred
   - 2+ years of Web Services experience preferred
   - 2+ years of PL/SQL and Oracle database preferred
   - Must be able to communicate clearly both verbal and written
   - Must be highly detail oriented
   - Financial systems experience a plus
   - Knowledge of MongoDB, JQuery a plus


*Technical Skills:*

   - Languages: Java, J2EE, Javascript, PL/SQL
   - Tools: SQL Developer, Eclipse
   - Environment: JBoss, Weblogic, Tomcat
   - Operating System: Linux, Database: Oracle 10g and 11g


Thanks and Regards,
Sam
New York Technology Partners – Rochester
332 Jefferson Rd.
Rochester, NY 14623
T1: (201) 680-0200 x 7026
Fax: (201) 474-8533
? s...@nytpartners.com
? www.nytp.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/CAHWKL1i6_i9MLbCWkV3VuQj3L%3D4fVjWySLN56BFCYgKTq7tphg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Local Only----Performance Tester in IA or CA

2016-12-01 Thread Mohd Taher
Hello,
Please share your consultant resume to tah...@usmsystems.com

Performance Tester
Des Moines, IA or San Jose, CA
Long term contract

*Phone and In-person Interview Required!!*

Must have:
Performance testing
Jmeter

Best Regards,

Mohammed Taher
US IT Recruiter
Direct: 703 349 4237
USM Business Systems
Chantilly, VA 20151, USA.

-- 
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/CAL4ROq7BA3ApvEqBkZGdxkyiYXXtH7Nwxazq1P4WfooR1zfbjg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] URGENT REQ **** BUSINESS/ DATA ANALYST ****** WA / Contract

2016-12-01 Thread tejasri surapaneni
Hi,



*Position: Business Analyst / Data AnalystLocation: Seattle, WADuration:
Long Term Contract*



*Job Description:*



*Must Have/Be: *



•Minimum of 5+ years in an Information Technology leadership role
with the following: proven experience with Teradata, Business Objects,
HDFS, Hadoop, Analytics, Data Warehousing and BI.

•Experience with executive-level communications, tracking project
interdependencies, communicating issues & risk, and managing relationships
with business team executives at Sr. Manager, Director, VP and SVP level.

•Proven record of demonstrating proper judgment in managing
difficult situations.

•Expert communicator who can lead and manage senior level
relationships across organizational boundaries.

•Working knowledge of Agile and traditional SDLC methodologies.

•Demonstrated experience approaching technical and business
solutions in a Consultative manner.

•Background in applying best practices to development and
operational processes.

*Must be capable of:*

•Analyzing complex business needs presented by the BI user
Accounting, Finance or Legal user community and/or clients and recommends
technical solutions.

•Defining KPI’s and metrics to identify measurable business impact
based upon business input and business requirements.

•Reviewing and approving all business requirements prior to the
technical solution and defining the business benefit of the BI solution.

•Working independently and support multiple projects while meeting
tight deadlines.



*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/CAD4JY0KhRnqsw9h3piW9WJtX9M_E3mix%3DU%3D-69bQ4dvdta3NDQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Cassandra Developer @ Wilmington, DE

2016-12-01 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: Cassandra Developer*

*Location: Wilmington, DE*

*Duration: Long term*





Experience (Years)  8-10



Required skills:

Excellent skills in Cassandra development - Design tables, running for
performance, running for consumption via web services, reporting tools and
batch

Excellent skills on Data Processing - Using some (or all) of the streaming
and micro-batch frameworks like Spark Streaming, Strom, MapR, Spark.

Good skills in Cassandra administration - Designing for consistency,
Knowledge on load distribution and replication configuration

Good understanding on ETL tool - Ab initio

Cassandra administration on cluster set-up and fail-over

Working with Hadoop HDFS on data validation, processing and computation

Working with large RDBMS Data warehouse







*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/CAHxR9GZe0DJEi_F-a9YzfYCekWTFoov9AMVCafeFP_t5C-9G0Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need QA Engineer, at Okemos, MI.

2016-12-01 Thread Shaik Salam
Hi Everyone ,
Hope you are doing great,

We have an immediate opportunity for *QA Engineer, at Okemos, MI*. Below is
the job description and if you’d like to pursue this, please include a word
copy of your latest resume along with a daytime phone number and rate in
your response.

*Send resumes to s...@nytpartners.com *

*Job Title: QA Engineer*
*Location: Okemos, MI*
*Position: 5 (Level 1, 2 & 3)*
*(US Citizens only)*

*Key Job Responsibilities:*

   - Participate in the testing of applications and processes.
   - Collaborate with the development team and stakeholders to ensure
   testable user stories are created and estimated properly.
   - Support user acceptance testing and perform data validation.
   - Identify test conditions for user stories and administer the test
   plans, scenarios, and cases used in testing based on business requirements
   and/or product knowledge to ensure proper functionality.
   - Participate in scrum team activities, such as user story creation,
   point estimation, sprint planning, sprint review, and sprint retrospective.
   - Execute testing tasks while paying particular attention to the overall
   sprint goal.
   - Execute and maintain manual and automated tests to ensure code quality
   in a continuous integration environment.
   - Develop detailed test scenarios from user stories, identify
   application issues and log bugs as needed.
   - Maintain proficiency with existing technologies and develop skills
   with new technologies.
   - Build and share product knowledge within scrum and QA team while
   consistently represent quality activities and processes.


*Preferable Skills:*

   - Designed and architect modular, reusable automated testing solutions
   that satisfy testing requirements.
   - Analyzed daily regression testing results and coordinate QA Team
   response.
   - Design, maintain, extend, and update the automated testing framework
   as needed.
   - Experience developing automated test scripts using on one of more test
   automation tools (Selenium, HP ALM, Test Complete, MS CodedUI Test, Silk
   Test)
   - Experience working with both Keyword and Data Driven automation
   frameworks.
   - Experience designing and implementing performance test scenarios using
   load testing tools (Load Runner or J Meter).
   - Ability to mentor automation engineers on proper creation and
   maintenance of automated tests.
   - Assesses, guides, reviews and approves the work of other QE’s through
   peer and formal QA reviews.
   - Identifies, leads, influences and contributes to the implementation
   and continual improvement of QA standards, processes and procedures.
   - Experience coding with at least one OO programming language (Java, VB
   .Net, C#, Python, etc.…).
   - Experience with working in CI / CD environments.
   - Experience working with the Atlassian suite (JIRA, Zephyr, Confluence,
   Bamboo).
   - Experience working with Eclipse IDE or IntelliJ IDE and Maven.
   - Familiarity with databases and ability to write and execute SQL
   queries for testing validation activities.


*Required Skills: *

   - Bachelor degree in Information Technology, Computer Information,
   Quality Assurance or related degree. A combination of education, experience
   and training may be considered in lieu of formal degree.
   - Minimum of zero to four (0-4) years’ experience in a Quality Assurance
   role with automated test case definition and execution experience. Minimum
   of five (2) years’ experience writing test plans and procedures, tracking
   errors, documenting results and developing test cases for software
   applications. (note: entry level applicants may use education experience)
   - Evidence of strong analytical and troubleshooting skills driven by a
   logical, methodical approach. Experience testing web-based applications.
   - The ability to perform all of the regular functions commonly required
   in quality assurance testing and strong comprehension of all concepts and
   applications of quality assurance testing.
   - Demonstrated strong verbal, written and presentation communication
   skills with the ability to communicate technical data to a wide variety of
   audiences.
   - Evidence of the ability to perform in a fast-paced, changing
   environment with multiple deadline-oriented projects.
   - Exhibit ability to learn new information and complex business
   functions and apply knowledge to new concepts and projects.

Thanks and Regards,
Sam
New York Technology Partners – Rochester
332 Jefferson Rd.
Rochester, NY 14623
T1: (201) 680-0200 x 7026
Fax: (201) 474-8533
? s...@nytpartners.com
? www.nytp.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 

[android-developers] IMMD NEED: QA Automation Consultant in Columbus, OH

2016-12-01 Thread Mohd Taher
Hello,
Please share your consultant resume to tah...@usmsystems.com

QA Automation Consultant
Columbus, OH
18+ Months

*Need EAD, GC, TN or Citizen Only!!*

Must have:
Automation Testing
Ruby
Cucumber

Best Regards,

Mohammed Taher
US IT Recruiter
Direct: 703 349 4237
USM Business Systems
Chantilly, VA 20151, USA.

-- 
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/CAL4ROq7CA0VuntBNG3AZ9dipvr2g-OhJhxyLtmur0K%2BwERnHTA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] NEED: AS/400 Consultant @ Saint Paul, MN --- Contract

2016-12-01 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: AS/400 Consultant*

*Location:* Saint Paul, MN

*Duration:* 6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:   i-series, RPG, COBOL, XML, SQL, Embedded SQL*



*Job Description:*



v  i-series, RPG, COBOL, XML, SQL, Embedded SQL and MQ Series

v  COBOL, XML, SQL, Embedded SQL, SEQUEL and MQ Series

v  Nice to have skills: Health care domain, analytical and communication
skills



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%2Bxnvqs-r-X%2B3JAFg%2BF5stoY3KmbeyBsN%2BP-Ax-9%3D4TrqQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] UPDATED HOT-LIST 12/1/2016

2016-12-01 Thread Acha Hotlist
Hello,



Hope you’re doing great today.

Please find the below HOT-LIST and let me know any suitable requirements
for our consultants.



*Name*

*Technology*

*Location*

*Experience*

*Relocation*

Salma Bhanu

.Net Developer

Aberdeen, SD

12+

Yes

Sudeep Katiki

Informatica

Madison, WI

9+

Yes

Motti Javare Gowda

Hadoop Developer

Lisle, IL

7+

Yes

Satheesh Reddy

Open stack Engineer

Dallas, TX

7+

Yes

Rakesh N

Salesforce Developer

Dover, NH

8+

Yes

Eeshan Sharma

DevOps Engineer

Tampa, FL

8+

Yes

Maruthi Rajan Rekkala

UI Developer

Atlanta, GA

7+

Yes

Hari Charan

.Net

Los Angeles, CA

7+

Yes

Suresh Mekarthi

Senior .Net Developer

Louisville, KY

8+

Yes

Ushakar Reddy Rondla

Service Now Developer/Admin

Richardson, TX

7+

Yes





Thanks & Regards,



*Acha Ayyappa*

*CNET Global Solutions, Inc *

*Certified Minority Business Enterprise (MBE)*
800 E. Campbell Road, Suite # 345 Richardson, Texas 75081
Phone: 972 782 4306|| Fax: 972-692-8828
Email: a...@cnet-global.com  || *Hangouts:*
acha.requireme...@gmail.com 



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*



*P*Please consider the environment - do you really need to print this email?




Note: We respect your Online Privacy. This is not an unsolicited mail.
Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include Contact information and a
method to be removed from our mailing list. 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. I am sorry for the
inconvenience caused 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/CAP%2Bb5tFNDmFBPG1gvYKknGovLbv2X%3D%2BdggiopsrivyQg%3DxVAPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for IBM Datastage Consultant at Chicago, IL

2016-12-01 Thread USIT Recruiter
*Hi *



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



*Job Title: IBM Datastage Consultant*

*Duration: 6+ months*

*Location: Chicago, IL*



*Job Requirement :*

· IBM Datastage

· Teradata

· IBM Data Mirror





*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

*An Oracle Recognized Partner & *An ISO 27001 and 2-1 Certified &
Minority Business Enterprise (CMBE)

 *f: *+1 (608) 646 8326

*e:* abhishek.kum...@nlbservices.com | *w:* www.nlbservices.com

*a:* 8613 Old Kings Road South, Unit 303, Jacksonville, Florida 32217

-- 
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/CALnpRi0Hvp4c8jJ-Owbu%3DXgghsUZesywkJyAtqUah%3Dyivm386A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Network Design Engineer @ Mount Laurel, NJ

2016-12-01 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: Network Design Engineer*

*Location: Mount Laurel, NJ*

*Duration: Long Term*



Experience: 8-10 Years



Job Summary:

Responsible for designing, implementing and managing the use of

Comcast’s National Converged IP Network. Designs and develops updated

network infrastructure in support of one or more business needs. Ensures

a balance between tactical and strategic network technology design

solutions and considers end-to-end business problems within and outside

the enterprise. Develops and produces converged network best practices

and ensures architectural guidelines are utilized. Acts as a key

contributor in a large complex environment. Determines and pursues

course of action necessary to achieve results. Frequently leads teams on

specific projects providing broad direction and expertise. Usually

determines own work priorities. Acts as resource for colleagues with

less experience.



*Core Responsibilities:*

- Provides configurations and technical leadership as a primary

technical resource on Internet Protocol (IP) router network technologies

(BGP, OSPF, ISIS), traffic flows and overall end to end network

communication.

- Performs a variety of highly complex analytical duties in network

design and IP services for network optimization and produces fundamental

and detailed designs for implementation.

- Analyzes traffic engineering data to forecast network capacity

requirements for efficient network designs and overall cost reductions.

- Performs technical training for regional engineers and

operations/engineering (XNOC) groups on current and future technology.

- Develops test and acceptance criteria for IP networks and provides

technical direction for network problems.

- Maintains the configuration and supports the engineering design life

cycle with proper documentation ensuring that all detailed designs

adhere to network standards.

- Consistent exercise of independent judgment and discretion in matters

of significance.

- Regular, consistent and punctual attendance. Must be able to work

nights and weekends, variable schedule(s) and overtime as necessary.

- Other duties and responsibilities as assigned.

Job Specification:

- Bachelor's Degree or Equivalent

- Engineering, Computer Science

- CCNP required, F5-SEL/SEG preferred, Perl, Python UNIX Scripting

languages a plus

- Generally requires 5-8 years related experience

- This job is being posted for Naperville, IL.  Candidates will also be
considered in Denver, CO and West Chester, OH.







*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/CAHxR9Gat2o_CVjSHyxYaeyS1FkOO36Q1PwRT-YW0HPh6F%3DYbiw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] oracle EBS positions

2016-12-01 Thread chandrakanth itiyam
*Position:1*

*Job Title (as chosen in ECMS L1->L2->L3) Lead Consultant*


* Work Location & Address :Atlanta-GA Contract duration : 6 Months
Exp:9+years*

Job Details: Anchor different phases of the engagement including business
process consulting, problem definition, discovery, solution generation,
design, development, deployment and validation; guide teams on project
processes and deliverables; contribute to effort estimation and proposal
development, client training and internal capability building with the
objective of providing high-quality and value-adding consulting solutions
to customers within the guidelines, policies and norms of Infosys.

Must Have Skills (Top 2 technical skills only)
1. Oracle EBS Financials (GL, AP, AR, Cash Management, SLA, EB Tax)
2. Accounting Background
Nice to have skills
1. Vertex Tax Application


Education/ Certifications (Required) : CA or MBA (Finance)
Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. Resolve high priority Production Support tickets
2. Act as a single point of contact at onsite for Finance area
3. Liaise with offshore team for Production ticket closures

*Position:2*

*Job Title: Lead Consultant*

* Work Location & Address: St. Louis, Missouri Contract duration :3 mounths*


*Exp:10 years Job Details:*

*Must Have Skills (Top 2 technical skills only)*
1. Oracle EBS Warehouse Management(WMS) R12.2 Functional skills
2. Ability to work with offshore India team
Education/ Certifications (Required) : BE/BTECH
*Top 3 responsibilities you would expect the subcon to shoulder and execute*
:
1. Work with client and offshore team and provide functional expertise on
Oracle EBS WMS R12.2 and lead the WMS track with offshore team members in
the project.
Primarily skill needed is Oracle WMS.
2. Work on business process demonstration

3. Status reporting on WMS track deliverables for the project



-- 
Please send resume to my Official mail ID*:** chandrakan...@itiyam.com
*


-- 
Thanks & Regards,

*Chandrakanth Grandhi*
*ITiyam LLC*

chandrakan...@itiyam.com / *(571) 446-4825*105*
*www.itiyam.com *

Under Bill s.1618 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 in the subject heading and your email
address in the body. Include complete address and domain to be removed.
Pursuant to Federal law, if you do not wish to receive future email
messages from us, please reply with "remove" to the same id.

-- 
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%2BBaSkdSQTWfYMLgx0%3DXWsxcCsuOW6cKb6tXm4bG9fO6sTHgwA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] newbie needs help - play a sound when app opens

2016-12-01 Thread chicago chuck
Thanks for the reply Steve.

I have the following in my MainActivity.java:

MediaPlayer mediaPlayer = MediaPlayer.create(context, R.raw.mysound);
mediaPlayer.start();

But Studio doesn't like context for some reason (cannot resolve symbol).  I do 
have 
import android.media.MediaPlayer;



On Wednesday, November 30, 2016 at 6:10:31 PM UTC-6, Steve Gabrilowitz 
wrote:
>
> I suggest that you do a web search for "android life cycle".  The 
> information you find there will not only answer your question but provide 
> you with some basic knowledge that any android developer must know!
>
>

-- 
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/4ac16e38-ab12-4899-8234-c3b2e00c9ee3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hotlist

2016-12-01 Thread Kavitha csr
Hi Partner,

Greetings from *CSR Infotech Inc,*

Please share your direct client requirements to *kavi...@csrinfotech.com*


*SKILL*

*LOCATION*

*RELOCATION*

*AVAILABILITY*

*QA ANALYST*

*NJ,NY*

*Yes*

*Immediately*

*QA SELENIUM TESTER*

*IL*

*Yes*

*Immediately*

*BUSINESS ANALYST*

*NC*

*Yes*

*Immediately*

*ETL QA*

*NC*

*Yes*

*Immediately*

*SALESFORCE DEV*

*NY*

*Yes*

*Immediately*

*JAVA/J2EE DEV*

*CT*

*Yes*

*Immediately*

*WORKDAY*

*FL*

*Yes*

*Immediately*

*LINUX*

*NC*

*Yes*

*Immediately*

*VMWAER ADM*

*GA*

*Yes*

*Immediately*

*.NET DEV*

*WI*

*Yes*

*Immediately*



Looking forward to work with you soon!
-- 

*Thanks & Regards*

*​KAVITHA*
*Professional Recruiter *
*CSR INFOTECH INC​*
Ph: ​​305-851-3786 / E: kavi...@csrinfotech.com
​450 West Broad St, suite# 214 Falls church VA 22046.

-- 
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/CAKwxXNpk1OPjJEXx0e_5Ta%3DmT5HPNuD2wdotb1PaYcGnjOzU3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] List of Available Consultants –Scepter Technologies.

2016-12-01 Thread Technical Consultants
Dear Business Partner,

 Greetings from Scepter Technologies, Hope you are doing great.

 This is Peter from Scepter Technologies Inc. I am really glad to introduce
my list of available consultants for your various Corp-Corp projects.

Please add pe...@scepter-tech.com to your distribution list & share your
Corp-Corp open positions on daily basis.



*Name*

*Title/Position*

*Relocation*

Shivaprasad

Sevicenow Developer

OPEN

Preetham

JAVA Developer

OPEN

Akshara

OBIEE Developer / BI Publisher

OPEN

Pramod

Network Engineer

OPEN

Rohini

Application Packager

OPEN

Chandra

Hadoop Consultant

OPEN

Swarna

Hadoop Developer

OPEN

Hari Prasad

Hadoop Developer

OPEN

Suresh

AWS Engineer

OPEN

Karthik

Tableau Developer

OPEN

Prudhviraj

JAVA Developer

OPEN

Kavya

UI Developer

OPEN

Shamitha

.NET Developer

OPEN

Harmandeep

MSBI Developer

OPEN

Monica

UI Developer

OPEN

Amer

Application Packager

OPEN

Sriram

Hadoop Developer

OPEN

Sanyo

DevOps Engineer

OPEN

Shasidhar

SAP BO

OPEN

Sudheer

ETL Developer

OPEN

Shylesh

ETL Developer

OPEN

Sirisha

Salesforce/JDE

OPEN

Shivakanth

AWS Engineer

OPEN

Deepasree

Splunk Administrator

OPEN

Sai Sudha

.NET Developer

OPEN

Pawan

JAVA Developer

East Coast

Kishore

Storage Engineer

OPEN

Praveen

QA Lead

Austin, TX

Deepthi

Application Packager

AZ & CA

Bala

SCCM Packaging

OPEN

Rakesh

Hadoop Developer

OPEN

Anoop

VMWare Consultant

OPEN

Sindhusha

JAVA Developer

OPEN

Dileep

JAVA Developer

OPEN

Sai

Citrix Engineer

OPEN



*Regards,*

*Peter*

**

pe...@scepter-tech.com 

*Scepter Technologies, Inc.*

9256 Bendix Road, Suite 104

Columbia, MD 21045

www.scepter-tech.com


CONFIDENTIALITY NOTICE: The information in this email may be confidential
and/or privileged. This email is intended to be reviewed by only the
individual or organization named above. If you are not the intended
recipient or an authorized representative of the intended recipient, you
are hereby notified that any review, dissemination or copying of this email
and its attachments, if any, or the information contained herein is
prohibited. If you have received this email in error, please immediately
notify the sender by return email and delete this email from your system.

-- 
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/CAMJEDjri_X_b%3DG%3D_iK6BQU4ggVnuHXgzFKDZA5vxCvjJO9A9EQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need :Sr Business Analyst -Columbus, OH (In-person Only)

2016-12-01 Thread Mani Recruiter
*Dear,*

*Hope you are doing well…..*

*Please send resumes to* *r...@hclglobal.com *



*ROLE*

*Sr Business Analyst*

*LOCATION*

*Columbus OH*

*DURATION*

*LONG TERM*

*CLIENT*

*DIRECT*

*INTERVIEW TYPE*

*In-Person Only*

*Local candidates strongly preferred*

*ALL candidates MUST be able to attend a personal interview, NO phone
interviews, NO Skype, NO exceptions*

*State Experience Highly Preferred*

*U.S. Citizens and those authorized to work in the U.S. are encouraged to
apply*

*Note: For H1 While submitting I need consultant I 797 OR ID Proof.*

*Mandatory Requirements/Time*

·  7 years’ experience in the analysis, documentation of business
requirements functional and non-functional

·  7 years’ experience creating application prototypes and screen
mockups

·  7 years’ experience creating graphical representations of complex
business processes

·  7 years’ experience in using Microsoft products; Visio, PowerPoint,
Excel and Word

·  7 years’ experience facilitating workshops for requirements gathering

·  5 years’ experience managing requirements on several projects at the
same time

·  7 years’ experience in analyzing data elements of enterprise
applications; determining how the data elements relate to each other

·  6 years’ experience with business process modeling methods and
techniques

·  7 years’ experience performing Gap analysis As-Is/To-Be for large
applications



*RIMS projects.*

·  RIMS is the modernization of our Roadway Inventory maintenance,
editing and distribution of related data to system throughout the enterprise



*Requirement Description* short description on what they will be working
on, objectives, and tasks/deliverables

·   Work with business units and other stakeholders to gather
requirements, using techniques like interviews and requirement gathering
sessions.

·   Elicit, analyze, document, and communicate business requirements as
well  translate them into more detailed user stories and/or use cases, and
other functional requirements documents such as process flows, screen
mock-ups, gap analysis (also known as Business Requirements Documents)

·   Create documents and other artifacts to promote sustainable
knowledge management within the organization.

·   Work closely with the program manager, project manager and senior
business analyst.



·  Experience conducting Facilitated Workshops for requirements analysis
.

·  Experience creating workflows using formal notation such as the Busin
ess Process Modeling Notation (BPMN).

·  Knowledge of formal requirements gathering methodologies.

·  Experience developing Business Requirements - project initiation docu
ment, what the needed achievements will be, and the quality measures.

·  Experience developing Functional requirements - describe what the sys
tem, process, or product/service must do in order to fulfill the business r
equirements.

·  Experience developing User (stakeholder) requirements - are a very im
portant part of the deliverables, the needs of the stakeholders will have to
be correctly interpreted. This deliverable can also reflect how the product
will be designed, developed, and define how test cases must be formulated.

·  Experience developing Quality-of-service (non-functional) requirements
 -   requirements that do not perform a specific function for the business r
equirement but are needed to support the functionality. For example: perform
ance, scalability, quality of service (QoS), security and usability.

·  Experience developing Report Specifications - define the purpose of a
report, its justification, attributes and columns, owners and runtime param
eters.

·  Experience developing Requirements Traceability Matrix - a cross matr
ix for recording the requirements through each stage of the requirements gat
hering process.

·  Strong organization and writing skills.

·  Experience developing graphic representations of complex business pro
cesses.

·  Technical skills focusing on Systems Analysis roles.

·  Experience in a leadership role as a Business Analyst.





Thank You,

Warm Regards,

Mani

Technical Recruiter

HCL Global Systems Inc.

Desk: (248)473-0720 Ext: 157

Email: r...@hclglobal.com

Web: http://www.hclglobal.com



Certified Minority Business Enterprise (MBE)

___


DISCLAIMER: This message is intended only for the addressee and may contain
confidential, privileged information. If you are not the intended
recipient, you may not use, copy or disclose any information contained in
the message. If you have received this message in error, please notify the
sender by reply e-mail and delete the message.

-- 
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] Urgent need a ERP Principal Project Manager || Lexington, MA Locals are highly preferable || phone and face to face || No H1B ||

2016-12-01 Thread Mohammad Wasim
Hello All,

Please find the Job Description and let me know the interest. Please reply
at wa...@sourceinfotech.com.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start:



Role:  ERP Principal Project Manager



Location:  Lexington, MA(Locals are highly preferable )



Duration: 10 month



Interview:   phone and face to face



No H1b



Education / Experience:

   - BS/BA degree, preferably in science or business. Advanced degree
   preferred.
   - Extensive project management experience, preferably with successful
   ERP Project implementations.
   - Experienced manager and leader with the ability to manage, coach and
   influence internal and external resources.
   - Familiarity with project management tools and/or software package.
   - Formal training, including certification, in Project Management a
   definite asset.
   - Operating knowledge of ERP systems, with preference to Microsoft AX

Skills / Pre-requisites:

   - Strategic, tactical and management skills.
   - Team player coupled with an ability to organize, multi-task and work
   independently in a dynamic, deadline driven environment.
   - Excellent communication, problem solving and analytical skills.
   - Ability to rapidly adapt and respond to changes in environment and
   priorities.

Excellent computer skills including the ability to use e-mail and PC
applications (Microsoft Office, Project, Visio)





**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*W: *6099450420*| F: 732-909-2282|

Email: *wa...@sourceinfotech.com *|Website:
*www.sourceinfotech.com*  |



*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. 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/CANdkWrQ%3D7Tz8hMO3J4zyekPhvfM_N%2B0sNNJUvgHOmW1etbNKjg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need---Lead Data Modeler--EAD or GC or Citizens only

2016-12-01 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



I have an urgent requirement from one of my esteem client, I will
appreciate if you can have an eye on the below requirement and send me your
consultant updated profile ASAP.


*Data Modeler*

*Duration – 18 months*

*Location – Columbus, OH*

*EDA or GC or Citizens only*



*Top Three Skills:*

1. Data profiling

2. Source to target Mappings

3. Data Modeling- Logical, Physical, Conceptual

4. Data visualization

5. SQL experience is also very important- We will be trying to use a tool
called Informatica Data Quality to conduct data profiling. If for some
reason we run into issues using this tool, we fall back to SQL.

6. LEADERSHIP and COMMUNICATION- This position is viewed as a
Director-level role in the organization. Candidates need to be able to
effectively and confidently describe and execute on Data Analysis/Modeling
strategies for the program.



Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

-- 
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/CAJT%2BorARu67z6jB27JZA29sYRKSco_N8khuCCye0aJkzLT37_Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] 3+ Month Contract || SharePoint Expert(Development / Administration / Analysis)

2016-12-01 Thread Vishal Ji Awasthi
SharePoint Expert

Pittsburgh, PA. Or Chicago IL.

3+ Month Contract





*Responsibilities: *



*Must have: Development / Administration / Analysis*


* Work collaboratively with the business users and other IT groups to
design, build, configure, and maintain SharePoint sites and site
collections.

* Drive the evolution of governance documentation, designing best
practices, documenting procedures, crafting learning resources, maintaining
disaster recovery procedures, etc.

* Collaborate with business users on "SharePoint Projects" which may
include a combination of requirements gathering, use case development and
analysis, solution design, and project management.

* Work with, and potentially lead the efforts of, other SharePoint Admins,
developers, and contractors for project implementations and day-to-day
support and administration requests.

* Assist the business users with their SharePoint sites and site
collections, answering questions, training the business Admins, suggesting
improvements to their process or methodology, etc.



Involved in Development

* General troubleshooting of problems experienced by SharePoint users, and
collaborative participation with the SharePoint engineers to resolve
problems with the platform.

* Perform duties & responsibilities specific to department functions &
activities.





*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/CAJYEZ98xWk_5mkq1T_yBz%3D9WVy%3D1_FXJ-h0BeWwyU4Nv9wtwcQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] AWS DevOps Engineer@El Segundo, CA

2016-12-01 Thread Santosh kumar Nityo
*URGENT NEED *



Hi,

Hope you doing Well !!!



Here is our Implementing partner Requirement, Please go through the below
requirement and send us suitable consultant with their updated resume,
rates and Contact details ..



*Role:** AWS DevOps Engineer*

*Location: **El Segundo, CA*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Must Have Skills
Senior DevOps coach who has handled very complex/large-scale devOps/CI/CD.
And a very industry savvy devOps coach who knows all aspects of the CI/CD
pipeline, Delivery/Release etc.

Nice to have skills
1. Devops, Jenkins, Chef
2. Agile coach

Desired years of experience* : 10-12 years







*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/CAG0Zfz3zN8FyLseyaoMQEqnLcr4Ku8q4w5wijOxD5cXV62xzvw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IBM InfoSphere DataStage Developer

2016-12-01 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

Here is our Implementing partner Requirement, Please go through the below
requirement and send us suitable consultant with their updated resume,
rates and Contact details ..




*Position: **IBM InfoSphere DataStage* *Developer*

*Location : Chicago, IL*

*Duration: Long term *

*Interview:- Phone/Skype*


*   Description:-*

*Must Have Skills (Top 2 technical skills only)*
1. IBM Datastage
2. Teradata

*Nice to have skills (Top 2 only)*
1. Relevant Certifications
2. IBM Data Mirror

*Top 3 responsibilities you would expect the subcon to shoulder and
execute:-*
1. Work as senior independent developer with client.
2. Develoment, documenting, and testing of relevant tasks.
3. Implementation and Post production support

*Thanks &
Regards,
*

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@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/CANOPGKyqyBnkcn_5CnC1Ua2QJ%2BPKW1me0JciLpjx-SeFW8iCGQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IBM InfoSphere DataStage @ Chicago, IL

2016-12-01 Thread amit yadav
Hi,

Hope you are doing great!



*Role : IBM InfoSphere DataStage*

*Location : Chicago, IL*

*Contract duration (in months)   6+ Months*

*Target Start Date  ASAP*





Job Details:



Must Have Skills (Top 2 technical skills only)

1. IBM Datastage

2. Teradata



Nice to have skills (Top 2 only)

1. Relevant Certifications

2. IBM Data Mirror



Desired years of experience : 5+ Years



Education/ Certifications (Required) :MCA or Btech



Top 3 responsibilities you would expect the subcon to shoulder and execute:





*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/CAKAv6ES46Aspo0dB--Pg1rUSeWUEGmkvvZftVYHUWFUkhVG-OA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: Urgent need::Windows Server and Storage Admin::Mountain View, CA,USA( passport no. mandatory)

2016-12-01 Thread ranjeet majumdar
*Role- Windows Server and Storage Admin.*

*Location: *Mountain View, CA,USA





*JD:*



*Primary Skill *– Windows Server and Storage Administration

*Secondary Skill* –Power Shell Scripting, Excellent communication & written
skills.

*Other Skills* – SQL Server Admin,



· Provide troubleshooting and problem resolution for Windows
Server, Storage administration and Knowledge on MS SQL Server related
issues

· Windows Server and Storage related hardware design; performance;
security and configuration issues

· Knowledge and understanding of all aspects of Windows Server and
Storage administration: hardware issues, software configuration; memory
usage; data access

· Experience with Windows cloud storage and Exchange servers
management

·  Experience with scripting languages - PowerShell

· Effective time management and problem solving skills

· Ability to participate as a project team member and make
recommendations for routine problem solutions

· Ability to communicate and interact with internal and external
partners to solve problems

· Monitor overall health (performance and functional) of production
and pre-production

· Perform deployments, configuration,  Windows and database systems
administrations in production environment





Best Regards,

*Ranjeet Majumdar* | SYSMIND, LLC

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

Phone: 609-897-9670 x 5117

Email: ranje...@sysmind.com

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

Gtalk: ranjeet.sysm...@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/CADUE5J-MZSJjA7Uiq%2B15RHkqdD8tG0OePONmVe%2BAkTd9ioKXWA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] looking for a OBIEE Designer || North of Boston, MA || 5+ months || No h1b ||

2016-12-01 Thread Mohammad Wasim
Hello All,

Please find the Job Description and let me know the interest. Please reply
at wa...@sourceinfotech.com.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start:



*OBIEE Designer*

*Client Location - North of Boston, MA*

*Rate - Market*

*Duration - 5+ months*



*No H1B ( Also Need Visa Copy and Education Details )*



*Key Skills:*


-Oracle OBIEE repository design.



**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*W: *6099450420*| F: 732-909-2282|

Email: *wa...@sourceinfotech.com *|Website:
*www.sourceinfotech.com*  |



*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. 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/CANdkWrRsAcdOWU1uzzOOqSuQtC2OuyHibMxHvZgPa_b%3DfhwY%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Sitecore Developer in Dallas, TX !

2016-12-01 Thread Abhishek ojha
*Position: .Net Sitecore Developer*

*Location: Dallas, TX*

* Need USC and GC only *

The qualified candidate will possess 7+ years of experience in three major
areas, including: Sitecore Development Experience, .NET Development, and C#.



*Description:*

Delivers applications support and maintenance services for software
applications. Responsible for estimating, programming, debugging and
testing of multiple business applications within the environment. Make
changes to existing web applications as well as development and
implementation of new applications. Identifying solutions to fix issues or
errors with the applications. Position is also responsible for mentoring
developers and delegating work assignments.



*Responsibilities for this Position Include:*

*Major Responsibilities: *

The Sr. .NET/Sitecore Developer is responsible for coordinating and leading
the development team.  They will create user information solutions by
developing, implementing, and maintaining .NET based templates, components,
and interfaces.

Assists junior staff members with code reviews, design solutions and
complex issue research

Allocates resources to development projects, manage around release
schedules, and work with manager to prioritize deliverables.

Completes technical analysis, design, coding and testing for development
and support initiatives.

Leads testing efforts by evaluating failed test cases and performing
appropriate coding fixes, as well as supporting coding changes resulting
from user acceptance testing.

Design and develop user interfaces to internet/intranet CMS applications by
setting expectations and features priorities throughout development life
cycle; determining design methodologies and tool sets; completing
programming using languages and software products; designing and conducting
tests.

Provide training and guidance on development techniques and best practices
using Sitecore.

Provides accurate and timely status reporting as needed, including task and
time reporting.

Constantly learns and improves technical knowledge and expertise during
software development.

Uses standard patterns and practices to implement scalable, high
performance application frameworks for enterprise applications.

Assists the Project Manager in the management of the complete application
software lifecycle with little or no guidance.

Adheres to all corporate guiding principles, processes, policies, standards
and procedures.

Creates test plans and test necessary installations for deployment of an
application.

Creates proper technical documentation.



*Minimum Education & Certifications Required: *

High School diploma or equivalent required.

Bachelor’s Degree in MIS, Computer Science or equivalent work experience
strongly preferred.

Relevant technology certification is encouraged.



*Experience & Skills Required: *

7-8 plus years of hands on experience developing, implementing and
delivering application development solutions for either enterprise level
projects or departmental projects .

At least 2 years of experience in implementing websites using Sitecore CMS·
Experience in .net Framework 3.5 and above.

Solid understanding of UX and UI design with an emphasis on intuitive,
slick, modern designs.

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.

Experience integrating ESBs and third party APIs.

Demonstrate excellent verbal and written communications skills and
effectively collaborates with other team members and project stakeholders.

Ability to estimate project deliverables within a 10% variance to the
actual completion time.

Ability to effectively handle multiple tasks and manage workload based on
project deadlines and priorities.

A working knowledge of front end technologies, including CSS, HTML5 and
Javascript standards.

Excellent problem solving and troubleshooting skills.

Core Technologies such as:



*Microsoft Technologies* - C#, ASP.Net, SQL, Visual Basic, CSS3 , ASP,
JavaScript, JSON,HTML5

*Web/Server Technologies – *IIS, .NET Framework, SSL, Browsers

*Relational Databases* – SQL Server, DTS Packages, SQL 2000/2005

*Others*– Sitecore, XML, HTML/DHTML, CSS, Web Services, UML, Telerik


*Thanks & Regards,*

*Abhishek Ojha*

* 732- 837- 2138 aojhaATsagetl.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/CAKpcopRTDSqnPSk0f2ZdHrs-GvrZ9V8VUoBY6Uwx9Kh0DJ%3DkOA%40mail.gmail.com.
For more options, visit 

[android-developers] How can I add beta tester to Google Play Developers Console by Google Play Api? When I try I get this message: Invalid value for googleGroups

2016-12-01 Thread Кирилл Авдеев
So, how I can add beta tester to Google Play Developers Console by Google 
Play Api? When I try do it, i get such message: "message: Invalid value for 
googleGroups". I send HTTP request to the address like 
this: 
"https://www.googleapis.com/androidpublisher/v2/applications/com.attracti.m3cyber/edits/$editId/testers/beta?access_token=$access_token;.
 
What wrong?

-- 
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/6fa24056-98e5-443c-967f-8f7e93648515%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] NEED: Cassandra Admin @ Houston, TX 77073 --- Contract

2016-12-01 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:  Cassandra Admin*

*Location:*  Houston, TX 77073

*Duration:*  6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:   Cassandra/NoSQL DBA*



*Job Description:*



v  Must have 5+ years of DBA experience

v  Must have *Cassandra/NoSQL DBA experience*

v  *Cassandra Administration,* hands on experience with 2-3 live projects

v  Strong client facing and communication skills

v  Knowledge of replication, backup, and disaster recovery design

v  Knowledge of system sizing, capacity planning and performance tuning.

v  Excellent communication skills (written and oral)

v  Knowledge of IT governance and work management processes



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

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

Gmail: martinzeller0...@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/CAJkGZ%2BxZ-hY%3Dnuv0v0M4KgV7YPyxpCMGcpQUoo8e%3Demh0%3D7Wiw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Face recognition using Android Mobile Vision

2016-12-01 Thread T Thomas
Hi, 
We have a team here, IF you want we can help you on that part in that 
Application


On Tuesday, November 29, 2016 at 12:59:55 AM UTC+5:30, Anmol Gupta wrote:
>
> I am trying to make an app which takes in 2 or more images and detects 
> whether if there is same person in all those images or not. 
> I don't want to use open CV for this as that increases the size of the 
> apk. 
> Also I am unable to get support from elsewhere. If you know how should i 
> proceed, kindly reply on this thread.
> Thanks
>

-- 
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/ce326ae8-43f5-4fc8-9cbf-0ee502c14d04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Tableau Training Developer

2016-12-01 Thread Info Cim
Tableau is a visual analytics platform which means that the visualization 
of data is achieved using complete visual interface. Tableau Training 
Developer  No coding at all and Tableau does 
not come with any form of scripting language. Tableau eliminates 
unnecessary complications, placing the focus on what matters most finding 
value in your data. Tableau’s simple drag and drop interface is easy to 
learn i.e. you don’t need to be a data genius to operate it. Tableau can 
analyze and visualize the data in a better way than any data visualization 
software on the market, no matter how large your data is. Tableau Training 
Tutorial focuses on leading focus consulting and training specialists.

-- 
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/fd07b515-ea15-4eae-afe7-8ab17d6a33cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >