[android-developers] Re: EMMA Code coverage and JUnit

2009-08-25 Thread santosh kumar

Hi All,

what changes you have been done to vold.conf?

and i followed the steps of gobor..

but for me also, emulator is getting stucked..

can you plz help me..

On Aug 25, 2:23 am, Haritha  wrote:
> thanks everyone for posting info on emma coverage.I was also able to
> generate coverage reports for custom tests with necessary changes to
> vold.conf.
> regards
> Haritha
>
> On Aug 20, 6:08 am, Gabor  wrote:
>
>
>
> > Hi All,
>
> > Finally, the emma code coverage measurement is working for me (for a
> > custom project). So here are the steps what you need to make it work
> > (I have tested it, with Java 1.5 on Ubuntu 8.04):
>
> > mkdir android-src
> > cd android-src
> > repo init -u git://android.git.kernel.org/platform/manifest.git -b
> > cupcake
> > repo sync
>
> > # Add emma.jar to the system/core/rootdir/init.rc
> > sed 's/\/system\/framework\/core.jar:\/system\/framework\/ext.jar:/\/
> > system\/framework\/core.jar:\/system\/framework\/ext.jar:\/system\/
> > framework\/emma.jar:/' system/core/rootdir/init.rc > system/core/
> > rootdir/init.rc.tmp
> > mv system/core/rootdir/init.rc.tmp system/core/rootdir/init.rc
>
> > # Rebuild the boot image
> > make bootimage
>
> > # To build the full system image
> > make -j4
>
> > # Set the PATH:
> > export PATH=${PATH}:/<_path_>/android-src/out/host/linux-x86/bin/
>
> > # Build the emma jar itself
> > make emma
>
> > # Setting the environment and additional bash commands. (like
> > m,mm,mmm, choosecombo etc) Notice the space after the dot!
> > . build/envsetup.sh
>
> > # Set EMMA_INSTRUMENTATION to true
> > export EMMA_INSTRUMENT=true
>
> > # Copy your project to development/samples/<_projectname_> or
> > somewhere..:)
> > # Based on the ApiDemo create an Android.mk file for the project
> > directory and the project test directory
> > # The LOCAL_INSTRUMENTATION_FOR value in test dir Android.mk has to be
> > equal with the LOCAL_PACKAGE_NAME defined in the Android.mk in the
> > main project dir.
> > # Compile the Application would like to instrument
> > mmm development/samples/<_projectname_>
>
> > # Set the ANDROID_PRODUCT_OUT directory for the emulator to know the
> > image location
> > export ANDROID_PRODUCT_OUT=/<_path_>/android-src/out/target/product/
> > generic
>
> > # Start an emulator with a simulated sdcard:
> > emulator -sdcard 
>
> > # Remount the drive - it is needed to have a writable drive. without
> > that sync wont work
> > adb remount
>
> > # Synchronize the local content with the emulator
> > adb sync
>
> > adb shell
> > # create directory: mkdir /etc/coverageresult
>
> > # Executing tests
> > adb shell am instrument -w -e coverage true -e coverageFile /etc/
> > coverageresult/coverage.ec hu.agsoftware.sample.tests/
> > android.test.InstrumentationTestRunner
>
> > # Dump a runtime coverage data file:
> > adb pull /etc/coverageresult/coverage.ec coverage.ec
>
> > # Generate a coverage report
> > java -cp external/emma/lib/emma.jar emma report -r html -in
> > coverage.ec -sp development/samples/<_projectname_>/src -in out/target/
> > common/obj/APPS/<_projectname>_intermediates/coverage.em
>
> > I hope it helps.
>
> > Gabor- Hide quoted text -
>
> - Show quoted text -

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: EMMA Code coverage and JUnit

2009-08-25 Thread santosh kumar

Hi All,

I have few questions about this.. plz clarify me..

i want to generate code coverage for apidemos only...

first i changed init.rc then i followed every thing which is mentioned
in gobor mail..

one thing i am not understanding... when i start the emulator,
emulator is getting stucked with the boot up logo,

i have seen some other artical... we need to run runtest.py?

is it correct?

why emulator is getting stucked?

Thanks
Santosh

On Aug 26, 2:28 am, hari uppalapati  wrote:
> hi
> i was not facing any issues with emulator.Only thing was my coverage.ec file
> was empty as my sdcard is not recognised.with the following steps the issues
> was resolved.If possible post the logcat o/p and also the steps followed.
> 1) edit system/core/rootdir/Android.mk so that the copy_from variable on
> line 6 contains etc/vold.conf.
> copy_from := \
>     etc/dbus.conf \
>     etc/vold.conf \
>     etc/init.goldfish.sh \
>     etc/hosts
>
> 2)copy vold.conf from (git://
> android.git.kernel.org/platform/vendor/htc/dream-open.git) to
> system/core/rootdir/etc/
>      cp vendor/htc/dream-open/vold.conf system/core/rootdir/etc.
> regards
> Haritha
>
> On Tue, Aug 25, 2009 at 2:40 AM, santosh kumar wrote:
>
>
>
>
>
> > Hi All,
>
> > what changes you have been done to vold.conf?
>
> > and i followed the steps of gobor..
>
> > but for me also, emulator is getting stucked..
>
> > can you plz help me..
>
> > On Aug 25, 2:23 am, Haritha  wrote:
> > > thanks everyone for posting info on emma coverage.I was also able to
> > > generate coverage reports for custom tests with necessary changes to
> > > vold.conf.
> > > regards
> > > Haritha
>
> > > On Aug 20, 6:08 am, Gabor  wrote:
>
> > > > Hi All,
>
> > > > Finally, the emma code coverage measurement is working for me (for a
> > > > custom project). So here are the steps what you need to make it work
> > > > (I have tested it, with Java 1.5 on Ubuntu 8.04):
>
> > > > mkdir android-src
> > > > cd android-src
> > > > repo init -u git://android.git.kernel.org/platform/manifest.git -b
> > > > cupcake
> > > > repo sync
>
> > > > # Add emma.jar to the system/core/rootdir/init.rc
> > > > sed 's/\/system\/framework\/core.jar:\/system\/framework\/ext.jar:/\/
> > > > system\/framework\/core.jar:\/system\/framework\/ext.jar:\/system\/
> > > > framework\/emma.jar:/' system/core/rootdir/init.rc > system/core/
> > > > rootdir/init.rc.tmp
> > > > mv system/core/rootdir/init.rc.tmp system/core/rootdir/init.rc
>
> > > > # Rebuild the boot image
> > > > make bootimage
>
> > > > # To build the full system image
> > > > make -j4
>
> > > > # Set the PATH:
> > > > export PATH=${PATH}:/<_path_>/android-src/out/host/linux-x86/bin/
>
> > > > # Build the emma jar itself
> > > > make emma
>
> > > > # Setting the environment and additional bash commands. (like
> > > > m,mm,mmm, choosecombo etc) Notice the space after the dot!
> > > > . build/envsetup.sh
>
> > > > # Set EMMA_INSTRUMENTATION to true
> > > > export EMMA_INSTRUMENT=true
>
> > > > # Copy your project to development/samples/<_projectname_> or
> > > > somewhere..:)
> > > > # Based on the ApiDemo create an Android.mk file for the project
> > > > directory and the project test directory
> > > > # The LOCAL_INSTRUMENTATION_FOR value in test dir Android.mk has to be
> > > > equal with the LOCAL_PACKAGE_NAME defined in the Android.mk in the
> > > > main project dir.
> > > > # Compile the Application would like to instrument
> > > > mmm development/samples/<_projectname_>
>
> > > > # Set the ANDROID_PRODUCT_OUT directory for the emulator to know the
> > > > image location
> > > > export ANDROID_PRODUCT_OUT=/<_path_>/android-src/out/target/product/
> > > > generic
>
> > > > # Start an emulator with a simulated sdcard:
> > > > emulator -sdcard 
>
> > > > # Remount the drive - it is needed to have a writable drive. without
> > > > that sync wont work
> > > > adb remount
>
> > > > # Synchronize the local content with the emulator
> > > > adb sync
>
> > > > adb shell
> > > > # create directory: mkdir /etc/coverageresult
>
> > > > # Executing tests
> > > > adb shell am 

[android-developers] Re: EMMA Code coverage and JUnit

2009-08-26 Thread santosh kumar

Hi,

After starting the emulator,
i tried "adb sync"

but i am getting the error like device offline...

can you plz help me in this

Thanks
Santosh

On Aug 26, 6:39 am, santosh kumar  wrote:
> Hi All,
>
> I have few questions about this.. plz clarify me..
>
> i want to generate code coverage for apidemos only...
>
> first i changed init.rc then i followed every thing which is mentioned
> in gobor mail..
>
> one thing i am not understanding... when i start the emulator,
> emulator is getting stucked with the boot up logo,
>
> i have seen some other artical... we need to run runtest.py?
>
> is it correct?
>
> why emulator is getting stucked?
>
> Thanks
> Santosh
>
> On Aug 26, 2:28 am, hari uppalapati  wrote:
>
>
>
> > hi
> > i was not facing any issues with emulator.Only thing was my coverage.ec file
> > was empty as my sdcard is not recognised.with the following steps the issues
> > was resolved.If possible post the logcat o/p and also the steps followed.
> > 1) edit system/core/rootdir/Android.mk so that the copy_from variable on
> > line 6 contains etc/vold.conf.
> > copy_from := \
> >     etc/dbus.conf \
> >     etc/vold.conf \
> >     etc/init.goldfish.sh \
> >     etc/hosts
>
> > 2)copy vold.conf from (git://
> > android.git.kernel.org/platform/vendor/htc/dream-open.git) to
> > system/core/rootdir/etc/
> >      cp vendor/htc/dream-open/vold.conf system/core/rootdir/etc.
> > regards
> > Haritha
>
> > On Tue, Aug 25, 2009 at 2:40 AM, santosh kumar 
> > wrote:
>
> > > Hi All,
>
> > > what changes you have been done to vold.conf?
>
> > > and i followed the steps of gobor..
>
> > > but for me also, emulator is getting stucked..
>
> > > can you plz help me..
>
> > > On Aug 25, 2:23 am, Haritha  wrote:
> > > > thanks everyone for posting info on emma coverage.I was also able to
> > > > generate coverage reports for custom tests with necessary changes to
> > > > vold.conf.
> > > > regards
> > > > Haritha
>
> > > > On Aug 20, 6:08 am, Gabor  wrote:
>
> > > > > Hi All,
>
> > > > > Finally, the emma code coverage measurement is working for me (for a
> > > > > custom project). So here are the steps what you need to make it work
> > > > > (I have tested it, with Java 1.5 on Ubuntu 8.04):
>
> > > > > mkdir android-src
> > > > > cd android-src
> > > > > repo init -u git://android.git.kernel.org/platform/manifest.git -b
> > > > > cupcake
> > > > > repo sync
>
> > > > > # Add emma.jar to the system/core/rootdir/init.rc
> > > > > sed 's/\/system\/framework\/core.jar:\/system\/framework\/ext.jar:/\/
> > > > > system\/framework\/core.jar:\/system\/framework\/ext.jar:\/system\/
> > > > > framework\/emma.jar:/' system/core/rootdir/init.rc > system/core/
> > > > > rootdir/init.rc.tmp
> > > > > mv system/core/rootdir/init.rc.tmp system/core/rootdir/init.rc
>
> > > > > # Rebuild the boot image
> > > > > make bootimage
>
> > > > > # To build the full system image
> > > > > make -j4
>
> > > > > # Set the PATH:
> > > > > export PATH=${PATH}:/<_path_>/android-src/out/host/linux-x86/bin/
>
> > > > > # Build the emma jar itself
> > > > > make emma
>
> > > > > # Setting the environment and additional bash commands. (like
> > > > > m,mm,mmm, choosecombo etc) Notice the space after the dot!
> > > > > . build/envsetup.sh
>
> > > > > # Set EMMA_INSTRUMENTATION to true
> > > > > export EMMA_INSTRUMENT=true
>
> > > > > # Copy your project to development/samples/<_projectname_> or
> > > > > somewhere..:)
> > > > > # Based on the ApiDemo create an Android.mk file for the project
> > > > > directory and the project test directory
> > > > > # The LOCAL_INSTRUMENTATION_FOR value in test dir Android.mk has to be
> > > > > equal with the LOCAL_PACKAGE_NAME defined in the Android.mk in the
> > > > > main project dir.
> > > > > # Compile the Application would like to instrument
> > > > > mmm development/samples/<_projectname_>
>
> > > > > # Set the ANDROID_PRODUCT_OUT directory for the emulator to know the
> > > > > image location
> > > > > e

[android-developers] USIM and ISIM Support

2009-08-27 Thread santosh kumar

Hi All,

I have gone through the Android Source Code, I did't find any API to
read ISIM information from the SIM Card.

when does Android Support USIM and ISIM ?

Can any body clarify me in this regard?

Thanks
Santosh
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Android NDK ( Native code Debugging)

2009-08-27 Thread santosh kumar

Hi,

I have seen in the Android NDK release, presently NDK team is working
on java to Native debugging?

In the next release it may be there?

when will be the next release of Android NDK? and Does they will
support through eclipse ADT?

Thanks
Santosh
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Apn Switching to default

2009-08-27 Thread santosh kumar

Hi,

when ever Apn Swithed to default, if already one data application is
running with the specified APN, Does it will wait up to that data
application ends? or it will close that Data application also?

How can we set our Specified APN from the application?


Thanks
Santosh.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: USIM and ISIM Support

2009-08-28 Thread santosh kumar

Hi Suziki,

Thanks for quick reply.

Can you please tell me where can i find in Android Source Code?

Thanks
Santosh

On Aug 28, 9:28 am, suziki  wrote:
> Hi santosh kumar:I think using API mapping RIL /AT command (CPIN) for check
> is sim card
> using CRSM = CLA(0x00=3G) check is USIM, in ISIM card, please using Open
> channel command packet in CRSM or CSIM for
> enter to open a new logical  channel,
> using CSIM =read command (EFdir) for get ISIM aid.
>
> 2009/8/28 santosh kumar 
>
>
>
>
>
> > Hi All,
>
> > I have gone through the Android Source Code, I did't find any API to
> > read ISIM information from the SIM Card.
>
> > when does Android Support USIM and ISIM ?
>
> > Can any body clarify me in this regard?
>
> > Thanks
> > Santosh- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] PDP Status Check

2009-08-30 Thread santosh kumar

Hi,

Does TelephonyManager provides any API to get

PDP Connection status,
GPRS Attach/detach status
GPRS local IP Adress

Thanks
Santosh
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Image and text copy from browser

2010-02-27 Thread santosh kumar
Hello,
I want to copy text and image simultaneously from browser. It has
option to separately copy text and image. Please help me , is it possible
and which part of code i have to look for it.


Thanks & santosh

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Data Warehouse with Teradata Certified@Charlotte, NC

2016-10-14 Thread santosh kumar
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: **Data Warehouse with Teradata Certified*

*Location: **Charlotte, NC*

*Work Duration:** 6 months *

*Years of Experience: 10+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Perform data modeling and data warehouse design in Teradata

Should be able to design/architect/develop Teradata/Unix based generic ETL
framework.

Lead and Mentor off shore team



Must Haves – Skills: Teradata and UNIX Shell Scripting.

Nice to Have/Skills: Informatica



Teradata Relevant Experience: Minimum 8 Years Unix Relevant Experience:
Minimum 7 Years



What project are they working on: DW/BI ETL Framework Development
(Teradata/UNIX)



Certification Requirement: Teradata Certified Professional







*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/CAJ2q5VOJny4qm%3DfrKRH%3DriQ0wPcfGLMDLM3FX3h4X%2BHmvNuH%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Help regarding talking tom application

2012-11-20 Thread santosh kumar
Hello All,
  I want to develop an application similar to talking tom, does 
anyone have source code for that application or any link pls share.
  Thanks in advance for any help related to this type of 
application.

Thanks & Regards,
Santosh Kumar

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: How to watermark the camera picture?

2010-09-16 Thread santosh kumar
can you please post the code snippet to convert a logo into watermark

On Aug 30, 8:11 pm, Rootko  wrote:
> Thanks for pointing me into the right direction, it worked :D
> Rudo
>
> On Aug 30, 11:16 am, Yahel  wrote:
>
>
>
> > >to take a
> > > picture using the camera (already developed this) and then make it
> > > watermarked.
>
> > Look into Canvas.drawBitmap with alpha channel.
>
> > Good luck.
>
> > Yahel

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Rotating an image in Remoteview?

2009-09-30 Thread Santosh Kumar Ayalasomayajula

Can we rotate a drawable in the Remoteview using canvas?

Santosh

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] DevOps Engineer @San Jose, IL

2016-09-07 Thread Santosh kumar 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 ..

*FOR C2H*

*Role: DevOps Engineer*

*Location: **San Jose, IL*

*Work Duration: 6+ Month*

*Years of Experience: 10+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

Transformation Program Planning and Management.

Create the detailed transformation release plan and the epic level
transformation backlog.

Create program governance structure for issue/risk mitigation, scope
management, change control and stakeholders management.

Be responsible for ongoing program planning and delivery management.

Create a portfolio funding model that will align with Agile operating model
and translate from the existing operating model Agile Processes Definition.

Create baseline value stream of AS-IS agile and waterfall SDLC processes.

Formalize standard agile practices for all in-scope domains.

*Skill* sets: for Agile Transformation.

Align and update training manuals and documentation of agile operating
model(TO-BE model).

Provide executive level coaching, lean agile leaders, epic owners and
enterprise architect on setting both portfolio vision and in guiding agile
release trains Development Operations(DevOps) Tools. Update the current
tools responsible, accountable, consulted and informed by assessing recent
DevOps developments.

Review current JIRA workflows, plugins and widgets and identify gaps with
supporting TO-BE operating model.

Create high-level roadmap for DevOps and On-Demand on CI & CD People and
Organization Change Management.

Assess the organizational culture and baseline the readiness of
organizational model, structures, and capabilities for Agile product
development and delivery.

Assess the organizational impacts of agile and DevOps operating model and
recommend organization redesign and people related interventions to create
collaborative work environment.







[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

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


[android-developers] QA Engineer with Manufacturing Domain@Newark, CA

2016-09-07 Thread Santosh kumar 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: QA Engineer with Manufacturing Domain*

*Location: Newark, CA*

*Work Duration: 6+ Month*

*Years of Experience: 8+*

*Note: We need Photo id and visa copy.*


* Job
Description:-*

Experience creating technical documentation, including requirements, user
documentation and training collateral. Experience creating and executing
test plans. Experience working in all stages of the development lifecycle,
requirement gathering, design, implementation, testing and support.
Experience working on User Experience design. Software development
experience, ideally experience working with C, C, Objective C, Perl and
shell scripting




*Must Have:-*

- Manufacturing QA Engineer Experience

- Experience in a high volume consumer electronics environment

- Software Developing (C, C++, Objective C, Shell Scripting, Perl Scripting)





*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

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


[android-developers] Java Technical Lead with Financial Domain @Minneapolis, MN

2016-09-08 Thread Santosh kumar 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: Java Technical Lead with Financial Domain *

*Location: **Minneapolis, MN*

*Work Duration: 6+ Month*

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

Technology Lead - US - Java-J2EE
Mandatory:
*Domain knowledge of Financial Services*

Technology Lead - US - Java-J2EE
Qualifications Basic
• At least 2 years of experience with Java - J2EE using Spring framework.
• At least 2 years of experience with Java - Web Services.
Preferred
*• At least 5 years of experience in Java / J2EE skills with Spring
Framework in Tomcat environment.*
• Excellent hands on experience with Web Services using RESTful protocol.
• Hands on experience in OData 2.0, STS for Eclipse, JSON, JUnit & Linux
• Knowledge on development and source control tools such as Maven and GIT.
• At least 5 years of experience in software development life cycle.
• At least 5 years of experience in translating functional/non-functional
requirements to system requirements.
• At least 5 years of experience in software development life cycle.
• Experience and understanding of in Production support and performance
engineering.

[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

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


[android-developers] SOA TESTER WITH HEALTH CARE DOMAIN @Mason, OH

2016-09-08 Thread Santosh kumar 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: SOA TESTER WITH HEALTH CARE DOMAIN *

*Location: **Mason, OH*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

· Excellent knowledge of SOA/API testing
· Should have worked in Healthcare domain
· Should have experience with the SOA tools like (Soap UI/ Lisa/RIT)
· Very good in communication
· Should have experience in automation and innovation

*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

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


[android-developers] Devops Developer (Must have 10yr exp)@Foster City, MI

2016-09-09 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

Here is our *Implementing partner **Requirement*, If you have anyone with
you for the following position, please send the suitable resume along with
Contact Details,
Kindly share suitable resumes ASAP to kuntal.sant...@nityo.com



*Role: Devops Developer (Must have 10yr exp)*

*Location: Foster City, MI*

*Work Duration: Contract *

*Interview: Phone/ Skype*




*Required Experience and Technical Skills:- Additional Skills:-  *

Cloud Bees understanding, Bamboo migration and build forge hands on,
scripting knowledge



*Must Haves* – Skills / Prioritize requirements  Cloud Bees, Jenkins, Build
forge, Power shell scripting, Perl, Bamboo, hands on Devops





*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

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


[android-developers] Devops Developer (Must have 10yr exp)@Foster City, MI

2016-09-09 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

Here is our *Implementing partner **Requirement*, If you have anyone with
you for the following position, please send the suitable resume along with
Contact Details,
Kindly share suitable resumes ASAP to kuntal.sant...@nityo.com



*Role: Devops Developer (Must have 10 year exp)*

*Location: Foster City, MI*

*Work Duration: Contract *

*Interview: Phone/ Skype*




*Required Experience and Technical Skills:- Additional Skills:-  *

Cloud Bees understanding, Bamboo migration and build forge hands on,
scripting knowledge



*Must Haves* – Skills / Prioritize requirements  Cloud Bees, Jenkins, Build
forge, Power shell scripting, Perl, Bamboo, hands on Devops





*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

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


[android-developers] Data Analyst (Must have 10yr exp)@Houston, TX

2016-09-12 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

Here is our *Implementing partner **Requirement*, If you have anyone with
you for the following position, please send the suitable resume along with
Contact Details,
Kindly share suitable resumes ASAP to kuntal.sant...@nityo.com



*Role: **Data Analyst (Must have 10year exp)*

*Location: **Houston, TX*

*Work Duration: **6 months *

*Interview: Phone/ Skype*


*Required Experience: 10+ **Responsibilities*
§ More than 10 years of experience working in all phases of the SDLC in
large-scale enterprise IT environments.
§ Requirement Elicitation & writing Functional specifications and Data
Mappings for ETL physical mappings.
§ Assist DW data analyst in analyzing existing reports and identifying
iteration metrics.
§ Lead preparation of data warehouse requirements document
§ Assist data analyst in mapping task;
§ Experience analyzing and troubleshooting stored procedures, functions ,
triggers.

*Technical Competencies:*
§ Working experience with Large Data Warehouse projects
§ Data Migration Tools & Techniques
§ Data Analysis & Data Manipulation
§ Advanced PL/SQL
§ Expertise in Oracle 10g, 11 & SQL Server 2005, 2008
§ Basic Integration Concepts (E.g. Data Transformation, Object Relational
Mapping (ORM) etc.)
§ Proficiency in Data Modelling Tools and Techniques



*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

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


[android-developers] Hadoop Admin (Must have 10yr exp) With Horton works Experience@Rhode Island

2016-09-12 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

Here is our *Implementing partner **Requirement*, If you have anyone with
you for the following position, please send the suitable resume along with
Contact Details,
Kindly share suitable resumes ASAP to kuntal.sant...@nityo.com



*Role: **Hadoop Admin (Must have 10year exp) With Horton works Experience*

*Location: **Rhode Island*

*Work Duration: 6+ Month’s*

*Interview: Phone/ Skype*


*Required Experience Additional Skills:-  *

*Position Responsibilities:*
· Manage scalable Hadoop virtual and physical cluster environments.
· Manage the backup and disaster recovery for Hadoop data.
· Optimize and tune the Hadoop environments to meet performance
requirements.
· Work in tandem with big data developers and designs use case specific
scalable supportable -infrastructure.
· Solid technical understanding of services such as Hbase, kafka, spark,
Hive, hdfs, yarn and ambari.
· Work with Linux server admin team in administering the server hardware
and operating system.
· Assist with development and maintain the system documentation.
· Coordinate root cause analysis (RCA) efforts to minimize future system
issues.
· Mentor, develop and train other systems operations staff members as
needed.
· Isilon based Hadoop experience is a plus.
*Technical Qualifications:*
*1) At least 3 years experience in install and configure Horton works
Hadoop cluster*
2) Backup and recovery of HDFS file system (distributed file system java
based)
3) my SQL databases used by Cluster
4) Configure and maintain HA of HDFS, YARN (yet another resource
negotiator) Resource Manager. , Map Reduce, Hive, HBASE, Kafka and Spark
5) Experience setting up Kerberos and administering a kerberized cluster.
6) Ranger Service configuration and setup policies. (authentication)
7) Knox service configuration. (reverse proxy, policy enforcement for
Hadoop)…access control
8) String understanding and experience to use ODBC/JDBC with various
clients like tableau, Micro strategy and server components like hive/spark
and Hbase
9) Monitor and tune cluster component performance.
10) Very strong skill in using various Linux commands for day to day
operations and ability to analyze and create Shell scripts.






*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

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


[android-developers] Software Developer@Houston, TX

2016-09-14 Thread Santosh kumar 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: Software Developer*

*Location: **Houston, TX*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
· Microsoft Developer (C#, .NET, ASP, jQuery, JavaScript) with good
database skills (Oracle preferably).
· Hands on Experience in computational development language like Matlab,
but Python will also be useful.
. RAD Developer
Good to Have
- Exposure to Java
- Continuous Integration (Jenkins, Artifactory, NuGet)





*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

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


[android-developers] Test Engineer With Manufacturing Domain@Newark, CA

2016-09-15 Thread Santosh kumar 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: **Test Engineer With Manufacturing Domain*

*Location: **Newark, CA*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*
Experience creating technical documentation, including requirements, user
documentation and training collateral.

Experience creating and executing test plans.

Experience working in all stages of the development lifecycle, requirement
gathering, design, implementation, testing and support.

Experience working on User Experience design.

Software development experience, ideally experience working with C, C,
Objective C, Perl and shell scripting



We are looking for *a Manufacturing Test Engineer* who has *worked on
networking and communication products* and has done test automation
programming with Objective C , Perl, Unix.





*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

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


[android-developers] Tech Lead @Thousand Oaks, CA

2016-09-16 Thread Santosh kumar 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: **Tech Lead *

*Location: **Thousand Oaks, CA*

*Work Duration: 3+ Month*

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*
Role: Tech Lead.
Technology: React JS/CSS3/ HTML5/ Angular JS
Duration: 3 months





*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

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


[android-developers] Java developer with Spring, Spring boot@Omaha, NE

2016-09-16 Thread Santosh kumar 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: Java developer with Micro services, Spring boot*

*Location: Omaha, NE*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*
JD · Core Java · Spring Framework · Oracle · Web Services ·
Mandatory skills Spring, Spring boot, Micro Services
Good to have skills Unix, Perl
Client interview Required
Extension Possible Depends on performance and project requirements
Work Location Omaha,NE





*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

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


[android-developers] Technology Lead With Micro Strategy Development@Whippany, NJ

2016-09-19 Thread Santosh kumar 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: Technology Lead With Micro Strategy Development*

*Location: Whippany, NJ*

*Work Duration: 6+ Month*

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*
8 years of experience in Data Warehousing Projects (Data Warehouse, Data
Marts, Reporting)
5+ Years of experience in Micro Strategy development.
Good knowledge and experience in DW & BI Concepts.
Experience in Micro Strategy 9.x includes Micro Strategy Architect,
Desktops, Mobile & Web, Report Services, Narrowcast Server, OLAP services,
intelligent server, Schema objects, Command Manager, Integrity Manager,
Object Manager, Integrity manager
Strong experience on Internet technologies JAVA, JavaScript. APS, .Net to
handle SDK.
Extensive experience in developing Micro Strategy reports, Cubes, Advanced
Dashboards & visualizations, Performance optimization.
Hands on experience in writing Micro Strategy Freeform Sql with complex
joins.
Experience in analysis or supporting BRD preparation, Translating BRD to
Technical specifications.
Experience in design, data modeling, and providing estimation for
development/migration projects.
Experience on implementing Micro Strategy on Netezza
Relevant experience on Internet technologies JAVA, JavaScript. APS, .Net to
handle SDK.

*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

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


[android-developers] Embedded Consultant with Manufacturing Domain@Modesto, CA

2016-09-20 Thread Santosh kumar 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: **Embedded Consultant with Manufacturing Domain*

*Location: **Modesto, CA*

*Work Duration: 6+ Month*

*Years of Experience: 10+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*

*Preferred *

• At least 10~12 years of experience in MES Consulting.

• A Techno-functional consultant having strong technical background in MES
consulting and implementation.

• Experience in entire IT landscape assessment from ERP to Shop floor.

• Experience in developing as is process flow diagrams across manufacturing
operations for product categories

• Strong Domain knowledge, Business Process knowledge and Technical
expertise in *Manufacturing processes and MES systems in discrete
manufacturing industry*

• Strong project execution, governance, and standardization model

• At least one end-to-end Implementation experience using any of the
leading MES packages such as GE Proficy, Delmia Apriso, Rockwell FTPC.

• Experience in MES package evaluation based on functional, technical and
maturity fitment.

• Experience in solution development, testing, go-live and support
approach.

• An exposure to migration projects and performance improvement solutions
would be an added advantage

• At least 3~5years of experience in software development life cycle using
technologies like JavaScript, HTML, DHTML, PL/SQL, XML, XSLT, Java and
database like SQL Server 2005/2008/2012 and /or Oracle 10g/11i





• At least 6~9 years of experience in Project life cycle activities on
development and maintenance projects

• At least 2~3 years of experience in Design and architecture review

• Good understanding of standards & protocols like ISA S88, ISA S95, B2MML,
OPC etc

• Good understanding of Industrial Automation Systems and/or Shop Floor
Systems

• Experience to Food and Beverages, Energy, Oil and Gas domain





*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

-- 
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/CAG0Zfz0T6TQ-1m33a0S3Qr8RS8egMgvdkgKNUQ%3Dzg-MHpOZhaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Embedded Consultant Manufacturing Domain@Modesto, CA

2016-09-20 Thread Santosh kumar 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: **Embedded  Consultant Manufacturing Domain*

*Location: **Modesto, CA*

*Work Duration: 6+ Month*

*Years of Experience: 10+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*

*Preferred *

• At least 10~12 years of experience in MES Consulting.

• A Techno-functional consultant having strong technical background in MES
consulting and implementation.

• Experience in entire IT landscape assessment from ERP to Shop floor.

• Experience in developing as is process flow diagrams across manufacturing
operations for product categories

• Strong Domain knowledge, Business Process knowledge and Technical
expertise in *Manufacturing processes and MES systems in discrete
manufacturing industry*

• Strong project execution, governance, and standardization model

• At least one end-to-end Implementation experience using any of the
leading MES packages such as GE Proficy, Delmia Apriso, Rockwell FTPC.

• Experience in MES package evaluation based on functional, technical and
maturity fitment.

• Experience in solution development, testing, go-live and support
approach.

• An exposure to migration projects and performance improvement solutions
would be an added advantage

• At least 3~5years of experience in software development life cycle using
technologies like JavaScript, HTML, DHTML, PL/SQL, XML, XSLT, Java and
database like SQL Server 2005/2008/2012 and /or Oracle 10g/11i





• At least 6~9 years of experience in Project life cycle activities on
development and maintenance projects

• At least 2~3 years of experience in Design and architecture review

• Good understanding of standards & protocols like ISA S88, ISA S95, B2MML,
OPC etc

• Good understanding of Industrial Automation Systems and/or Shop Floor
Systems

• Experience to Food and Beverages, Energy, Oil and Gas domain





*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

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


[android-developers] Embedded Consultant with Manufacturing Domain@Modesto, CA

2016-09-20 Thread Santosh kumar 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: **Embedded  Consultant with Manufacturing Domain*

*Location: **Modesto, CA*

*Work Duration: 6+ Month*

*Years of Experience: 10+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill set*

*Preferred *

• At least 10~12 years of experience in MES Consulting.

• A Techno-functional consultant having strong technical background in MES
consulting and implementation.

• Experience in entire IT landscape assessment from ERP to Shop floor.

• Experience in developing as is process flow diagrams across manufacturing
operations for product categories

• Strong Domain knowledge, Business Process knowledge and Technical
expertise in *Manufacturing processes and MES systems in discrete
manufacturing industry*

• Strong project execution, governance, and standardization model

• At least one end-to-end Implementation experience using any of the
leading MES packages such as GE Proficy, Delmia Apriso, Rockwell FTPC.

• Experience in MES package evaluation based on functional, technical and
maturity fitment.

• Experience in solution development, testing, go-live and support
approach.

• An exposure to migration projects and performance improvement solutions
would be an added advantage

• At least 3~5years of experience in software development life cycle using
technologies like JavaScript, HTML, DHTML, PL/SQL, XML, XSLT, Java and
database like SQL Server 2005/2008/2012 and /or Oracle 10g/11i





• At least 6~9 years of experience in Project life cycle activities on
development and maintenance projects

• At least 2~3 years of experience in Design and architecture review

• Good understanding of standards & protocols like ISA S88, ISA S95, B2MML,
OPC etc

• Good understanding of Industrial Automation Systems and/or Shop Floor
Systems

• Experience to Food and Beverages, Energy, Oil and Gas domain





*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

-- 
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/CAG0Zfz1EqGhZHGbTQ-89seO-TCZSjzTugzBXxWBSsH%3DovGvvRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mainframe Tester With Manufacturing Domain@Fort Worth, TX

2016-09-21 Thread Santosh kumar 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: **Mainframe Tester With Manufacturing Domain*

*Location: Fort Worth, TX*

*Work Duration: 3 months (can be extended)*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
Mandatory skills Cobol,

VSAM,

CICS
Good to have skills-Oracle/Java/ PL/SQL
Domain Manufacturing
Extension Possible Yes (will confirm)
Work Location Fort Worth, Texas, US





*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







[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

-- 
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/CAG0Zfz2VGD%3De4PqMV9k-5Ew9CHK7g-nu2SV6cp1ZXY4YeFP-Jg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Full stack Developer with Angular JS (Must have 10 Year Exp) @Milpitas CA

2016-09-21 Thread Santosh kumar 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 ..



*(Today interview)*



*Role: Full stack Developer with Angular JS (Must have 10 Year Exp)  *

*Location: Milpitas, CA*

*Work Duration: 6 months*

*Years of Experience: 10+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technical Skills*

front end full stack angular  more than 10 yrs

1.  HTML5

2.  CSS3

3.  JQuery (expert level)

4.  AJAX and JSON (expert level)

5.  JavaScript

6.  Angular JS

7.  Basic knowledge of designing tools (preferably Adobe Photoshop), as
to how to edit, crop resize images, logos etc.

8.  Responsive Designing (Bootstrap framework and CSS3 Media Queries)

9.   Worked in agile development environment





*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

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


[android-developers] Java developer@Bellevue, WA

2016-09-22 Thread Santosh kumar 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 ..


*ONLY FOR LOCAL *


*Role: Java developer*

*Location: **Bellevue, WA*

*Work Duration: 6 months*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technical Skills*

The opening is for person with experience in JAVA, J2EE, MVC, SOAP and REST
Web services.

1. Java/J2EE – Web services - REST/SOAP - Back end

2. Spring MVC

3. Knowledge of front end is preferable – Java script, Node JS/Angular JS





*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

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


[android-developers] Devops Engineer (Must have 10yr exp)@Foster City, MI/ Denver, CO

2016-09-22 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

Here is our *Implementing partner **Requirement*, If you have anyone with
you for the following position, please send the suitable resume along with
Contact Details,
Kindly share suitable resumes ASAP to kuntal.sant...@nityo.com



*Role: Devops Engineer (Must have 10year exp)*

*Location: Foster City, MI/ Denver, CO*

*Work Duration: 6+ Month*

*Years of Experience: 10+*

*Interview: Phone/ Skype*

*Note: We need Photo id and visa copy (H1B)*

*Technical Skills*:- *Jenkins and TFS experience is a must.*

TFS, Cloud Bees, Jenkins, Build forge, Power shell scripting, Perl, Bamboo





*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

-- 
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/CAG0Zfz2R-B%2Boz1%3DbDpoT189S8%2BR9%3D_SncfMmmak3ho%2B8uZnoaw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Ruby on Rails Developer@Milpitas CA

2016-09-22 Thread Santosh kumar 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 ..



*(Tomorrow interview)*



*Role: Ruby on Rails Developer*

*Location: Milpitas, CA*

*Work Duration: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technical Skills*:-  *logging, exception handling.*

1.Ruby on Rails

2.JavaScript (backbone preferably)

3. UE (HTML 5, CSS, wire framing)

4. SQL

5. RESTful API’s



Strong RoR skills, working experience in RESTful APIs, Logging, exception
handling, Performance improvement .

Good to have J ruby, web logic experience.



Have already shared individual candidates feedback.





*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

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


[android-developers] Ruby on Rails Developer@Milpitas CA

2016-09-22 Thread Santosh kumar 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 ..



*(Tomorrow interview)*



*Role: Ruby on Rails Developer*

*Location: Milpitas, CA*

*Work Duration: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technical Skills*:-  *logging, exception handling.*

1. Ruby on Rails

2. JavaScript (backbone preferably)

3. UE (HTML 5, CSS, wire framing)

4. SQL

5. RESTful API’s



Strong RoR skills, working experience in RESTful APIs, Logging, exception
handling, Performance improvement .

Good to have jruby, web logic experience.



Have already shared individual candidates feedback.





*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

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


[android-developers] DevOps Architect@San Jose, IL

2016-09-23 Thread Santosh kumar 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: **DevOps Architecture*

*Location: **San Jose, IL*

*Work Duration: 6 months*

*Job Description:*

*need someone who worked in large scale Agile environment (not in small
scrum teams) and also has some Release/Continuous-Delivery experience.*
Transformation Program Planning and Management

Create the detailed transformation release plan and the epic level
transformation backlog

Create program governance structure for issue/risk mitigation, scope
management, change control and stakeholders management.

Be responsible for ongoing program planning and delivery management.

Create a portfolio funding model that will align with Agile operating model
and translate from the existing operating model Agile Processes Definition.

Create baseline value stream of AS-IS agile and waterfall SDLC processes.

Review current operating model and create the agile operating model with
key measures of success.

Formalize standard agile practices for all in-scope domains.

Create first iteration of resource model for steady state Building
Foundational Skill sets for Agile Transformation.

Asses on-going agile training program and content. Create training
curriculum for the same.

Develop and execute training plan

Align and update training manuals and documentation of agile operating
model(TO-BE model).

Provide ongoing coaching during pilot and enterprise deployment.

Provide executive level coaching, lean agile leaders, epic owners and
enterprise architect on setting both portfolio vision and in guiding agile
release trains Development Operations(DevOps) Tools.

Update the current tools responsible, accountable, consulted and informed
by assessing recent DevOps developments.

Review current JIRA workflows, plugins and widgets and identify gaps with
supporting TO-BE operating model.

Identify tools gap(if any)aligned to TO-Be model.

Recommend phased tools and processes to close the gap.

Identify environments within the domains which can be used for pilot
project execution.

Create high-level roadmap for DevOps and On-Demand on CI & CD People and
Organization Change Management.

Assess the organizational culture ad baseline the readiness of
organizational model, structures, and capabilities for Agile product
development and delivery.

Assess the organizational impacts of agile and DevOps operating model and
recommend organization redesign and people related interventions to create
collaborative work environment.







*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

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


[android-developers] Full Stack Developer@Billerica, MA

2016-09-23 Thread Santosh kumar 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 ..



ONLY FOR LOCAL

*Role: Full Stack Developer*

*Location: Billerica, MA*

*Work Duration: Long term*


*Note: We need Photo id and visa copy (H1B) Job Description:*
We need Full Stack Developers with a 60% focus on Back End, MYSQL expertise
is needed.
5-7 years experience in designing and developing Java/J2EE solutions
Experience with Amazon cloud computing infrastructure (My SQL RDS, Red
shift, Dynamo dB, AWS pipelines, etc.)







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







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



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

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

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

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


[android-developers] Business Analyst with Financial Domain@Houston, TX

2016-09-26 Thread Santosh kumar 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 ..

Note: Please share only Local

F2F Interview

*Role: **Business Analyst With Financial Domain*

*Location: **Houston, TX*

*Work Duration: 6 months*


*Years of Experience: 8+ Job Description:*
Assessment process: 2 Rounds of F2F interview
Skill set:
Ø Understanding of AGILE (BDD).
Ø Exposure to functional web based application SDLC.
Ø Working knowledge on Tableau would be an advantage.
Ø Exposure to Financial Accounting is desirable.
Ø Generic BA skills like listing requirement (writing PBI’s and acceptance
criteria), conducting workshops and managing stakeholders.



*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

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


[android-developers] Data Modeler(MDM Administrator)@Loveland, CO

2016-09-26 Thread Santosh kumar 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:** Data Modeler(MDM Administrator)*

*Location: Loveland, CO*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*



*Technical Skills*:-
ü Strong hands-on technical knowledge of master data concepts, processes,
organizational support models and tools is preferred. This should include
but is not limited to Data Profiling, Data Quality, Data Governance, Data
Modeling, and Data Integration.
ü Working knowledge of Business Process Management concepts and BPEL to
support workflow development
ü Expertise in IBM’s MDM version 11.x product, hands-on multiple
implementation experience, preferably in Banking domain
ü Hands on experience with IBM MDM Customization includes Extension,
Addition, Business proxies, SDP, Match-Merge Rules, Event Manager
ü Java development background with RSA/ RAD, MDM Workbench, SOAP Web
Services, XML, XSD, WSDL a plus. SQL (DB2)
ü IBM MDM Server Product upgrade experience is a plus.
ü Working knowledge of concepts like Service Oriented Architecture (SOA)
and how to use these with different types of integration technologies
ü Proven track record implementing successful MDM initiatives
ü Exposure to MDM Information Domains (Party, Agreement, Location)
ü Experience with project management



*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

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


[android-developers] Oracle PL/SQL developer with Recent Telecom Domain@Miami, FL

2016-09-27 Thread Santosh kumar 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: Oracle PL/SQL Lead with Recent Telecom Domain*

*Location: Miami, FL*

*Work Duration: 6+ Month*

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill Set: *

Skill Set: Expert in Oracle PL/SQL

8 yrs Experience in developing applications based in PL/SQL

Experience in Oracle DC

Experience in Telecom Domain







[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

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


[android-developers] Java Lead with Portal development Experience@Miami, FL

2016-09-27 Thread Santosh kumar 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: Java Lead **with Portal development Experience*

*Location: Miami, FL *

*Work Duration: 6 months*


*Years of Experience: 9+ Job Description:*
9 years of development and testing experience with Portal development using
any of the frameworks such as *Java/J2EE, Web Services, Spring Forms*

Experience in HTML5, jQuery etc





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







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



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

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

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

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


[android-developers] Portal developer@Miami, FL

2016-09-27 Thread Santosh kumar 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: PORTAL DEVELOPER*

*Location: Miami, FL *

*Work Duration: Long Term*


*Years of Experience: 9+ Job Description:*
8 years of development and testing experience with Portal development using
any of the frameworks such as *Java/J2EE, Web Services, Spring Forms*

Experience in HTML5, jQuery etc





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







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



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

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

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

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


[android-developers] SDET CONSULTANT@Houston, TX

2016-09-27 Thread Santosh kumar 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:SDET CONSULTANT*

*Location: Houston, TX *

*Work Duration: Long Term*


*Years of Experience: 8+ Job Description:*

*Developer*

C#, .NET,  MVVM, WPF, Prism, DI/IOC, Unit Testing, SQL Server, ORM

Excellent analytical, problem solving, and debugging skills

Self-starter, requires minimum supervision

Quick learner on new technical and domain knowledge required

Software engineering experience in object-oriented design and design
patterns to realize mid to large size Windows applications

Must understand the need to and be willing to develop unit and integration
tests

Experience in agile/scrum teams using TFS



*Tester:*

Accountabilities:

5-7 Years of work experience

Define Testing objectives based on Acceptance Criteria.

Develop Test Cases based on Test Objectives and Acceptance Criteria.

Write comprehensive Test Cases to verify project functionality.

Adhere to testing standards.

Execute Test Cases according to plan and document results.

Validate functionality according to requirements/stories.

Verify changes to functionality have no undesired affect on other,
associated areas of functionality.

Identify, communicate and document defects in a consistent fashion.

Track defects through resolution and implementation.

Verify defects are resolved according to defect definition.

Provide estimates of time for the test plan implementation.

Track and communicate progress against the Test Plan.

Create Test Data.

Provide objective assessment of Product Quality.


*Technical Competencies*

· Understanding of core Well Planning concepts including Torque and
Drag forces affecting drill strings, casings, liners

· Understanding of Engineering Calculations such as stuck point,
back-off force, jar setting and tripping forces

· Understanding of Well Engineering components including Bit,
Borehole, Collar, Jar, Motor, Reamer, Rotary Steerable, Stabilizer,
Turbine, etc.,

· Understanding of Pressure drop calculations, bit hydraulics, down
hole cleaning operations

· Understanding of BHA performance modeling for steerable and
rotary BHA

· Understanding of BHA behaviors including critical rotary speeds
and high stress conditions modeling

· Understanding of standard and advanced Casing/Tubing Designs

· Understanding of Well Planning principles for Measure While
Drilling, Vertical Drilling and Directional Drilling

· Experience with Well Planning tools such as Landmark's Well Plan,
Compass, Stress Check, Casing Seat and Well Cat and/or other comparable
Drilling related software applications.

· Familiarity with competitive, Third Party, Well Planning products

· General understanding of Software Development and/or Testing
methodologies

· Working knowledge of databases (Oracle, SQL Server), SQL, data
modeling, database design, synthetic data generation, data
migration/conversion

· Familiarity with Well Engineering Data Object definitions
including Bit, Borehole, Collar, Jar, Motor, Reamer, Rotary Steerable,
Stabilizer, Turbine, etc.

· Good Troubleshooting/Problem solving skills

· Domain knowledge in Petroleum industry





*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

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


[android-developers] DevOps Engineer with Ansible Experience@Sunnyvale, CA

2016-09-28 Thread Santosh kumar 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: DevOps Engineer with Ansible Experience*

*Location: Sunnyvale, CA*

*Work Duration: Long term*


*Note: We need Photo id and visa copy (H1B) Job Description:*
*Mandatory skills sets*: Hands on Experience in Ansible scripting , Maven,
Jenkins, Bamboo, Hudson, Unix scripting, Docker, Manage deployments in
Tomcat, Jboss servers, Docker based deployments
Desired skill sets: Puppet, Chef, GIT, SVN, Ruby, Python
· 8+ years of industry experience with scalable, high volume, mission
critical applications.
· Experience deploying and maintaining large scale Java based application.
· Working experience of at least 1 year in Ansible..
· Candidate should be very good Good in DevOps concepts, has exposure to
multiple tools.
· Good Linux administration experience and scripting knowledge.
· Excellent verbal and written English communication skills.







*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

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


[android-developers] Java Developer with automation Testing@Boston, MA

2016-09-28 Thread Santosh kumar 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: Java Developer with automation Testing*

*Location: Boston, MA*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill Set: *

· *Job Description:*
 3+ Years of experience testing restful web services

· 3+ Years of experience testing micro-services

· 3-5 Years of experience with an OO language

· 3+ Years of experience with a scripting language

· 1+ Year of experience with Agile Development

· 3+ Years of experience writing test automation for web services







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


[android-developers] UI DEVELOPER With DOM (Document Object Model)@Sunnyvale, CA

2016-09-29 Thread Santosh kumar 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: UI DEVELOPER With DOM (Document Object Model)*

*Location: **Sunnyvale, CA*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Skill Set: *
Primary : HTML5, CSS, Java scripting, jQuery,, JS MVC frameworks
(AngularJS, Can JS, Backbone JS)
Testing skills : Q Unit, Jasmine
Build Tools : Grunt, Gulp
Job Description :
• At least 6 years of experience in developing Web UI applications using
front end technologies HTML and CSS
• Must have good knowledge working on DOM manipulations using Java script
or libraries like jQuery/Zepto
• Good knowledge of Object-oriented JavaScript
• Hands-on experience developing enterprise applications using any JS MVC
frameworks (Angular, Backbone JS, Can JS)
• Exposure to Unit Testing frameworks like Jasmine, Q Unit etc.,
• Good knowledge on implementing Responsive/Adaptive Web Designs
• Good knowledge handling cross browser compatibility issues
• Good knowledge implementing Web Accessibility and SEO techniques
• Good knowledge using Developer tools for debugging and performance
optimizations
• Relevant knowledge on package management / build tools related to Front
End Technologies(like Grunt, Gulp)






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


[android-developers] JAVA DEVELOPER WITH AT&T EXPERIENCE@Dallas, TX

2016-09-29 Thread Santosh kumar 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: JAVA DEVELOPER WITH AT&T EXPERIENCE*

*Location: Dallas, TX*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

· *Skill Set: *
Java, Angular , UI

· more than 8 years experience who can play technical lead roles

· 2-3 Years  Scrum Masters

Must Be: AT&T





*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
--











[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

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


[android-developers] Python Tech lead@Houston, TX

2016-10-03 Thread Santosh kumar 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: **Python Tech lead*

*Location: **Houston, TX*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

Ø  5+ years of experience as a Python systems / backend developer.
Ø  Experience interacting with databases via standard Python database
libraries (Pyodbc, SQL Alchemy, etc.) required, as well logging and
exception capturing.
Ø  The role is responsible for creating a data pipeline to ingest, process
and route data to various systems.
Ø  Experience with Amazon’s web services as plus.



*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
--











[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

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


[android-developers] DevOps Developer@IOWA, IA

2016-10-03 Thread Santosh kumar 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: **DevOps Developer*

*Location: **IOWA, IA*

*Work Duration: 6+ Month*

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technology*
· .NET, Share Point, WCF,WS, MVC.NET
· MS-SQL
· IIS Admin, TFS
· JQuery, JS, Angular JS, etc
Job Description:
· IIS Administration and application set up in new environment.
· Controls the configuration of source codes and maintains code versions.
· Should schedule monitoring jobs, tasks etc and provision logs
· Development of automation tools for deployments and monitoring.
· Plan for automations.
· Controls release management




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


[android-developers] Business Analyst with ETRM Exp. (Must Be 11 Years)@Chicago, IL

2016-10-04 Thread Santosh kumar 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: **Business Analyst with ETRM Exp. (Must Be 11 Years)*

*Location: **Chicago, IL*

*Work Duration: 6+ Month*

*Years of Experience: 11+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

*Technology*
· Candidate should have strong background in *ETRM* with an overall
industry experience of 10-15 years as Business Analyst
· Experience in data analysis.
· Experience in toolsets for managing requirements, for example, JIRA,
SharePoint, HP Quality Centre, Microsoft TFS, etc.
· Experience in running the sprint planning, daily scrums, reviews and
retrospectives will be an added advantage.



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


[android-developers] Business Analyst With Data science @Tampa, FL

2016-10-04 Thread Santosh kumar 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: Business Analyst With **Data science  *

*Location: **Tampa, FL*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

Business Analyst skills in terms of requirements gathering, conducting and
participating workshops, appreciation for Data science techniques and their
relevance in Insurance domain -Insurance background


• This position is part of a core team responsible for delivering key
capabilities for the Group Health Claims program.

The Business Analyst will work closely with data scientists, technology
professionals and claims business partners in implementing advanced
analytics models and solutions.


Key Responsibilities:
• Acts as a primary member of the project team, overseeing and documenting
decisions that occur throughout the project lifecycle. Elicits specific
requirements using interviews, document analysis, requirements workshops,
surveys, site visits, business process descriptions, use cases, scenarios,
business process analysis and task and workflow analysis. Writes
requirements and translates specifications to technical experts.
• Identifies potential technical problems before they occur and helps
implement solutions by thoroughly validating all system changes relative to
assigned work. Works with the business technology team as an advocate of
the business unit supported.
• Critically evaluates information gathered from multiple sources,
reconciles conflicts and distinguishes user requests from the underlying
true need.
• Documents technical information, project information and develops
training material.
• Monitors progress of project and works to overcome challenges. Influences
others to achieve project results. Escalates issues when necessary.
• Ensure compliance with applicable federal, state and local laws and
regulations. Complete all required compliance training. Maintain knowledge
of and adhere to the internal compliance policies and procedures. Take
responsibility to keep up to date with changing regulations and policies.

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


[android-developers] Oracle DBA With Telecom Domain@Dallas, TX

2016-10-05 Thread Santosh kumar 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: **Oracle DBA With Telecom Domain*

*Location: Dallas, TX*

*Work Duration: 6 months *

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*

NOTE : Performance Tuning

Job description:

Good knowledge on Solaris and Linux operating systems and very good with
truss, pmap, pfiles, netstat, vmstat, iostat, etc.

Proficient with performance tuning in Oracle database 11g with RAC and
Dataguard.

Good understanding of tuning Data warehousing using STAR schemas.

Oracle Apps Proficient with performance tuning and application support for
Oracle eBusiness suite R12.

In depth knowledge of Oracle Applications technology stack, including
architecture.

Fusion Apps Proficient with performance tuning and application support for
Fusion Applications.

In depth knowledge of Fusion Applications technology stack, including
architecture.

Good understanding of Oracle internals Blocks, latches, memory structures,
locking mechanism, optimizer cost calculations, optimizer rules, stats
collections methodologies, etc.

Ability to research and understand the internals of new products.

*Mandatory Skills:*

Following Performance tuning skills are required Extensive experience with
tuning applications developed using SQL, PLSQL, Java and SOA Fusion.

Expertise in ASH, AWR.

In depth understanding of 10046 trace and 10053 traces.

Well versed in SQL Profiles, Oracle Baselines, v tables, xtables, etc.

In depth knowledge of Fusion Applications technology stack, including
architecture.

Domain: Telecom

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


[android-developers] SDET (Software Development Engineering Test)@Houston, TX

2016-10-05 Thread Santosh kumar 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: SDET (Software Development Engineering Test)*

*Location: Houston, TX *

*Work Duration: Long Term*

*Years of Experience: 5-7 year*

*We are looking profile who having experience with testing in Oil & gas
industry.*



*JD:-*

Accountabilities: *Manual Testing.*

5-7 Years of work experience . .net, C# testing.

Define Testing objectives based on Acceptance Criteria.

Develop Test Cases based on Test Objectives and Acceptance Criteria.

Write comprehensive Test Cases to verify project functionality.

Adhere to testing standards.

Execute Test Cases according to plan and document results.

Validate functionality according to requirements/stories.

Verify changes to functionality have no undesired affect on other,
associated areas of functionality.

Identify, communicate and document defects in a consistent fashion.

Track defects through resolution and implementation.

Verify defects are resolved according to defect definition.

Provide estimates of time for the test plan implementation.

Track and communicate progress against the Test Plan.

Create Test Data.

Provide objective assessment of Product Quality.







*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/CAG0Zfz39X7ig0%3DKzt%3D%2BuNf3tnJ9nT9DPxxZYE7W99KDj%3D2c%2BCg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SFDC Business Analyst@Chicago, IL

2016-10-06 Thread Santosh kumar 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: **SFDC Business Analyst*

*Location: **Chicago, IL *

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
Mandatory Skill
§ Minimum 5 years’ experience in implementing configuring, customizing
Salesforce.com instance
§ Minimum 2 years’ experience in developing with relational database
management systems
§ Experience integrating Salesforce with other applications
§ Command on Apex/triggers/Visual force Pages. (Sync/Async mechanism)
§ Good in Integration/Web services/XSD changes
§ Working knowledge of Java script, J query and HTML
§ 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
§ Working knowledge on Force.com IDE development kit and ANT migration
§ Deliver advanced business intelligence solutions leveraging the
Salesforce Wave application framework
Working knowledge of JSON, Pigql, SAQL, ETL Tool, such as Dell Boomi, Mule
Soft, Informatica on Cloud

Good to have:
§ Ability to prioritize and handle multiple tickets simultaneously
§ Proven ability to design and implement new processes and facilitate user
adoption
Have some development experience with Apex, HTML5, CSS, JavaScript, SQL,
and/or RESTful interfaces



*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/CAG0Zfz2qdo%2BkV%3DLLMP%2BqMKd5VLo%2BrPFeacSBS%3DEsj-wzC8sWmA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Quality Analyst With Teradata@Richardson, TX

2016-10-06 Thread Santosh kumar 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: Quality Analyst With Teradata*

*Location: **Richardson, TX*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
Must to Have
Must have Strong knowledge of data analysis, test plans and test cases
Must have Experience in Teradata environment and Teradata SQL - Nice to
have Strong knowledge of best practices around Data Warehousing and ETL
development
Good knowledge of Health Insurance
*JD:-*
We are looking for a seasoned, quality-minded, data warehousing
professional to test extracts, reform regression testing and setup QA and
UAT test cases for a Health Insurance Major.
Primary Tasks:
Design QA test cases from design document.
Design UAT test cases from business requirements.
Compose SQL queries to execute test cases.
Ensure all QA tickets have proper installation instructions and
comprehensive QA requirements.
Manage all QA tickets.
Address ad-hoc concerns from business stakeholders.

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


[android-developers] Fwd: Test Automation Architect With Current Selenium Test Exp.@St Louis, MO

2016-10-07 Thread Santosh kumar 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: **Test Automation Architect With Current Selenium Test Exp.*

*Location: **St Louis, MO*

*Work Duration: 6 months *

*Years of Experience: 9+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
Skill Set: · Test Automation Architect ·

Mandatory Skills:

9+ years of QA experience with 4+ years of current experience working on
Selenium Test Automation ·

Expertise in Selenium tool for Web application Test Automation ·

Expertise in Data Driven, Keyword Driven, Hybrid , Page Object framework to
be used with Selenium/Test NG ·

Hands on experience with Java programming for Selenium scripts ·

Excellent Presentation skills with ability to conduct impactful demos
Good to Have Skills · Hands on CICD experience



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


[android-developers] TIBCO DEVELOPER with Integration background@Torrance, CA

2016-10-07 Thread Santosh kumar 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: TIBCO DEVELOPER with Integration background*

*Location: Torrance, CA*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
8+ Years’ experience in analysis, design, development and implementation,
support of Enterprise Application Integration using TIBCO products ·

Extensive experience in TIBCO Business Works, TIBCO Designer, TIBCO
Rendezvous, TIBCO EMS and TIBCO administrator ·

Expertise in using TIBCO Hawk tool for monitoring and managing distributed
applications and operating systems ·

Hands on experience in Web services using SOAP/HTTP, JMS, Copybook Plugins,
SFDC plugins and EJB plugins
Mandatory skills* TIBCO Business Works, TIBCO Designer, TIBCO Rendezvous,
TIBCO EMS and TIBCO administrator
Good to have skills* Integration background

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


[android-developers] IVR Business Analyst With Telecom and Cable domain Domain@Charlotte, NC

2016-10-10 Thread Santosh kumar 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: IVR **Business Analyst* *With Telecom and Cable domain Domain*

*Location: **Charlotte, NC*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
Must Have Skills

Working with Business owners, developers and IT Team to collect the
requirements

Translating Business requirement to IT / Technical requirements

Writing formal functional and non-functional requirement specifications

Good knowledge of IVR Technologies, Avaya Experience Portal, Nuance Speech
Engine, Java, J2EE, Web-services

Telecom and Cable domain preferred

Experience in various billing systems

Database knowledge –  Oracle, RDBMS

Minimum 3 years’ experiences in Business Analyst roll for large scale
enterprise IVR.



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


[android-developers] Full Stack Developer@Phoenix, AZ

2016-10-10 Thread Santosh kumar 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: Full Stack Developer*

*Location: **Phoenix, AZ*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
*Skills:   *full Stack Developer, experience with Object Oriented
programming languages (Java, .NET, Python),application Performance Tuning,
unix Experience (Linux, Solaris, etc),experience with Distributed Systems

(ie Hadoop),Shell scripting

*Good to have :* Splunk knowledge and Web Development



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


[android-developers] .NET Developer@Milwaukee, WI

2016-10-11 Thread Santosh kumar 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: **.NET Developer*

*Location: **Milwaukee, WI*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
• At least 5-6 years of experience with excellent technology understanding
of NET and MVC
• At least 5-6 years of experience in design, development, testing,
deployment of applications using C#, .NET, IIS, SQL Server
• Recent experience in building web applications using .NET 4.5 and ASP.NET
MVC 5. At least 2 successful development & deployment experience is required
• Recent experience in developing web user interfaces for .NET applications
using HTML5, CSS3, JavaScript, JQuery Libraries
• Experience in building and consuming web services (REST & SOAP), Web APIs
• Strong understanding of common software development practices
• At least 5-6 years of experience Software Project life cycle activities
on development and maintenance





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


[android-developers] Data Modeler with snowflake@Hartford, CT

2016-10-11 Thread Santosh kumar 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: **Data Modeler with **snowflake*

*Location: **Hartford, CT*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
1. Good experience in designing Data models for OLAP and OLTP databases
2. Extensive experience in Dimensional modeling (star schema, snowflake) in
a data warehouse project
3. Experience working in data modeling tools like Erwin and create
Conceptual, Logical and Physical Data models
4. Experience in Database Design, Normalization





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


[android-developers] QA Engineer with Oil & Gas domain@Houston , TX

2016-10-11 Thread Santosh kumar 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: **QA Engineer with Oil & Gas domain*

*Location: **Houston , TX*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
*Technical Skills*:-

•   5+ years of hands-on application and infrastructure testing
with a focus on Microsoft technologies: C#, WPF, TFS

•   Hands-on experience writing tests in C#

•   Expert knowledge of a variety of systems development test
procedures and techniques, including unit, functional, regression, visual,
load, and performance testing

•   Expert in developing and documenting QA standards and
guidelines.

•   Strong scripting and automation skills







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


[android-developers] JAVA BACKEND DEVELOPER@Chicago, IL

2016-10-12 Thread Santosh kumar 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: **JAVA BACKEND DEVELOPER*

*Location: **Chicago, IL*

*Work Duration:** 6 months *

*Years of Experience: 9+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Additional Skills: Development of Java J2EE .

REST based.

 Web Service and some work on Spring.

Hibernate.

Oracle.



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


[android-developers] DATA BASE ADMIN with Performance Tuning@Sunnyvale, CA

2016-10-12 Thread Santosh kumar 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: **DATA BASE ADMIN with Performance Tuning*

*Location: **Sunnyvale, CA*

*Work Duration:** 6 months *

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

 Strong experience in Postgres DB design, administration and upgrades.
Strong experience in database performance tuning of large DBs 2-5 TB

*Skills: *

Working knowledge of DevOps tools like Puppet is needed.



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


[android-developers] QA with Manual Tester@Overland Park, KS

2016-10-13 Thread Santosh kumar 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 ..

*Only For Green Card Holder or US Citizen*

*Role: **QA with Manual Tester*

*Location: **Overland Park, KS*

*Work Duration:** 6 months *

*Years of Experience: 8+*

* Job Description:*
Must have Strong knowledge of data analysis, test plans and test cases

Manual functional testing
JD:-
We are looking for a seasoned, quality-minded, data warehousing
professional to test extracts
Design QA test cases from design document.
Compose SQL queries to execute test cases.

Address ad-hoc concerns from business stakeholders.



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


[android-developers] Java Developer With Walmart Labs product @Sunnyvale, CA

2016-10-13 Thread Santosh kumar 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: Java Developer With Walmart Labs product*

*Location: Sunnyvale, CA *

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*



*Must Haves – Skills *

Angular JS, Node JS



*Technical Skills*:-

• 4 years of experience building scalable *eCommerce applications* or
mobile software
• Work with Java and other related technologies to design and develop
robust high-performance and scalable applications for use within the @
WalmartLabs product ecosystem
• Provides and supports the implementation of business solutions across all
environments
• Utilize industry research to improve Wal-Mart’s technology environment.
• Strong computer science fundamentals in algorithms, data structures,
databases, operating systems, etc.
• Strong DB skills are a must, should be very strong with SQL queries
• Experience with Linux systems programming
• Knowledge of JavaScript, HTML 5, CSS 3, Jquery, AngularJS, Bootstrap and
Node.js is a plus
• 1 or more year(s) experience with SOA (Service Oriented Architecture),
RESTful web services
• A self-motivated learner and builder with strong customer focus and
obsession with quality
• Knowledge of standard tools for optimizing and testing code is a plus

Bachelor's Degree and 4 yrs. of experience; OR Master’s Degree with 2 yrs.
of experience in Computer Science or related field



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


[android-developers] Data Warehouse with Teradata Certified@Charlotte, NC

2016-10-14 Thread Santosh kumar 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: **Data Warehouse with Teradata Certified*

*Location: **Charlotte, NC*

*Work Duration:** 6 months *

*Years of Experience: 10+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Perform data modeling and data warehouse design in Teradata

Should be able to design/architect/develop Teradata/Unix based generic ETL
framework.

Lead and Mentor off shore team



Must Haves – Skills: Teradata and UNIX Shell Scripting.

Nice to Have/Skills: Informatica



Teradata Relevant Experience: Minimum 8 Years Unix Relevant Experience:
Minimum 7 Years



What project are they working on: DW/BI ETL Framework Development
(Teradata/UNIX)



Certification Requirement: Teradata Certified Professional







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


[android-developers] Certified Teradata Developer@Charlotte, NC

2016-10-14 Thread Santosh kumar 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: **Certified **Teradata Developer*

*Location: **Charlotte, NC*

*Work Duration:** 6 months *

*Years of Experience: 10+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Perform data modeling and data warehouse design in Teradata

Should be able to design/architect/develop Teradata/Unix based generic ETL
framework.

Lead and Mentor off shore team



Must Haves – Skills: Teradata and UNIX Shell Scripting.

Nice to Have/Skills: Informatica



Teradata Relevant Experience: Minimum 8 Years Unix Relevant Experience:
Minimum 7 Years



What project are they working on: DW/BI ETL Framework Development
(Teradata/UNIX)



Certification Requirement: Teradata Certified Professional







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


[android-developers] .Net Developer@Houston, TX

2016-10-18 Thread Santosh kumar 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: **.Net Developer With Exp. Business Object Project*

*Location: **Houston, TX*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Need a person with good .NET *skill set for a BO project* in Houston, TX.

Candidate should be aware of ASP.NET,

MVC,

C Sharp,

Entity framework,

WCF,

Web API

and SQL server







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


[android-developers] Frontend Java Developer@Boston , MA/ RI (only local )

2016-10-18 Thread Santosh kumar Nityo
ONLY FOR LOCAL / F2F INTERVIEW

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: Frontend Java Developer*

*Location: Boston , MA/ RI (only local )*

*Work Duration:** 6 months *

*Years of Experience: 9+ (Must Be)*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

 1.  HTML5

2.  CSS3

3.  JQuery

4.  AJAX and JSON

5.  JavaScript

6.  Angular JS

7.  Basic knowledge of designing tools (preferably Adobe Photoshop), as
to how to edit, crop resize images, logos etc.

8.  Responsive Designing (Bootstrap framework and CSS3 Media Queries)

9.   Worked in agile development environment







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


[android-developers] Teradata developer with BTEQ EXP@San Francisco, CA

2016-10-18 Thread Santosh kumar 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: **Teradata developer with BTEQ EXP*

*Location: San Francisco, CA*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

• Must have 5+ years hands on technical experience in Teradata with the
ability to write complex SQL primarily for ETL processes.
• Must have 2+ years of experience in *developing BTEQ and* Teradata Load
Utilities (M LOAD, FAST LOAD, etc.,)
• Experience with Teradata Physical Database Design, Development & Tuning.
• Strong written and verbal communications skills.
• Strong organizational and analytical skills.







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


[android-developers] JAVA BACKEND DEVELOPER WITH IVR@Alpharetta, GA

2016-10-20 Thread Santosh kumar 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: **JAVA BACKEND DEVELOPER WITH IVR*

*Location: **Alpharetta, GA*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

* J2EE, Spring,*

*Hibernate,*

*REST web services,*

*SOAP,*

*JSON,*

*Java script*





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


[android-developers] AWS Architect with Platform exposure@Portland, OR

2016-10-20 Thread Santosh kumar 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: **AWS Architect with Platform exposure*

*Location: **Portland, OR*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Years of Experience: 10 (Must Be)*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

complex and large-scale data challenges in involving AWS architecture,

Cloud migration,

AWS EMR,

Red shift



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


[android-developers] Portal Developer@Phoenix, AZ

2016-10-21 Thread Santosh kumar Nityo
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: Portal Developer*

*Location: **Phoenix, **AZ*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

J2EE, Portal development,

Web Services,

Tomcat,

Web Sphere (5.x),

Sun Access Manager,

EJB,

MDB,

MQ,

Struts,

JSP,

JDBC,

Jakarta POIs







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


[android-developers] Portal Developer@Phoenix, AZ

2016-10-21 Thread Santosh kumar 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: Portal Developer*

*Location: **Phoenix, **AZ*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

J2EE, Portal development,

Web Services,

Tomcat,

Web Sphere (5.x),

Sun Access Manager,

EJB,

MDB,

MQ,

Struts,

JSP,

JDBC,

Jakarta POIs







*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/CAG0Zfz13Fv3PhxE%3D7rMaL%3D169x0y6K8N%2BdZ8KOkSC10vZ76%2BsA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Automation Tester With Health care Domain@Phoenix, AZ

2016-10-21 Thread Santosh kumar 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: Automation Tester With Health care Domain*

*Location: **Phoenix, AZ*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Must Haves – Skills: Automation Testing UFP, RFP, or Selenium; 1 year exp
in Java coding; 2+ yrs of testing exp in healthcare

What project are they working on: Web Applications in Healthcare
Education/Certifications (Required): BA or hands on work experience
Certification Requirement: None



What is the team size, make up, culture, soft skills, and dress code?
Hours? Team Size 20



Any companies/environments where the backgrounds are a strong match? Don't
match? Healthcare industry



Are you open to candidates from other states who can relocate to the client
site? Yes



Interview Process (Is face to face required?) 1 Skype; 1 Phone







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


[android-developers] DevOps Architect With AT&T and CICD JAVA@Texas City, TX

2016-10-24 Thread Santosh kumar 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: **DevOps Architect With AT&T and CICD JAVA*

*Location: **Texas City, TX*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Required/Must Have Skills: Strong AT&T,JAVA CICD, Shell scripting

Education RequirementB.E.

Years of Experience: 8+ years

Certification Requirement   Good to have

Soft Skills Requirement Strong communication and Client facing

Work Hours/Schedule   8 hours / Normal US client

Is there a remote-work option?No

Interview Process (Is face to face required?)  Skype & Telephonic
interview would work







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


[android-developers] Java Developer with Kafka and Cluster@Minneapolis, MN

2016-10-24 Thread Santosh kumar Nityo
*ONLY FOR LOCAL/F2F INTERVIEW*

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 Kafka and Cluster*

*Location: **Minneapolis, MN*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

1. More than 8 years of experience.

2. Extensive working knowledge in Java, J2EE, RESTful SOAP Web Services,
Spring

3. Experience in setting up multi node Kafka cluster

4. Good Experience in Linux

5. Experience in data integration with relational and No SQL data bases
using Kafka  Storm

6. Knowledge of test driven development and work experience in agile
environments







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


[android-developers] System Admin@St Louis, MO

2016-10-24 Thread Santosh kumar 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: **System Admin*

*Location: **St. Louis, MO*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Extremely Good knowledge of Solaris/UNIX.

Must have skill - Extremely Good knowledge of Red Hat LINUX.

Must have skill - Highly skilled in C++.

Highly skilled in SQL/PLSQL.

Effective communication skills for client interactions and coordination
with offshore.

Following is the development tools list whose knowledge would be required:

 Must have skill - Very good knowledge of CC compiler used in Solaris

 Must have skill - Excellent knowledge of GCC compiler used for Linux.

 Must have skill - Very good idea of Make file and imake concepts.

 Must have skill - Good idea about Inter-Process Communication – shared
memory semaphores, OS level sockets, TLI sockets on Solaris.

 Good idea about debugging tools used in Linux.







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


[android-developers] Java Developer@Houston TX

2016-10-25 Thread Santosh kumar Nityo
*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*

*Location: **Houston TX*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Detailed job description - Skill Set:

· Java development

· AWS

· Requirement gathering, analysis and. elicitation

· Onsite-Offshore coordination

· Quality check

Mandatory Skills: Java, HTML, JQuery

Good to Have Skills: AWS Experience

Work Location: Houston TX

Client Interview / F2F Applicable: Phone Interview







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


[android-developers] MSBI Developer(BI SQL)@Waltham, MA(only Local)

2016-10-25 Thread Santosh kumar Nityo
*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: MSBI Developer(BI SQL)*

*Location: Waltham, MA(only Local)*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*



*Technical Skills*:-

BI Developers with SQL and Data modeling experience!

Strong SQL and RDBMS skills.

Proficient in ETL development using tools such as SSIS, Informatica or SAP
Data Services.

Experience with scripting languages such as VBScript, JavaScript, Python.

Experience with BI / BA visualization and/or reporting tools (Tableau, Spot
fire, Qlik).

Must have good analytical and communication skills.





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


[android-developers] Automation Tester with Health Care@Phoenix, AZ

2016-10-26 Thread Santosh kumar 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:* *Automation Tester with Health Care*

*Location: **Phoenix, AZ*

*Work Duration:* *6+ Month*

*Years of Experience**: 8+*

*Note: We need Photo id and visa copy (H1**B**)and Passport Copy OR
Passport number*
* Job Description:*


Experience in Automation Testing Any one or more automation skill using
UFT, RFT, selenium Experience in Java Have knowledge of Healthcare with 2
years of healthcare related project experience in testing Have good
knowledge of test artifact preparation like Test Strategy, Test Plan, Test
Scripts Have knowledge of Test Management tool like Quality Center

Must Haves – Skills: Automation Testing UFP, RFP, or Selenium; 1 year exp
in Java coding; 2+ yrs of testing exp in healthcare
How many years of experience? 3 to 4+ Years Design Exp.
What project are they working on: Web Applications in Healthcare
Any companies/environments where the backgrounds are a strong match? Don't
match? Healthcare industry
Interview Process (Is face to face required?) 1 Skype; 1 Phone

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


[android-developers] Java Lead Developer@Bellevue, WA

2016-10-26 Thread Santosh kumar 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:* *Java Lead Developer*

*Location: **Bellevue, WA*

*Work Duration:* *6+ Month*

*Years of Experience**: 8+*

*Note: We need Photo id and visa copy (H1**B**)and Passport Copy OR
Passport number*
* Job Description:*

Must Haves – Skills:
Java
Relational databases experience
Framework (web servers) Spring & hibernate
Hands on person who has the above skills
Experience with Test Driven development

Nice to Have/Skills:
Familiarity with GIT
Understanding of J2EE

How many years of experience?
8+years of Java development experience
Design and develop high volume, low latency applications for mission
critical systems, delivering highavailability and performance





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


[android-developers] QA with Validation and cable Domain@Denver, CO

2016-10-27 Thread Santosh kumar 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:* *QA Lead with Validation and cable Domain*

*Location: **Denver, CO *

*Work Duration:* *6+ Month*

*Years of Experience**: 9+*

*Note: We need Photo id and visa copy (H1**B**)and Passport Copy OR
Passport Number*
* Job Description:*
Must Haves – Skills:
Primary some cable domain background
Validation , Testing
Launching the application
New requirements validations
CMTS protocol
Analyze the issues, seeing the solution for those
Suggesting product for any gaps


Nice to Have/Skills:

Cable Architecture
Jira
Documents Systems Experience
Test rail

How many years of experience?

9 to 10 years
3 to 4 years of cable domain experience

What project are they working on:

Testing + Issues Environments, Understanding the requirements, Completing
owning the Quality validation & Assurance of the products







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


[android-developers] Business Analyst with Revenue accounting@Houston, TX and Stamford, CT and LA

2016-10-27 Thread Santosh kumar 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:* *Business Analyst **with Revenue accounting*

*Location: **Houston, TX and Stamford, CT and LA*

*Work Duration:* *6+ Month*

*Years of Experience**: 8+*

*Note: We need Photo id and visa copy (H1**B**)and Passport Copy OR
Passport Number*
* Job Description:*

We need few more Business Analysts both general and one specific with
Revenue accounting (preferably in the airlines)
Ø Understanding of AGILE (BDD).
Ø Exposure to functional web based application SDLC.
Ø Working knowledge on Tableau would be an advantage.
Ø Generic BA skills like listing requirement (writing PBI’s and acceptance
criteria), conducting workshops and managing stakeholders.







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


[android-developers] Scrum master (Oil & Gas industry experience)@Houston , TX

2016-10-27 Thread Santosh kumar 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:** Scrum master (Oil & Gas industry experience)*

*Location: Houston , TX*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
* Job Description:*

5+ years Scrum Master experience

Strong oral and written communication skills; excellent problem solving and
analytical skills.

Proven ability to drive project planning and execution process and add
value beyond just a task oriented doer or project manager

Familiarity with systems development lifecycle (SDLC)

Proven ability to function in a fast moving and rapidly evolving environment

Bachelor's Degree required











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


[android-developers] Backend Java Developer @Phoenix , AZ

2016-11-02 Thread Santosh kumar 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: Backend Java Developer *

*Location: Phoenix , AZ*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
* Job Description:*
*Technical Skills*:-

Experience level 7 yrs to 8 yrs



Programming Languages - Java 1.7 +



Development Frameworks - Spring, Spring Batch, Apache Camel, Drop Wizards
Integration JAX-RS, JMS Testing Frameworks - Junit, Mockito, PowerMockito



Good to have - Cucumber, Load Runner Databases Any Relational DB-
(preferably Oracle)

Good to have: MongoDB or Cassandra DevOps -Jenkins, Kubernetes, ELK
Integration, Docker, Git, SonarQube Others Jira, Confluence











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


[android-developers] DEVOPS LEAD/ ARCHITECT@Woodland, TX

2016-11-02 Thread Santosh kumar Nityo
*ONLY FOR LOCAL *

*F2F INTERVIEW*



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: **DEVOPS LEAD/ ARCHITECT*

*Location: **Woodland, TX*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
* Job Description:*

Must Haves – Skills: JENKINS, SVN, GIT, MAVEN, RUNDECK, SHELL SCRIPTS,
UNIX, LINUX, JIRA, CONFLUENCE

Nice to Have/Skills: KNOWLEDGE ON DEVOPS PROCEDURE AND IMPLEMENTATIONS How
many years of experience?

7+ YRS What project are they working on

Certification Requirement: ITIL V3



Top 3 Duties and percentage of time?

1. CI-CD PIPELINE CREATION ACTIVITY/ WRITING UNIX SHELL SCRIPTS/ AUTOMATING
BUILD AND DEPLOYMENT PROCESS: 80%

2. CLIENT REPORTING/ PROBLEM TROUBLESHOOTING/ ISSUE RESOLVING/ BUG
REPORTING/ SOLVING ISSUES WITH IN SLA: 10%

3. DAILY STATUS/WEEKLY STATUS/ MONTHLY STATUS/QUATERLY STATUS REPORTS: 10%













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


[android-developers] QA with VOD and cable Domain@Downingtown, PA

2016-11-03 Thread Santosh kumar 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: **QA with VOD and Cable Domain*

*Location: **Downingtown, PA*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
* Job Description:*

Must Haves – Skills: Exposure to Cable Domain, Web services testing using
REST, SOAP UI, Exposure to Unix for troubleshooting logs and deployment.
Nice to Have/Skills: SQL
How many years of experience?

More than 8 Years
What project are they working on: Cable Domain
Education/Certifications (Required): BE
Certification Requirement:

Top 3 Duties and percentage of time?
1. Test Cases Writing, Test Execution, Test Reporting
2. Attending calls with Development team (as applicable)
3. Troubleshooting the QA environment and applications deployment





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


[android-developers] Jr. Data Analyst with Health Care Domain@Woodlands, Texas

2016-11-03 Thread Santosh kumar Nityo
*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: **Jr. Data Analyst with Health Care Domain*

*Location: **Woodlands, Texas*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
* Job Description:*
Jr. Data Analyst

US

Claims

eMR

Lab Systems

Data Mapping

LS-ADM

The Woodlands





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


[android-developers] Sr. Java Developer with Health Care @San Francisco, CA

2016-11-04 Thread Santosh kumar 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: **Sr. Java Developer with Health Care *

*Location: **San Francisco, CA*

*Duration of contract: 6 months*

*Years of Experience**: 11+ (Must)*

*Interview: Phone/ Skype *

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*
Sr. Java Developer , 12+ years’ experience , SFO ..

Technical Skills

Java EE, Oracle, SQL, JMS, JPA/Hibernate, Restful Web Services

Oracle databases, PL/SQL

Worked in big implementation projects with big firms

Experience with Medical Terminologies (SNOMED CT, LOINC, RXNORM) and
Healthcare Standards (HL7, FHIR)

Healthcare experience, preferred (will add brownie points )









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


[android-developers] Must have Prior experience with American Express Java Developer || Phoenix , AZ

2016-11-07 Thread Santosh kumar Nityo
*Must have Prior experience with American Express.*

*On $38 on W2**(All Incl.) *



*Role: Java Developer ** with Apache Camel Exp*

*Location: Phoenix , AZ*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Required start date: Immediately*

* Technical Skills*:-

Experience level 4 yrs to 8 yrs

 Programming Languages - Java 1.7 +

 Development Frameworks - Spring, Spring Batch, Apache Camel, Drop Wizards
Integration JAX-RS, JMS Testing Frameworks - Junit, Mockito, PowerMockito

 Good to have - Cucumber, Load Runner Databases Any Relational DB-
(preferably Oracle)

Good to have: MongoDB or Cassandra DevOps -Jenkins, Kubernetes, ELK
Integration, Docker, Git, SonarQube Others Jira, Confluence









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


[android-developers] Java Lead Developer@Jersey City, NJ

2016-11-08 Thread Santosh kumar Nityo
*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 Lead Developer*

*Location: **Jersey City, NJ*

*Duration of contract: 6 months*

*Years of Experience**: 10+ (Must)*

*Interview: Phone/ Skype *

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*

Java lead with J2EE, Springs, Struts and Oracle experience

J2EE,

Spring,

Hibernate,

Java Web services

Must Have Skills (Top 2 technical skills only)
1. J2EE
2. Oracle

Nice to have skills (Top 2 only)

Desired years of experience : 10

Education/ Certifications (Required) : BE

Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. Coding
2. requirements
3. testing




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


[android-developers] Business Analyst with Airline Domain@Houston, TX and Stamford, CT and LA

2016-11-08 Thread Santosh kumar 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:* *Business Analyst with Airline Domain*

*Location: **Houston, TX and Stamford, CT and LA*

*Work Duration:* *6+ Month*

*Years of Experience**: 8+*

*Note: We need Photo id and visa copy (H1**B**)and Passport Copy OR
Passport Number*
* Job Description:*

We need few more Business Analysts both general and one specific with
Revenue accounting (preferably in the airlines)
Ø Understanding of AGILE (BDD).
Ø Exposure to functional web based application SDLC.
Ø Working knowledge on Tableau would be an advantage.
Ø Generic BA skills like listing requirement (writing PBI’s and acceptance
criteria), conducting workshops and managing stakeholders.







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


[android-developers] Data Analyst with Data Conversion Exp.@Houston, TX

2016-11-09 Thread Santosh kumar Nityo
*URGENT REQUIREMENT*

*TODAY OR TOMORROW INTERVIEW*



*Role:** Data Analyst with Data Conversion Exp.*

*Location: **Houston, TX*

*Work Duration:** 6 months to 1 year*

*Years of Experience: 9+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

Experience required.



Around 8-10 years

Data Conversion experience

Working experience with formats like JSON

Excellent communication skills



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


[android-developers] ETL Tester with PBM Domain@Saint Paul, MN

2016-11-09 Thread Santosh kumar 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:** ETL Tester with PBM Domain*

*Location: **Saint Paul, MN*

*Work Duration:** 6 months *

*Years of Experience: 8+*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*

ETL Testing Expertise in SQL,

Test Planning,

Test Estimation,

UNIX.

Exposure to SAS programming and

PBM domain is a plus

Must Have Skills (Top 2 technical skills only)
1. ETL Testing skills
2. Expertise in SQL / UNIX

Nice to have skills (Top 2 only)
1. Automation skills
2. Exposure to PBM Domain

Desired years of experience : 7 to 8 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/CAG0Zfz1sEF8GXokAoBDAE%2BCC9DT7mNVpnZ24dS9z%2BQdvhpXJzQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle Apps DBA@Juno Beach, FL

2016-11-09 Thread Santosh kumar 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: **Oracle Apps DBA*

*Location: **Juno Beach, FL*

*Work Duration: 6 months *

*Years of Experience: 8+*


*Note: We need Photo id and visa copy (H1B) Job Description:*
• 7+ years of experience in Oracle FMW Admin
• Build and support all different components of Oracle Fusion Middleware
12c and 11g like BPEL, OSB, BAM, ODI, ADF applications, including the Web
Logic App server
• Hands-on admin and configuration for multiple Web Logic domains
supporting full SDLC for several projects
• Implement monitoring tools and techniques for Fusion Middleware
components, particularly SOA and OSB services
• Support multiple integration projects in the middleware space,
troubleshooting middle-tier issues and assisting developers on
infrastructure related issues.
• Familiar with the product roadmap from Oracle. Support code deployment
activities. Typical maintenance triage type activities and supporting
developers with environment needs. monitor system health and make
performance enhancement recommendations
• Should have experience in using OEM and BTM for monitoring and taking
corrective action
• Should have a working knowledge of Oracle BPEL and OSB to support the
developers with deployment and other environment issues
Secondary skills (not compulsory)





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


[android-developers] Business Analyst with Avaya and Cable Domain@Charlotte, NC

2016-11-10 Thread Santosh kumar Nityo
*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: **Business Analyst with Avaya and Cable Domain*

*Location: **Charlotte, NC*

*Duration of contract: 6 months*

*Years of Experience**: 9+ (Must)*

*Interview: Phone/ Skype *

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*

Must Have Skills (Top 2 technical skills only)
1. Good knowledge of IVR Technologies, Avaya Experience Portal, Nuance
Speech Engine, Java, J2EE, Web-services
2. Translating Business requirement to IT / Technical requirements

Nice to have skills (Top 2 only)
1. Working with Business owners, developers and IT Team to collect the
requirements
2. Work with IT Team to understand technical aspect of the system
3. Writing formal functional and non-functional requirement specifications
4. Telecom and Cable domain preferred
5. Experience in various billing systems
6. Database knowledge – Oracle, RDBMS
7. Good oral and written communication.







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


[android-developers] Functional Tester with Amdocs Billing Experience@Philadelphia, PA

2016-11-10 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: Functional Tester*

*Location: **Philadelphia, PA*

*Duration of contract: 6 months*

*Interview: Phone/ Skype *

*Note: We need Photo id and visa copy (H1B)and Passport Copy OR Passport
Number*

Must Have Skills (Top 2 technical skills only)
1.Amdocs Billing Experience
2.CSG Billing Experience

Nice to have skills
1.Automation
2.DevOps Experience

Desired years of experience : 6+





Requirement Analysis, Test Planning, Test Execution, Test Summary report





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


[android-developers] UI/UX Developer with OIL&GAS Domain @Houston, Texas

2016-11-11 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: UI/UX Developer with OIL&GAS Domain *

*Location: Houston, Texas*

*Work Duration: 6 months *

*Years of Experience: 8+ (Must Be)*


*Note: We need Photo id and visa copy (H1B) Job Description:*
1.Extensive working experience on UI/UX design and development
2.Energy Oil & Gas

Nice to have skills (Top 2 only)
1.Excellent communication skills

Desired years of experience : 8+ 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/CAG0Zfz2dzmKsoQr5szpQZJR1m2VjGhhu9-gv8uw5qYJTWdcFeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   3   4   >