[android-developers] Android RTF to HTML converter

2016-12-06 Thread Marcin Malak
I've already seen lots of posts on the site for RTF to HTML converters and 
some other posts talking about some HTML to RTF converters, but I'm really 
trying to get a full breakdown of what is considered the most widely used 
commercial product, open source product or if people recommend going home 
grown.

I really need that so if there is any kind of solution you already 
know,please answer.

I already check librtf.sourceforge.net but it doesnt work properly as 
native code in C/C++. If there is anyone who used it before, and know how 
to implement it, please answer me! 

Thanks a lot !

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


[android-developers] In-app Subscriptions purchase token validity.

2016-12-06 Thread Anirudha
I have gone through the documentation of In App subscriptions and questions 
posted on StackOverflow but was not able to get a concrete answer.

Does the purchase token that is received when user purchases a subscription 
changes when the subscriptions is auto renewed ?

The document states in
https://developer.android.com/google/play/developer-api.html#practices
states that

"Once your server has retrieved the expiration date of subscription tokens, 
it should not query the Google Play servers for the subscription status 
again until the subscription is reaching or has passed the expiration date."

It can be hence inferred that the token doesn't change.
But when I tried it with test subscription the token changes on auto 
renewal.

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


[android-developers] Progetto con ActiveAndroid va in errore su save()

2016-12-06 Thread Danilo Rosso
buongiorno,
sto cercando di usare ActiveAndroid,ma  senza riuscirci.

Il mio progetto è composto da delle Activity  con View per richiedere i 
dati da caricare nel DB, e da una Activity senza View per caricare i dati 
sul DB  con il metodo save() del package ActiveAndroid.

di seguito il mio codice che va in errore:

package com.example.danilo.genealogia3;

import com.activeandroid.ActiveAndroid;

/**
 * Created by danilo on 06/12/16.
 */

public class insert extends android.app.Application{
String nome;
String cognome;

Gana gana;
public insert(){
}

public String setValues(String Value1,String Value2,String Value3,String 
Value4,String Value5,String Value6) {
cognome=Value1;
nome=Value2;
System.out.println(cognome);
System.out.println(nome);
System.out.println(Value6);
System.out.println(Value3+"/"+Value4+"/"+Value5);


ActiveAndroid.initialize(this);

gana = new Gana();

gana.tiprec = "N";
gana.cognome = cognome;
gana.nome = nome;
gana.ggN = Value3;
gana.mmN = Value4;
gana.annoM = Value5;
gana.luogoNascita = Value6;

gana.save();

return("FATTO");
}
}


Questo lo stack di errore:

> E/AndroidRuntime: FATAL EXCEPTION: main
>
>   Process: com.example.danilo.genealogia3, PID: 2467
>
>   java.lang.IllegalStateException: Could not execute 
>> method for android:onClick
>
>   at 
>> android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:293)
>
>   at android.view.View.performClick(View.java:5637)
>
>   at 
>> android.view.View$PerformClick.run(View.java:22429)
>
>   at 
>> android.os.Handler.handleCallback(Handler.java:751)
>
>   at 
>> android.os.Handler.dispatchMessage(Handler.java:95)
>
>   at android.os.Looper.loop(Looper.java:154)
>
>   at 
>> android.app.ActivityThread.main(ActivityThread.java:6119)
>
>   at java.lang.reflect.Method.invoke(Native Method)
>
>   at 
>> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
>
>   at 
>> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
>
>Caused by: java.lang.reflect.InvocationTargetException
>
>   at java.lang.reflect.Method.invoke(Native Method)
>
>   at 
>> android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288)
>
>   at android.view.View.performClick(View.java:5637) 
>
>   at 
>> android.view.View$PerformClick.run(View.java:22429) 
>
>   at 
>> android.os.Handler.handleCallback(Handler.java:751) 
>
>   at 
>> android.os.Handler.dispatchMessage(Handler.java:95) 
>
>   at android.os.Looper.loop(Looper.java:154) 
>
>   at 
>> android.app.ActivityThread.main(ActivityThread.java:6119) 
>
>   at java.lang.reflect.Method.invoke(Native Method) 
>
>   at 
>> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
>>  
>
>   at 
>> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 
>
>Caused by: java.lang.NullPointerException: Attempt to 
>> invoke virtual method 'java.util.Collection 
>> com.activeandroid.TableInfo.getFields()' on a null object reference
>
>   at com.activeandroid.Model.save(Model.java:70)
>
>   at 
>> com.example.danilo.genealogia3.insert.setValues(insert.java:52)
>
>   at 
>> com.example.danilo.genealogia3.NuovoG.inserisci(NuovoG.java:34)
>
>   at java.lang.reflect.Method.invoke(Native Method) 
>
>   at 
>> android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288)
>>  
>
>   at android.view.View.performClick(View.java:5637) 
>
>   at 
>> android.view.View$PerformClick.run(View.java:22429) 
>
>   at 
>> android.os.Handler.handleCallback(Handler.java:751) 
>
>   at 
>> android.os.Handler.dispatchMessage(Handler.java:95) 
>
>   at android.os.Looper.loop(Looper.java:154) 
>
>   at 
>> android.app.ActivityThread.main(ActivityThread.java:6119) 
>
>   at java.lang.reflect.Method.invoke(Native Method) 
>
>   at 
>> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
>>  
>
>   at 
>> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 
>
>
> Qui la 

[android-developers] Not properly working internet issues

2016-12-06 Thread Amit Gupta
Today, I am working on Asyntask Http client server,I have hitting a API 
(REST) ,running on api after that net issues are come and app is crash 
,Please give me valuable solution..

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


[android-developers] MediaRecorder object data to stream/byte array for passing to server without socket

2016-12-06 Thread Sulaiman Khan
Hello,
I have made a audio recorder which can record audio and save file on my 
phone. But the problem is i want to convert it to stream or byte array . I 
will send this a server where it will encode and post process the data and 
then pass it client phone. Is it possible to convert MediaRecorder data to 
byte or stream?? Help please:


mRecorder = new MediaRecorder();

mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);

mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);

mRecorder.setOutputFile(mFileName);

mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

try {
mRecorder.prepare();
} catch (IOException e) {
Log.e(LOG_TAG, "prepare() failed");
}

mRecorder.start();




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


[android-developers] Re: How to get stream of Audio

2016-12-06 Thread Sulaiman Khan
Did you solved it, brother? I am having similar problem. Need help. If you 
figured it out, please share

On Monday, August 24, 2009 at 7:00:58 AM UTC+6, tommylion wrote:
>
> Hi all, 
>
> I used Class MediaRecorder to play mp3 file, 
> the source like this: 
> -- 
> MediaRecorder recorder = new MediaRecorder(); 
> recorder.setAudioSource(MediaRecorder.AudioSource.MIC); 
> recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 
> recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); 
> recorder.setOutputFile(PATH_NAME); 
> recorder.prepare(); 
> recorder.start(); 
> -- 
>
> It runs no problem. 
> But I want to get the stream,and write the byte array to the stream, 
> let mick sound the refreing voice. 
>
> by use java source I can did that. 
> the source like this: 
> -- 
> SourceDataLine line = (SourceDataLine)AudioSystem.getLine(info); 
> SourceDataLine line = (SourceDataLine)AudioSystem.getLine(info); 
> // Initialize Audio 
> line.open(); line.start(); 
> byte[] block = new byte[1024]; 
> line.write(block, 0, block.length); 
> line.drain(); 
> -- 
>
> you know,Android SDK don't include the class SourceDataLine(package 
> javax.sound.sampled). 
>
> and who can tell me how to deal with that. 
> thank you! 
>
> tommy 
>

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


[android-developers] IOS Developer-contract for 6 months-immediate

2016-12-06 Thread annimbuesys
Hi Partners,

IOS Developer-contract for 6 months-immediate

I have a position for you here at IL for 6 months on contract for IOS 
DEVELOPER
.*We are unable to sponsor at this time. Need** someone specialized in 
Swift and Objective-C.*

If positive to relocate to Illinois please get in touch with me with your 
updated resume to *binduatptechpartnersdotcom* and I will get back to you.

Thanks
Bindu
 bi...@ptechpartners.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/b3eeb5e5-ce54-4fa4-a6b7-5ee601dcf395%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need || MS Sql DBA @AUBURN HILLS,MI || Passport No. Must

2016-12-06 Thread swamil singh
Hello,



Hope you are Doing well...!!!



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





Role: MS Sql DBA

Location: AUBURN HILLS,MI

Experience: 6+ years

DB Lead Position:


Under the supervision of the Manager, Open Systems and Database
Infrastructure (Volkswagen Group of America), implements, and maintains
standards and procedures to protect the integrity and availability of MYSQL
and MSSQL Database infrastructure. The position is responsible for 2nd and 3
rd level operational Database support, in addition to the implementation of
Database level tuning parameters/ patching per the VWGoA DBA policy. The
position requires participation in a 24-hour on-call support, scheduled
after hour changes, and to resolve Database/Application level
problems/issues. In addition to verifying organizational compliance with
established policies and procedures, the DBA will be responsible for the
ensuring the health and stability of the Databases (MYSQL and MSSQL) and
participating in daily monitoring activities.



   -

   Min 3 years of experience as MySQL and MSSQL DBA.
   -

Experience in Red hat Linux /WINDOWS 2008 & 2012.
   -

Demonstrated experience with MySQL database design, implementation,
   performance tuning, and capacity planning. Managing large scale database
   system is a PLUS.
   -

   Managing MySQL in production environment including installation,
   configuration, backup, recovery, upgrades and schema changes
   -

   Experience with MySQL replication , clustering , load balancing and
   failover
   -

   Diagnose server problems and employ preventive measures to maintain high
   availability servers
   -

Standard MySQL monitoring techniques
   -

Assistance in database daily operation
   -

Estimating project duration, effort, resource load and cost
   -

Creating processes to ensure data integrity and identify potential data
   errors
   -

Diploma or Degree in Computer Science, Electronics Engineering or
   Information Technology
   -

Experience in SQL Server 2008/2012 R2 Active/Active cluster on Windows
   2008 R2

Soft Skills:

   -

   Possess creative ability, credibility, self-confidence
   -

Ability to work independently, as well as collaboratively with other
   staff members, to complete short and long-term projects
   -

Good team player with strong analytical, communication, and
   troubleshooting skills
   -

Able to work under pressure and multi-tasking capabilities


-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

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

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Technical Delivery Manager (Cloud) - Bellevue, WA

2016-12-06 Thread Sekhar Reddy
Hi,

*Sekhar *here from *Metasis Informations*, one of our client has an opening
for* Technical Delivery Manager (Cloud)*

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



*Job Title   : Technical Delivery Manager (Cloud)*

*Job Location   : Bellevue, WA*

*Start Date: 12 months*

*Interview: Telephonic/Skype *



*Technical Delivery Manager (Cloud)*

*Core Competencies:*

Software development. Customer focus. Embracing open source mentality.
Driving change through technology, relationship building, influencing, and
talent management. Results focus and inspirational leadership.



*Required Qualifications:*

•BS Degree in Computer Science or Management Information Systems
(or equivalent industry experience)

•5+ years of project management or lead experience

•5+ years of hands-on coding and application development experience
(and has maintained ability to code)

•Attitude and aptitude for continually learning new things

•Excellent written and verbal communication and negotiation skills

•Experience managing business requirements, scope, schedule,
project plans and budget

•Experience with agile delivery methodologies

•Experience in cloud-native application development (AWS, Azure,
Docker)

•Ability to work effectively with multiple stakeholders,
upper-management

•Ability to triage issues across multiple systems and drive
technical issues to resolution

•Ability to assess the impact of new processes or project
requirements

•Ability to work autonomously and confidently present to all levels
within the enterprise

•Knowledge of current and emerging technologies

•Ability to successfully develop and deliver technical solutions



*Primary Duties and Responsibilities:*

•Directly and indirectly manage the work of T-Mobile and
third-party developers

•Provide structure and direction. Create clear and measurable
goals. Monitor progress and results. Give effective feedback to teams and
vendors. Hold people accountable, including self. Makes tough decisions
when appropriate

•Translate broader business initiatives into clear team objectives.
Align appropriately with other groups

•Manage business requirements and scope on a technical level.
Coordinate between cross-functional teams to ensure product adherence to
requirements and architecture

•Establish/maintain relationships with business clients, ensure
their needs are being met

•Manage communication to leadership on status of plans and
activities (including annual, quarterly, weekly and ad hoc reporting).
Present on projects, initiatives and other subjects to team, peers and
upper management

*Secondary Duties and Responsivities:*

•Create and manage service level agreements (SLAs)

•Create and own budget for projects

•Assist Cloud Finance team with analysis and reporting of cloud
hosting costs. Help support strategies to drive cost culture and
improvements

•Work cross-functionally with Procurement, Vendor Management,
Finance, Accounting, Tax, Legal and other supporting teams to ensure proper
alignment with stakeholders

•Implement best practices to improve the delivery process,
procedures, and tools used by team

•Contribute to organization’s body of knowledge on process design,
modeling, execution, monitoring and optimization

•Conduct peer reviews to solicit feedback on artifacts created



Thanks & Regards,

Sekhar

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

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


[android-developers] SAP FICA/RMCA | Sunnyvale CA | 6+ Months

2016-12-06 Thread Sam
Hi,

* Send me Resumes on h...@smdconsultants.com *

Please let me know if you have any one available for the following opening.
If yes, please send me your resume with the desired rate information.



*SAP FICA/RMCA Consultant*

Sunnyvale, CA

6+ Months

Best Rate: $70/Hr on C2C



*Request Summary: *

· 10+ years of SAP functional experience specializing in design and
configuration of SAP Finance modules. Two full life cycle implementation
experience of SAP FICO/FICA/RMCA  modules.

· Experience in gathering business requirements, providing
conceptual and detailed designs to meet business needs, performing
necessary SAP configurations, writing detail specifications for development
of custom programs, testing, co-ordination of transports to production and
post go live support.

· Prior experience in high tech or software industries with good
understanding of accounting concepts.

· Knowledge of BIT is added advantage.

· Requires excellent verbal and written communication skills,
including presentations creation and delivery.

· Candidate should have masters in Finance/ CPA / CPA equivalent


Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnVwb5qUKhKCKP%3DK9MG2H1Hb5L%3DX2BNCqM6thoYS-UELQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need----Sr. TIBCO Developer------EAD or GC or Citizens Only

2016-12-06 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



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



*Sr. TIBCO Developer*

*Herndon, VA*

*12+ month*

*EAD or GC or Citizens Only*

· Expert level skills in Tibco Active Matrix Enterprise Suite

· TIBCO EMS 7, 8.x

· TIBCO Business Works 5.12

· TIBCO Business Events 5.2

· TIBCO Hawk 5.1

· TIBCO Administrator 5.

· Strong understanding & experience of using Java, J2EE
technologies

· Experience in writing complex process integrations & using
different BW palette activities such JDBC, Java, SOAP, File, Service

· Experience in creating Channels, Concepts, DB Concepts, Events,
Rule Functions, and Rules using Business Event studio.

· Experience in using Tibco Decision Tables, Tibco Web Studio

· Experience in using Tibco CLE

· Strong working knowledge in XSD, XML, XPATH, XSLT and Web
Services using WSDL, SOAP, JSON

· Good understanding of setting up Load Balancing, Fault tolerance
for BW engines, BE processes

· Strong working knowledge in Oracle 11g, 12c

· Strong working knowledge for following agile scrum methodology in
software projects

· Good understanding of writing test cases and conducting unit
testing as well as supporting integration testing, system testing and
performance testing


Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

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


[android-developers] Database Developer (SQL) - Project Lead Location Columbia, SC

2016-12-06 Thread Rajesh Kumar Behera
-- 



 Hi Partners,

Hope you are doing  well !!!

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

Job Title: Database Developer (SQL) - Project Lead

Location: Columbia, SC

Duration: 6 months

Visa: Any

Interview: Phone



*NOTE*



- This position will not be developing or creating computer application; it
is more targeted to supporting and maintaining a SQL database with a user
interface developed in .Net.  The position will needs to retrieve data and
provide it in a useable format for data analysis.  I am looking for a
person that will be quick to learn this application/database and have the
ability to lead/direct others as needed.  This person will become the
expert and transfer their knowledge to others.  This is more like a Jr lead
role.



*Job Description:*
Within project schedules and other defined deadlines, candidate will
provide architectural documents derived from requirements documents
provided to them.  They will then precede to code and test a C# .NET 4
applications.  We currently utilize Entity and Unity Frameworks patterns
that must be adhered to.
 *Mandatory Requirements:*

·  1+ years of C# experience

·  1+ .NET framework  experience

·  1+ years Entity Framework experience.

·  1+ year experience with MVC

·  1+ year experience with WCF

·  Able to develop and interpret business requirements, develop technical
specs, write code and develop test processes to meet requirements.

·  Able to formulate technical resolutions to business issues

·  Problem-solving, troubleshooting skills

·  Work closely with others in a team environment

·  Able to work independently, self-motivated

·  Excellent communication skills

·  Bachelors in IT, Business or equivalent work experience


*Preferred Qualifications:*

·  Experiences converting XML and binary data into PDFs that are displayed

·  1+ Years Silverlight 4 (or above)

·  1+ years Unity frame work experience

·  1+ year experience TeamCity



 *Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

E: raj...@tekinspirations.com 

W: www.tekinspirations.com

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


[android-developers] Java architect__Need Urgent

2016-12-06 Thread Bharat Chhibber
Hello,

Hope you are doing well.

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



*Java architect*

*Timonium, MD and San Jose,CA*

*Contract Long Term*

   - at least 10+ years development experience in J2EE including, but not
   limited to
  - Should have handled / worked in BFSI projects
  - Should have worked in Agile methodology
  - Hands on experience in Java with Node JS
  - Experience in performing end-to-end on any stack, quickly digging
  in to unearth the best patterns and design decisions
  - Experience in making smart architectural decisions in a smart
  modular maintainable way and proven track record designing massively
  scalable systems
  - Experience in the capacity of a Technical Architect
  - Familiar with large-scale systems constructed with Java-language
  components, including JEE and JSE APIs
   - Will be trained on QA automation, Selenium, CI, Unit testing
   framework, automation framework prior to onboarding

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


[android-developers] Senior Automation engineer__Need Urgent with 9+ Profile

2016-12-06 Thread Bharat Chhibber
Hello,

Hope you are doing well.

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





Senior Automation engineer:

   - Two resources in *San Jose*
   - one resource in* Timonium, MA*
   - *Contract Long term*

JD: Will be QA automation engineers with Selenium

   - Must have: At least 8 years of QA automation experience including, but
   not limited to
  - Should have worked in BFSI projects
 - Should have worked in Agile methodology

· Strong experience in driving the entire testing life cycle from
gathering requirements to preparing and executing test plans

· 5+ years of experience in web and rest/soap services testing in
an automated fashion

· SQL experience (preferably Oracle) is required

· Experience with Unix/Linux and shell scripting

· Hands-on Experience in writing Selenium web driver automated tests

· Maintain and execute E2E automation suites for responsible
projects



· Nice to have:

· Exposure to Java

· Experience with Jenkins and CI concepts

   - Will be trained on CI

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


[android-developers] Technology Architect | Big Data | Big Data - ALL

2016-12-06 Thread sammy
Hello,

How are you doing?

My Name is Sharmishtha Rawat, Talent Acquisition Specialist at Systems
America.  We found your profile on Job Portal and wanted to see if you are
still looking for a new project?

Your background is amazing!  We are working on, what I think, potentially
would be your next career move.

We have a position with our direct client who are looking Technology
Architect | Big Data | Big Data - ALL and your resumes seems to be a good
fit for a Position we have with Infosys in Chicago, IL or Richardson, TX

Job Description





Infosys

Job Title: IT - Technology Architect | Big Data | Big Data - ALL
Work Location & Address: Chicago, IL or Richardson, TX

Contract duration (in months) 9 months
Target Start Date ASAP

Work Location: Chicago, IL 606
Job Details:

Must Have Skills (Top 2 technical skills only)
1. Big Data
2. Hadoop

Nice to have skills (Top 2 only)
1. All big data related skills
2.
Big Data. Hadoop Archit

*With Regards..**?*

Sharmishtha Rawat


Systems America, Inc.

3130 Crow Canyon Place Suite 425 San Ramon, CA 94583

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


[image: Logo]


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



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

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


[android-developers] Urgent Need: SAP Hybris Consultant @ Twinsburg, OH | Contract Position

2016-12-06 Thread Ateeq Rehman
Hello Associate,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share resume for SAP Hybris Consultant  at
ateeq.reh...@diverselynx.com *


*Job Description:*



*Role: SAP Hybris Consultant*

*Location: Twinsburg, OH*

*Hiring: Contract*



*Job Details:*



· Minimum 6+ year of IT experience in technical and eCommerce
development roles

· Experience in working in atleast 2 Hybris ecommerce full life
cycle implementations

· Extremely strong understanding of core hybris module out of the
box functionality

· Experience in creating proof of concepts in hybris ecommerce and
doing research to recommend appropriate solutions for the client business
requirement

· Strong communication skills to be able to articulate hybris
solutions to IT/business stakeholders and conduct show and tell sessions

· Hands-on development experience various commerce features such as
customer registration, product catalog, shopping cart and check out flow,
personalization, payment solution, and WCMS.

· Strong in Java, spring framework, MVC Architecture, HTML5/CSS, UI
development and Design patterns

· Experience in using latest development frameworks such as Gradle,
Junit, SonarQube, GIT, Geb, Spock, Sauce labs, Jenkins

· Diagnose and solve technical problems related to hybris
implementation

· Create end- to-end specifications for hybris commerce solutions

· Strong understanding of object oriented programming and
relational databases

· Provide direction to other members of technical team on design
and implementation

· Define implementation processes, code and delivery quality
standards

· Define and follow best practices to manage performance and
scalability of hybris solution

· Experience in code versioning and branching

· Good analytical and problem-solving skills







*Thanks & Regards*

*Ateeq Rehman*

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

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

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

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


[android-developers] Hiring for Network Security Architect at Columbus, OH

2016-12-06 Thread USIT Recruiter
*Hi *



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



*Job Title: Network Security Architect*

*Duration: 6+ months*

*Location: **Columbus, OH*



*Job Description:*

· 6- 10 years of experience as a security engineer

· Deployment experience in ISE,ASA is mandatory

· Working Knowledge of Source Fire an added advantage

· Nice to have CCIE(Security) Certified





*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

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

 *f: *+1 (608) 646 8326

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

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

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


[android-developers] NEED: Mainframe consultant @ Minneapolis, MN 55402 --- Contract

2016-12-06 Thread Martin Zeller
Hi,

This Is Martin Zeller from Agile Enterprise Solutions,

This is Reference for Following Position



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



*Job Title: Mainframe consultant*

*Location:*Minneapolis, MN 55402

*Duration:* 6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:Mainframe, Cobol, DB2, JCL*



*Job Description:*



*Must Have Skills: Mainframe Cobol, DB2, JCL*

*Nice to have skills:* CICS, RDZ/RPP, Brokerage/Banking experience



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

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

Gmail: martinzeller0...@gmail.com



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

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

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


[android-developers] Drupal Developer || San Jose, CA || Skype HIre || 8+ exp only || No OPT at this time

2016-12-06 Thread Vishal Ji Awasthi
Title: Drupal Developer

Duration: 6+ months

Location: San Jose, CA

Phone & Skype



Need 8+ yrs exp



Skills Required

Experience in Development and maintain custom modules in
PHP/Drupal/Wordpress in accordance with requirements.

5+ years of web application development with a minimum of 3+ years of
experience in Drupal and/or Wordpress development.

Advanced level of PHP, MySQL, HTML/CSS/JavaScript development.

xpertise in at least one PHP MVC framework (Zend, CakePHP, YII,
CodeIgniter).

Advanced experience with CMS architecture, CMS Hooks, API, best practices
and coding standards.

Knowledge in security techniques and best practices in relation to web
development.

Excellent verbal/written communication skills and strong time management
and analytical/problem solving abilities.





*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] VERY URGENT POSITION:Skype Interview:Devops Engineer with Java in Philadelphia, PA|NO H1B|$45/hr on c2c only............................................

2016-12-06 Thread Neha K
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

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



*POSITION: Devops Engineer with Java*

* INTERVIEW: Skype Interview*

*LOCATION: Philadelphia, PA*

*DURATION:6 MONTHS+*

*VISA:NO H1B*

*START :ASAP*





*Job Overview:*





*DevOps Engineer with background in Java Development and experience with
Spring Boot. Will be responsible for architecting, designing and developing
solutions that will integrate across multiple platforms. MUST HAVE
experience with Spring Boot and Micro Services.*



Thanks,





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

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

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

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

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


[android-developers] MOst Urgent ||||Sr. Data Modeler with some Architecture Exp || Wilmington, DE || Direct F2F

2016-12-06 Thread Vishal Ji Awasthi
Sr. Data Modeler with some Architecture Exp
Client: Barclaycard
Location:  Wilmington, DE
Length:  1 years
Interview process:  Onsite ( No phone or Skype – straight to onsite )

*(this is a heads up from a manager we deal with. Not out to the public )*



Should have handled OLTP and Warehouse type environments.   Most of the
time will be spent on data modeling.  Should be able drive and get things
done. Not like a wait and watch personality


*>Required Skills:*

> ·  *Minimum 3-5+ years experience modeling complex databases using 3rd
party modeling tools such as ERWin 9.2*

> ·  Experience designing and building large financial services data
warehouses with very strong data analysis skills

> · Have good knowledge of ER/Dimensional modeling and have extensive
experience in developing logical and physical data models in complex,
multi-application environments.

> · 3-5+ years of hands-on experience in data management, data warehousing,
data transformation, metadata and reference data management and business
intelligence tools.

> ·   3+ years of experience with advanced SQL query techniques using TOAD,
SQL Navigator. Basic UNIX would be a Plus.
> ·  Previous experience as a hands-on Oracle DBA of large database is a
plus.
> ·  Must have good understanding of leading 3rd party products in the
relevant areas (e.g. Datastage, Business Objects, Microstrategy).
> ·  Significant experience with System Development Life Cycle (SDLC)
>   Responsibilities:
> Capture business requirements and rules, design the associated logical
models, and create all required documentation to support, communicate, and
validate the data  model.
> Design, build and maintain the logical and physical data models to
support the business requirements in a dynamic, expanding business
environment.
> Map data elements of data sources into the domain data models.
> Maintain documentation of data models, including relationships,
constraints and metadata.
> Publish and conduct model reviews with business and technical project
teams.
> Review database design changes with the team to determine the impact to
the physical database and other systems.
> Coordinate with development/implementation team to improve model formats
and approaches with regard to implementation issues.
> Participate in performance tuning activities including partitioning
strategies, indexing strategies, and SQL optimization
> Architect with an eye toward high performance, scalability, and high
availability.



*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] Need Salesforce Developer New York City, New York

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

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

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

*Job Title: Salesforce Developer*
*Location: New York City, New York*

*Job Description:*

   - Our ideal candidate will be extremely detail oriented, with a strong
   capacity to balance immediate, short, and long term projects
   simultaneously. You will be managing access rights for Salesforce users,
   creating solutions that arise from new business needs, bringing insights
   into pre-existing solutions within Salesforce.


*Specific responsibilities include:*

   - Manage the Salesforce.com CRM application.
   - Maintain and apply current working knowledge of Salesforce.com
   capabilities and best practices.
   - Familiarize yourself with the latest Salesforce releases and products.
   - Maintain the functional areas of data management, contacts, leads,
   campaigns, opportunities, quotes, dashboards and reports.
   - Maintain user roles, security, profiles, etc. Perform database
   de-duping and clean up procedures as necessary
   - Manage data migrations and/or mass data uploads as necessary.
   - Develop and Customize global reports and dashboards.
   - Create Workflow Rules, Validation Rules, Flows, Email Alerts, and
   Processes.
   - Participate in data integration process with other enterprise
   applications as necessary.
   - Integrate features with upstream and downstream systems as necessary.
   - Configure new features in Salesforce.com and iterate as necessary
   based on feedback from stakeholders.
   - Participate in UAT sessions with users for developed features.
   - Provide prompt and complete resolution to technical challenges and
   business issues.
   - Create, evaluate, and edit Apex Classes
   - Maintain strong relationship with Salesforce.com. Manage outsourced
   Salesforce.com partners as required. Identify KPIs for Salesforce.com
   processes and develop reports and dashboards to monitor them.
   - Drive and increase customer adoption and ensure satisfaction. Other
   responsibilities as assigned.
   - Utilize the Sandbox for testing, training, and deploying weekly
   releases to production


*Required skills:*

   - Needs to be able to work with ETL tools and develop APEX code
   - Formal Salesforce.com training and or certification
   - Salesforce developer skills strongly preferred.
   - 3+ years' experience implementing and configuring Salesforce.com for
   100+ users
   - Solid understanding of and detailed experience with Salesforce.com
   architecture and applications
   - Understanding of database concepts and data management
   - Ability to collect metrics, analyze data and compile Salesforce.com
   reports for sales programs
   - Understanding of best practices in regards to scaling Salesforce
   globally
   - Demonstrated professionalism interacting with all levels of user
   community
   - Strong attention to detail and excellent problem solving skills
   - Strong verbal/written communication and data presentation skills,
   including an ability to effectively communicate with both business and
   technical teams


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

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


[android-developers] Senior Applications Developer @ Greenville, SC

2016-12-06 Thread ANUDEEP
*Title : Senior Applications Developer*

*Location : Greenville, SC*

*Duration : 12+ Months *



*Skills** :** SQL, C#, HTML5, CSS3, Angular *




*Please look for experience on three areas (highlighted in RED).*


*Description:*

*Experience with .Net*

*Experience with C# or C++*

*Experience with web technologies such as HTML5, CSS3, Angular JS, Node JS,
etc.*

*Experience with Stramweaver*

*Knowledge of SQL and relational databases is a plus*



*Thanks*

*Anudeep | Anblicks | **www.anblicks.com* 

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

*anudee...@anblicks.com* 

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


[android-developers] Re: AdView rotation.

2016-12-06 Thread Алексей Барабанов
Hi there! I know it is an old post, but there is other problem too...

To rotate AdView you simply need to use something like this:
adView.setRotation(90);

But banner will be cropped after rotating. It looks like canvas does not 
rotate. It's well noticed on small angles:



If you rotate banner 90 degrees, it completely disappear. But it still 
reacts on clicks.

I tried to set pivot center through setPivotX() and setPivotY() - no 
results.
I tried to create subclass for AdView, but AdView is final class. So, nor 
any subclasses... :(

Any suggestions?

PS: 8487000


вторник, 22 декабря 2009 г., 11:23:49 UTC+5 пользователь Pankaj Deshpande 
написал:
>
> Dose anybody knows how to rotate an AdView in android?
> I took it in LinearLalyout  and it's position is fixed.
> My application's orientation is portrait and I want AdView in
> horizontal fashion.
> Is it possible? How?
>
> Thanks in advance!
>

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


[android-developers] oRACLE Fin BA--NJ

2016-12-06 Thread Lisa Ray


HI

This is an urgent requirement for our client

 

Need an Urgent  Oracle Techno Functional  FINANCIAL Business Analyst

 

This role is 50 : 50 Techno Functional Analyst Role with an Experience in 
FINANCIAL Module Exp

 

Kindly submit relevant resume on l...@techpunditsinc.com immediately

 

Job Description

 

Location: New Jersey

Tenure : Year Long & Extendable

Interviews: Ongoing 

 

 Req Details

· Required Skills 5 years experience as an Oracle FINANCIAL BA 
Preference for Oracle certified practitioners Oracle FINANCIAL Application 
Configuration and Development Experienced 

· Bachelors degree in Computer Science, Engineering or comparable 
field

· Experience in Customer Support and Training

· 2-5 years Document Solutions Industry experience 

· Oracle ERP experience in Oracle FINANCIAL modules Customer 
Relationship Module

· Oracle R12 experience required

· Skilled in SQL

· Strong communication skills and attention to detail

· Good experience in entire Software Development Life Cycle (SDLC) 
including Requirement Analysis, Design,and Testing of software applications.

· Good experience in requirement analysis, business analysis, and 
supporting of Oracle FINANCIAL applications.

· Oracle EBusiness Suite/ Applications performing technical and 
functional work within the Financial Management module.

·   Experience across the entire standard development lifecycle

· Experience writing functional/business requirements and preparing 
functional designs

 

 

Thanks & Regards

Lisa

732 659 8650

TechPundits Inc

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


[android-developers] Oracle Financial BA --NJ

2016-12-06 Thread Lisa Ray


HI

This is an urgent requirement for our client

 

Need an Urgent  Oracle Techno Functional  FINANCIAL Business Analyst

 

This role is 50 : 50 Techno Functional Analyst Role with an Experience in 
FINANCIAL Module Exp

 

Kindly submit relevant resume on l...@techpunditsinc.com immediately

 

Job Description

 

Location: New Jersey

Tenure : Year Long & Extendable

Interviews: Ongoing 

 

 Req Details

· Required Skills 5 years experience as an Oracle FINANCIAL BA 
Preference for Oracle certified practitioners Oracle FINANCIAL Application 
Configuration and Development Experienced 

· Bachelors degree in Computer Science, Engineering or comparable 
field

· Experience in Customer Support and Training

· 2-5 years Document Solutions Industry experience 

· Oracle ERP experience in Oracle FINANCIAL modules Customer 
Relationship Module

· Oracle R12 experience required

· Skilled in SQL

· Strong communication skills and attention to detail

· Good experience in entire Software Development Life Cycle (SDLC) 
including Requirement Analysis, Design, Development and Testing of software 
applications.

· Good experience in requirement analysis, business analysis, 
design, development and supporting of Oracle FINANCIAL applications.

· Oracle EBusiness Suite/ Applications performing technical and 
functional work within the Financial Management module.

· Developed & Maintaining numerous customizations for Oracle 
Financial applications developed for the Client

· Experience across the entire standard development lifecycle

· Experience writing functional/business requirements and preparing 
functional designs

 

 

Thanks & Regards

Lisa

732 659 8650

TechPundits Inc

 

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


[android-developers] Hiring for C++ Developer at Omaha NE

2016-12-06 Thread USIT Recruiter
*Hi *



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



*Job Title: C++ Developer*

*Duration: 6+ months*

*Location: **Omaha NE*



*US citizens/Green Card holders/Green Card EAD holders*



*Job Requirement :*

· Min 6 years of IT experience

· 6+ years of C++ and Unix/Linux

· 4+ years of experience working in SQL

· 6+ years of experience in development & support projects.

· 4+ years of experience designing (algorithms etc.) for these
projects.

· 2+ years of experience in Object Oriented development

· 4+ years of experience in developing large, distributed
applications

· 2+ years of Advanced Analytical & Problem Solving Skills









*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

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

 *f: *+1 (608) 646 8326

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

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

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


[android-developers] What is the minimum android version that nearby could work on.

2016-12-06 Thread Nerox
Or does it run on all versions of android

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


[android-developers] Urgent Need: SOA (Fusion Middleware) Admin @ Jacksonville, FL | Contract Position

2016-12-06 Thread Ateeq Rehman
*Hello Associate,*

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



Please share resume for* SOA (Fusion Middleware) Admin at
**ateeq.reh...@diverselynx.com
*


*Job Description*


*Job Title: SOA (Fusion Middleware) Admin*

*Location: Jacksonville, FL*


*Hiring: Contract *




*Job Responsibilities:*

· Install and support server and middleware configurations to
support a 24/7 highly available application environment that includes:

· Application Servers (Oracle WebLogic)

· Web Servers (Apache and Oracle HTTP Server)

· Message queuing/brokering

· Oracle Enterprise Service Bus

· Oracle SOA Suite Server

· Load balancing

· Multi-site hot and cold site configurations

· Acquiring and applying upgrades and patches

· Identifying optimal configurations

· Assuring appropriate service levels are being met

· Evaluates and determines throughputs and loads

· Monitors and tunes configurations to perform at peak levels

· Assures client service levels are being met

· Recommends infrastructure upgrades to meet current and projected
loads

· Is a member of a production support team that provides 24/7
problem support

· Researches, resolves, and recommends solutions to support issues

· Assures standards are applied

· Other duties as assigned.


*Experience: *

·Oracle WebLogic CE or CPE

·3+ years of experience in Oracle WebLogic

·3+ years of experience in Linux

·3+ years of experience in Oracle Database


*Required Skills: *



o   WebLogic Application Server installation, configuration, tuning, and
support in a clustered, load balanced environment

o   Managing  and configuring resources such as

· JDBC (and driver support)

· JMS

· Message Queues

o   Installation and configuration of system monitoring tools

o   Hands on experience in WLST and JMX to automate installation,
configuration, deployments, and monitoring

o   Expert in writing Linux shell scripts

o   Experience administering HTTP Web Servers

o   Linux/Unix and Windows Server experience, including shell scripting

o   Strong troubleshooting and problem solving skills in 24/7 environment







*Thanks & Regards*

*Ateeq Rehman*

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

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

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



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

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


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

2016-12-06 Thread Acha Hotlist
Hello,



Hope you’re doing great today.

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



*Name*

*Technology*

*Location*

*Experience*

*Relocation*

SB

.Net Developer

Aberdeen, SD

12+

Yes

SK

Informatica

Madison, WI

9+

Yes

MJG

Hadoop Developer

Lisle, IL

7+

Yes

SR

Open stack Engineer

Dallas, TX

7+

Yes

RN

Salesforce Developer

Dover, NH

8+

Yes

ES

DevOps Engineer

Tampa, FL

8+

Yes

MRR

UI Developer

Atlanta, GA

7+

Yes

HC

.Net

Los Angeles, CA

7+

Yes

SM

Senior .Net Developer

Louisville, KY

8+

Yes

URR

Service Now Developer/Admin

Richardson, TX

7+

Yes



Thanks & Regards,



*Acha Ayyappa*

*CNET Global Solutions, Inc *

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



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*



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




Note: We respect your Online Privacy. This is not an unsolicited mail.
Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include Contact information and a
method to be removed from our mailing list. If you are not interested in
receiving our e-mails then please reply with a "remove" in the subject line
and mention all the e-mail addresses to be removed with any e-mail
addresses which might be diverting the e-mails to you. I am sorry for the
inconvenience caused to you.

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


[android-developers] Urgent Need: System Engineer/Active Directory Administrator _NYC,NY _6+ Months

2016-12-06 Thread Shawn Marsh
Hi,

Hope your are Doing Good…!

I have an urgent opening on *System Engineer/**Active Directory
Administrator* Position with my client. Please send me the resumes with
full name, contact details, Salary, and availability date.



*Requirementdetails:*

*Title:** System Engineer/**Active Directory Administrator*

*Location: **NYC,NY*

*Duration   : 6+ Months*



Technical skills and Knowledge:



*Immediate Opening*



*Primary Skills**:*   *System Engineer/**Active Directory Administrator*



*Responsibilities:*



Description:

As part of the ICC Workspace and Identity Services (OPSW) the consultant
will provide on-going support for Directory services and will implement
service enhancements

*Key Responsibilities*

   - Support, maintain and optimize the Active Directory, DNS and related
   infrastructures
   - Design, develop, and deploy Active Directory solutions for ICC and its
   partner organizations
   - Collaborate with other teams to design and implement delegated
   administration and support of Active Directory and associated services
   - Collaborate with other teams to implement service and system
   monitoring, alerting and reporting
   - Prepare technical documentation



*Skills and Qualifications*

   - 7+ years of IT work experience with at least 5+ years’ experience in
   system administration of Microsoft Active Directory Systems (Windows 2008
   R2) and 2+years in deployment and administration of Microsoft Active
   Directory Systems (Windows 2012)
   - Experience in installation, configuration and support of multi-site,
   multi domain/forest Microsoft Active Directory environments offering high
   availability and disaster recovery
   - Experience with Active Directory assessment, migration and
   consolidation
   - Experience with hardening and recovery of Active Directory
   - Experience in configuring auditing policies for AD objects
   - Experience in automating domain build, configuration
   - Experience with DNS configuration and administration
   - Experience with Group policy configuration and management for DCs,
   member servers, workstations and users
   - Extensive knowledge of troubleshooting on Active Directory
   - Experience in large-scale and complex environments, particularly
   global implementations with significant reliance on bandwidth-constrained
   high-latency links is an advantage.
   - Experience in Windows administration and strong scripting skills
   - Familiar with LAN, WAN, TCP/IP, firewalls
   - Strong document writing skills
   - Excellent communication and organizational skills
   - Must be willing to participate in a 7 x 24 on call support program and
   flexible hours including some weekends and evenings.
   - Good Knowledge of Windows 2012
   - Exposure to Microsoft Azure is desirable







Thanks & Regards



*Shawn Marsh*

Insoursys Inc

Ph: 972-427-1801

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

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

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


[android-developers] MOst Urgent ||||Sr. Data Modeler with some Architecture Exp || Wilmington, DE || Direct F2F

2016-12-06 Thread Vishal Ji Awasthi
Sr. Data Modeler with some Architecture Exp
Client: Barclaycard
Location:  Wilmington, DE
Length:  1 years
Interview process:  Onsite ( No phone or Skype – straight to onsite )

*(this is a heads up from a manager we deal with. Not out to the public )*



Should have handled OLTP and Warehouse type environments.   Most of the
time will be spent on data modeling.  Should be able drive and get things
done. Not like a wait and watch personality


*>Required Skills:*

> ·  *Minimum 3-5+ years experience modeling complex databases using 3rd
party modeling tools such as ERWin 9.2*

> ·  Experience designing and building large financial services data
warehouses with very strong data analysis skills

> · Have good knowledge of ER/Dimensional modeling and have extensive
experience in developing logical and physical data models in complex,
multi-application environments.

> · 3-5+ years of hands-on experience in data management, data warehousing,
data transformation, metadata and reference data management and business
intelligence tools.

> ·   3+ years of experience with advanced SQL query techniques using TOAD,
SQL Navigator. Basic UNIX would be a Plus.
> ·  Previous experience as a hands-on Oracle DBA of large database is a
plus.
> ·  Must have good understanding of leading 3rd party products in the
relevant areas (e.g. Datastage, Business Objects, Microstrategy).
> ·  Significant experience with System Development Life Cycle (SDLC)
>   Responsibilities:
> Capture business requirements and rules, design the associated logical
models, and create all required documentation to support, communicate, and
validate the data  model.
> Design, build and maintain the logical and physical data models to
support the business requirements in a dynamic, expanding business
environment.
> Map data elements of data sources into the domain data models.
> Maintain documentation of data models, including relationships,
constraints and metadata.
> Publish and conduct model reviews with business and technical project
teams.
> Review database design changes with the team to determine the impact to
the physical database and other systems.
> Coordinate with development/implementation team to improve model formats
and approaches with regard to implementation issues.
> Participate in performance tuning activities including partitioning
strategies, indexing strategies, and SQL optimization
> Architect with an eye toward high performance, scalability, and high
availability.



*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] UI Tech Lead

2016-12-06 Thread chandrakanth itiyam
*Job Title: UI Tech Lead*

* Work Location & Addres: Bentonville(AR) Contract duration (in months) 6*

*Exp :10+years*

* Job Details:  Must Have Skills (Top 2 technical skills only)*
1. At least 4 years of experience with developing HTML5, CSS3, JavaScript
and Bootstrap.
2. Accessibility, Cross Browser compatibility, Photoshop, JSON Skills
*Nice to have skills (Top 2 only)*
1. Working in Agile Mode
2. UX design experience
*Top 3 responsibilities you would expect the subcon to shoulder and
execute:*
1. At least 2 years of experience in Design and architecture review
2.Work in Onshore offshore model and be ready to communicate and coordinate
with offshore team
3.Work with client UX team and provide the required updates on the task



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


-- 
Thanks & Regards,

*Chandrakanth Grandhi*
*ITiyam LLC*

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

Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we  include contact information and a
remove link for removal from our mailing list. To be removed from our
mailing list, reply with remove in the subject heading and your email
address in the body. Include complete address and domain to be removed.
Pursuant to Federal law, if you do not wish to receive future email
messages from us, please reply with "remove" to the same id.

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


[android-developers] Lead Build & Release Engineer position with Android @ Atlanta, GA

2016-12-06 Thread Shyamsundar
Hi,
Hope you are doing good.
Please find below job description and do share me resumes to
*sh...@saligrams.com
*

*Lead Build & Release Engineer position with Android*

*Working Location: Atlanta, GA*

*Project duration: minimum 2-years contract*



This particular project is about the development of the next generation
automotive infotainment with focus on Android-based solutions.



*Requirements:*

- Minimum 5 of Experience in Git/GitServer, Jenkins, Gerrit build,
integration and release management.

- Experience applying Configuration Management processes to projects,
setting up and maintaining build/integration/release infrastructure and
supporting a continuous delivery model by automating software build and
packages.

- Android platform experience.



*Job Responsibilities*

- Continuous Integration process,

- Validation and verification process,

- Configuration management.


*Thanks, *

*Shyamsundar*

*Saligram Systems Inc*

*sh...@saligrams.com *

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


[android-developers] Project Manager with Cobol and VSAM@Chicago, IL

2016-12-06 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:* *Project Manager with Cobol and VSAM(Must Be 10+)*

*Location: **Chicago, IL*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
* Must Have Skills*
Must Have Skills (Top 2 technical skills only)
1.Cobol
2.VSAM

Nice to have skills (Top 2 only)
1.Teradata

Desired years of experience : 10+

Education/ Certifications (Required) : BE





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


[android-developers] Required:::Project Manager at Dearborn, MI

2016-12-06 Thread priyadarshani . s145


Hi,​

Hope you are doing Good!

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

*Position:  Project Manager*

*Location: Dearborn, MI*

*Duration: 6 Months to 12 Months*

Job Description:

· To plan, execute, control and ensure closure of projects, while 
managing people and delivery excellence in all parameters of time, cost and 
processes in projects. Drive execution of the project roadmap and manage 
entire project lifecycle from strategy planning to tactical activities. 

· Ensure high customer connect for the project, building processes 
for all relevant team members to engage with the customer. Ensure 
completion of Project Satisfaction Report and relevant survey and feedback 
mechanisms. 

· Guide the launch of project from concept to delivery by managing 
the project and governing the overall budget. Articulate and explain 
designs and constraints to stakeholders after understanding customer 
perspective. Ensure compliance to internal tools. 

· Sensitize the team to go beyond the immediate deliverables to 
assess how to provide greater value to the customer on an ongoing basis. 

· Determine methodology and processes for quality planning (in 
concurrence with project planning), define standards to use, document 
quality criteria and quality measurement processes, face audits and project 
process monitoring. 

· Review project profitability and other agreed parameters and 
provide relevant status reports to the management and customer. Ensure 
steering committee meetings and other regular meetings with customer. 

· Develop supporting documentation and materials including 
demonstrations, presentations and other tools to ensure solutions are easy 
to manage and repeatable. Create and maintain project level dashboards to 
enable effective project management. 

· Promote team work, motivate, coach and develop people in the team 
to build functional skills and desired behaviours to deliver results. 
Ensure high levels of engagement within the team. Manage complex scenarios 
effectively like business risks, multiple vendor issues, code red 
situations etc. and customer expectations without impacting associates 
adversely. 

· Provide technical and other guidance as required to the team and 
assess the performance of the associates.

· The candidate will manage the technical delivery of development 
projects. Working as a liaison between the Project Manager and the 
development team, the Delivery Lead will manage the day to day development 
activities and coordinate schedule with the relevant Project Manager. The 
Delivery Lead will be responsible for creating the development schedule and 
coordinating with the testing and business analyst teams. Essential Job 

 

 

 

*Functions:*

· Manage day to day development activities and create accurate work
schedules.

· Apply Client's development methodologies and processes.

· Coordinate with Project Managers.

· Coordinate with Delivery Manager to ensure resourcing and 
scheduling across multiple projects.

 

*Other Responsibilities:*

· Weekly: Check with BAs:

oWhat specs are being worked on?

oAre specs on track for delivery?

oAre there any blockers?

 

· Weekly: Check with Dev:

o   What JIRA tickets have been completed?

o   Are any DPL tickets needed for the near future?

o   Are there any blockers?

 

 

· Weekly: Check with PM:

o   Any L1/3 con



Thanks & Regards,

*Priyadarshani S.*
Technical Recruiter

Virtual Recruiters Pvt Ltd.

201.266.0710

​*priyadarsh...@virtualrecruiters.co *

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


[android-developers] Looking for :::Big Data Architect in Chicago, IL 60601

2016-12-06 Thread SALMA BHAT
Hi Partners,


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

*  Job Title:  Big Data Architect*

*  Work Location: Chicago, IL 60601*

*Contract duration (in months)   6 months*

*Target Start Date  ASAP*





*Job Details:  *



Must Have Skills (Top 2 technical skills only) 1. Big Data 2. Hadoop



Nice to have skills (Top 2 only)

1. All big data related skills

2.



Desired years of experience:  Minimum of 10 yrs relevant exp. If minimum
not met, don’t qualify the resume.



Education/ Certifications (Required) : BTech / MS / MCA



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

1. Provide best architecture solution on the project 2. work with designers
and team members on the technical implementation aspects 3. work with
business people to understand business problems



Any additional information you would like to share about the project specs/
nature of work Must have good Big Data background and have played an
Architect role previously. Relevant Big Data Architect exp is a must.
Requirement is for a Sr. Big Data Architect who can play a lead in the
Architecture for the client.

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


[android-developers] BMC Remedy consultants needed in San Jose, USA

2016-12-06 Thread Thiru Moorthy
Hi Friends,

Hope you doing fine.

Kindly share the resumes of your consultants for the below Simple JD.



Please submit the resumes after checking the JD.

Kindly don’t expect my call for unsuitable resumes.

*BMC Remedy*

*San Jose, USA*

*Rate : 55 *

Required Technical Skill Set and Competencies

1. BMC Remedy Action Request System 8.x,9.x- Installing, Configuring,
Upgrading, Customizing

2. BMC Remedy ITSM 8.x,9.x- Installing, Configuring, Upgrading, Customizing
ITSM modules like IM,PM,CM, SRM etc.

3. BMC Remedy CMDB 8.x,9.x: Out of the Box BMC Atrium CDM model including
Class Relationships Discovery integrations with Remedy & Atrium CMDB,
Atrium Integrator

4. Out-of-the box and third-party integration with BMC Remedy tools, web
services and APIs

5. Strong Development Expertise on BMC Remedy ARS 8.x, 9.x, ITSM 8.x, 9.x,
CMDB 8.x,9.x

6. Service Request Development based on AIF/OOTB

7. Experience in MY IT and SMART IT

8. Strong technical, analytical, and problem-solving skills

9. Coordinate with BMC for related tickets

10. Strong ITIL Framework concepts

11. Experience in proposing and implementing solution architecture for
upgrades, custom integrations

12. Ability to design/architect the solutions by following SDLC project
lifecycle

13. Should have strong client interfacing skills

14. Good communication skills

Added advantage:

1. Prior consulting or professional services experience of Upgrading ITSM
environment to 9.x

2. Prior experience in implementing or working with BMC solutions version
9.x

3. Experience in standard industry and BMC architecture methodologies to
drive solution adoption and customer success.

4. Manage time effectively and actively contributes best practice
recommendations and provides inputs as needed to ensure successful customer
outcomes.

5. Willingness to learn the business and a desire for both personal and
professional growth.



Thanks

*--*

*Tiru Moorthy | Talent Acquisition*



*Systems Software Solutions Inc D/b/a 3S USA INC*

*One Tiffany Pointe, #106, Bloomingdale, IL-60108*

*Work: 630-506-6115| Fax: (630)-246-662**4*

t...@3susa.com | http://www.3susa.com/ |

*Certified MBE/DBE|FBE|8a (SBA) | Honored to serve US Military*

*Disclaimer: *We at 3S USA INC., respect your On-line Privacy. Under
Bills.1618, Title III passed by the 105th U.S. Congress this mail cannot be
considered spam as long as we include contact information and a remove link
for removal from our mailing list, so we do not believe this email is
unsolicited. If you wish to be removed from this mailing list, please reply
with "REMOVE" in the subject line. Any inconvenience caused is regretted.

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


[android-developers] Looking for ::: Adobe AEM in Hershey, PA 1703

2016-12-06 Thread SALMA BHAT
Hi Partners,

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

*Job Title: IT - Technical Test Lead | Digital Marketing | Adobe AEM*

*Work Location: Hershey, PA 17033*

*Contract duration (in months)   6*

*Target Start Date  12-Dec-16*



*Job Details:  *



*Must Have Skills* (Top 2 technical skills only) 1.Adobe DTM 2.AEM 6.0/Java



Nice to have skills (Top 2 only)

1*.Google/Adobe Analytics*

*2. HTML5/CSS3*



Desired years of experience : 4-5 years



Education/ Certifications (Required) :BE



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

1. Good quality development in Adobe DTM , SEM and Java 2. Requirement
elicitation and customer connect 3. Coordination with offshore team



Will the candidate be client facing and/or working with business users? :
Client facing and working with business users



What is the team size, make up, culture, soft skills, and dress code,
Hours? : regular work hours. Application enhancements and development



Interview Process (Is face to face required?)  : Telephonic and WebEx

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


[android-developers] Urgent Requirement for UX/UI Designer at Omaha, NE( Must Exp 10+ Years)

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

Hope you are doing  well !!!

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

*UX/UI Designer*

Omaha, NE

Visa: USC/GC/GC EAD



· 10+ years’ experience in the design and development of User
Experience/User Interface functionality including:

· User Story/User Journey development

· Wireframe Design/Prototyping

· Page Templating

· Usability Design

· User Interface Design

· Graphic Design and Asset Creation

· *Experience participating in an Agile/iterative development environment*

· Strong verbal and written communication skills

· *Expertise with wire-framing tool AXURE.*

· Experience with appropriate design tools including Visio, Photoshop,
Illustrator, InDesign, Fireworks, etc., as well as the entire Microsoft
Office suite.

· Preferable degree in related discipline: Human Factors, HCI, ID and
Computer Science with specialty in User Interface Design, Graphical Design
or equivalent





-- 

*Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

 E: raj...@tekinspirations.com 

W: www.tekinspirations.com

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


[android-developers] Urgent Hire_Drupal Backend Developer

2016-12-06 Thread S. Singh
   
Sr. Drupal/PHP Developer 
Crystal City, VA 

Required Skills:

Experience developing LAMP-stack websites and web applications including 
strong design sense and strong skills in information, architecture and 
usability.

Strong experience in Drupal development, including custom modules.

Strong software development experience in PHP

Experience with full software lifecycle and deploying applications to 
Production

Experience with MySQL

Desired Skills:

 

Git/GitFlow for Development process and Release Management Experience with 
CM best practices for Drupal Demonstrated Agile (Scrum) experience

Qualifications Education/Experience

 

6-8 years of experience as a web developer

Strong experience (3+years) in Drupal development

Good experience (2+years) developing in PHP
NOTE: Ability to obtain Public Trust MBI required.

Thank You
*Sujata Dangol*

ADG Tech Consulting (MBE,SDB, 8(a) Certified, CMMI Level 3)

4511 Singer Court,#210

Chantilly, VA 20151

*703-439-1471 * <(703)%20439-1471>

sdan...@adgtech.net

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


[android-developers] Position :- Firmware Development Engineer (Urgent Requirement from Direct Client ) SUPER HOT

2016-12-06 Thread up2datecorp
*Position :- Firmware Development Engineer (Urgent Requirement from Direct 
Client ) *SUPER HOT


*Client :- Intel *

*Location :- AZ, Location *

*Requirements :- *

Position description
As a Firmware Development Engineer you will join our Platform Engineering 
Division (PED), which works on developing a FW/SW framework for wired and 
wireless ultra-low power MCU based intelligent system.

What you’ll do
In this position you will work on low-level programming, system 
architecture, real-time operating systems, device architecture and hardware 
design, as well as deep embedded firmware development, review and 
maintenance (embedded C). You will also be required to develop unit and 
system level test and verification programs using a C# based test executor. 
You will gain expertise in developing low power wireless and wired 
intelligent systems such as wireless sensors, wireless beacons, occupancy 
sensors, and etc. 

You will be responsible for: 

· Firmware Development for Intel MCU based intelligent system 
framework

· Creation and development of test programs target toward low power 
wired and wireless devices (i.e. protocols such as: BLE, Zigbee, 802.15.4, 
LoRA, & WiFi

· Source code maintenance and debugging

· Technical Documentation

 

Qualifications

 

Must have:

· Bachelor’s degree in computer engineering, computer science, 
software engineering, or electrical engineering, with 5+ years of work 
experience

· Or MSc. in computer engineering, computer science, software 
engineering, or electrical engineering with 2+ years of work experience

· Understanding of low-level programming, system architecture, 
real-time operating systems, device architecture and hardware design

· Firm understanding of low power wireless protocol standards (ex. 
802.11, 802.15.4, BLE, & etc.)

· Firm understanding of low power sensors (ex. accelerometer, 
gyros, temperature, IR based sensors, & etc.)

· Proven track of firmware development for embedded systems (mainly 
in C language)

· Knowledge of multithreaded programming in C

· Good team work and cooperation

· Good command of English

Nice to have

· Deep understanding of real time systems characteristics

· Basic knowledge of signal processing

· Knowledge of C#

· Knowledge of Linux driver development and Linux build process

· Experience with hardware and/or firmware validation 

· Experience in low level RTOS and Linux Kernel programming


*TOTAL EXPERIENCE :*


*RELEVANT EXPERIENCE  :*


*OFFICIAL NOTICE PERIOD :*


*CURRENT  RATE  PER HOUR :*


*VISA STATUS :*


*EMAIL ID :-* *up2datec...@gmail.com *

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


[android-developers] Java Production Support Engineer | Sunnyvale CA | 6 + Months

2016-12-06 Thread Sam
Hi,

* Send me Resumes on h...@smdconsultants.com *

Please let me know if you have any one available for the following opening.
If yes, please send me your resume with the desired rate information.



*Support Engineer*

Location: Sunnyvale, CA

Duration: 6+ Months



Description:

•   Extensive experience in providing L1 & L2 support for
enterprise systems

•   Well verse with the use of XML, JSON and REST services

•   Working knowledge of UNIX, MAC OS X, iOS, is a plus

•   Solid understanding of data modelling and database systems
including Oracle, mySQL, NOSQL, etc.

•   Solid knowledge of applications performance improvement
techniques and caching solutions

•   Working knowledge of source control software (SVN or Git).

•   Experience with build and deployment tools, e.g., Maven, Gradle.

•   Ability to multi-task and manage tasks with varying priorities.

•   Ability to work independently with minimal supervision

•   Excellent written and oral communication skills



Responsibilities

•   Provide L1 & L2 support for multiple home grown services and
frameworks (Platform Services)

•   Work with application teams to provide guidance and assist them
with on boarding process

•   Develop custom utilities needed by application teams in order
to on board to platform services

•   Build and enhance standard operating procedures for all
platform services and frameworks

•   Standardize deployment & on boarding playbooks for all
supported services

•   Support deployment of applications and services - assist DevOps
engineers

•   Take over SRE responsibilities for all hosted platform services







Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


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


[android-developers] NEED: Informatica MDM Lead @ Dayton, OH 45430 --- Contract

2016-12-06 Thread Martin Zeller
Hi,

This Is Martin Zeller from Agile Enterprise Solutions,

This is Reference for Following Position



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



*Job Title: Informatica MDM Lead*

*Location:*Dayton, OH 45430

*Duration:* 6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:Informatica MDM*



*Job Description:*



*Must Have Skills:*

1.Informatica MDM

2.PL/SQL



*Nice to have skills:*

1.IDQ

2.Java



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

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

Gmail: martinzeller0...@gmail.com



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

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

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


[android-developers] CORE JAVA DEVELOPER with Financial Domain@Minneapolis, MN

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

*ONLY FOR LOCAL*





Hi,

Hope you doing Well !!!



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



*Role:** CORE JAVA DEVELOPER with Financial Domain*

*Location: **Minneapolis, MN *

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
*Must Have Skills*
1) Java / J2EE skills - Core Java / Swing / JDBC & ODBC / XML / JAXB
2) JSP / Spring / JavaScript / JSF / Hibernate
*3) Financial domain*
Nice to have skills (Top 2 only)
1) SQL / DB2 / Oracle / PL-SQL
2) Shell / Batch scripting using Linux/Windows/Unix
• Desired years of experience : At least 6 years of experience in Java /
J2EE skills
3) Technical Skills.- design , coding, testing and install.



*Desired years of experience :** 8+*







*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/CAG0Zfz1kq1yM%3DCHM5BNEOoKT%3DkUKxu5%3Dn9iA-dwr2LPSne1%2BpA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mainframe Technologies with .Teradata@ Richardson, TX 75080

2016-12-06 Thread amit yadav
Hi,

Hope you are doing great!



*Job Title: IT - | Mainframe Technologies | COBOL*

*Work Location: Richardson, TX 75080*

*Work Location & Address: Richardson, Texas, US*

*Contract duration (in months)   12*

*Target Start Date   Immediate*





Job Details:



Must Have Skills (Top 2 technical skills only)

1.Cobol

2.VSAM



Nice to have skills (Top 2 only)

1.Teradata



Desired years of experience : 7+



Education/ Certifications (Required) : BE



*Best Regards,*

*Amit Yadav* | SYSMIND, LLC

Team Lead

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



Phone: 609-897-9670 x 4009

Email: am...@sysmind.com

Gtalk: amitkumaryadav489

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] UI Lead

2016-12-06 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

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



*Role:-  UI Lead*

*Location: Bentonville, AR*

*Duration: Long term *

*Interview:- Phone/Skype*



*Technical Skills**:-*


*Must Have Skills (Top 2 technical skills only) *1. At least 4 years of
experience with developing HTML5, CSS3, JavaScript and Bootstrap.
2. Accessibility, Cross Browser compatibility, Photoshop, JSON Skills


* Nice to have skills (Top 2 only) *1. Working in Agile Mode
2. UX design experience

Education/ Certifications (Required) :
Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. At least 2 years of experience in Design and architecture review
2.Work in Onshore offshore model and be ready to communicate and coordinate
with offshore team
3.Work with client UX team and provide the required updates on the task



*Thanks &
Regards,
*

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@nityo.com

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


[android-developers] Informatica MDM @ Miamisburg ,Ohio

2016-12-06 Thread amit yadav
Hi,

Hope you are doing great!



*Role : Informatica MDM*

*Work Location & Address 9443 Springboro Pike, 45342 *

*Miamisburg ,Ohio*

*Contract duration (in months)   6 Months*

*Target Start Date   12th December 2016*



Must Have Skills (Top 2 technical skills only)

1.Informatica MDM

2.PL/SQL

Nice to have skills (Top 2 only)

1.IDQ

2.Java

Desired years of experience : 5+ Year

Education/ Certifications (Required) :BE or equivalent

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





*Best Regards,*

*Amit Yadav* | SYSMIND, LLC

Team Lead

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



Phone: 609-897-9670 x 4009

Email: am...@sysmind.com

Gtalk: amitkumaryadav489

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Business Analyst

2016-12-06 Thread john n
Job Title Business Analyst
Work Location: Phonix,AZ
Contract duration (in months) 6

Job Details: 

Must Have Skills (Top 2 technical skills only)
1. Good domain knowledge of Healthcare.
2. Good knowledge of Medicaid, Claims & Membership domain in healthcare

Nice to have skills (Top 2 only)
1. Agile experience
2. Good project management & communication skills

Desired years of experience : 8 years

Education/ Certifications (Required) : BE. AHIP Certified

Top 3 responsibilities you would expect the subcon to shoulder and execute:
1. Driving JAD sessions for Requirements gathering & documentation 
2. Coordination with internal & External stakeholders
3. Process mapping, project management, creating business cases, evaluating 
and presenting solutions.

Interview Process (Is face to face required?) Yes

Warm regards,

John
Namitus Technologies Inc
832-592-7965
j...@namitus.com
john.nami...@gmail.com

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


[android-developers] NEED: Adobe AEM Digital Marketing @ Hershey, PA 17033 --- Contract

2016-12-06 Thread Martin Zeller
Hi,

This Is Martin Zeller from Agile Enterprise Solutions,

This is Reference for Following Position



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



*Job Title: Adobe AEM Digital Marketing*

*Location:*Hershey, PA 17033

*Duration:* 6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills:Adobe AEM, Digital Marketing*



*Job Description:*



*Must Have Skills: *

Adobe DTM

AEM 6.0/Java



*Nice to have skills:*

Google/Adobe Analytics

HTML5/CSS3



Thanks & Regards

*Martin Zeller*

*Agile Enterprise Solutions, Inc*

Ph: 972-427-1837

martin_zel...@aesinc.us.com

Gmail: martinzeller0...@gmail.com

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


[android-developers] Senior Java Developer || GC/USC || NJ || $45 C2C

2016-12-06 Thread Vishal Ji Awasthi
Senior Java Developer
Basking Ridge, NJ

$45 C2C

 GC/USC


> Senior Java Developer
>
> What Project/Projects will the candidate be working on while on
assignment? - Optum ID
>
> Is this person a sole contributor or part of a team? - Yes
>
> If so, please describe the team? (Name of team, size of team, etc.) -
Optum ID team(count:12)
>
> What are the top 5-10 responsibilities for this position? (Please be
detailed as to what the candidate is expected to do or complete on a daily
basis)
> • Develop UI with Web frameworks such as AngularJS, jQuery etc
> • Develop JSON, JQuery, REST and XML based web services, AJAX
> • Develop SOAP/REST Web Services
> • Work with Applications Servers and Databases (Primarily Tomcat and
Oracle)
> • Work with GIT and Jenkins build tools in order to



*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] Urgent Need :: PL/SQL-Hadoop Developer @ San Jose, CA

2016-12-06 Thread satish kumar
Hi ,



Hope you are doing great!



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



*Note: Need Passport copy/Number*



*Role: PL/SQL-Hadoop Developer*

*Location: San Jose, CA*

*Duration: Long term*





Total Experience Required  6+ Years

Mandatory Technical Skills

· Strong hands on experience in PL/SQL

· Hands on experience in Hadoop

· Sound knowledge on Database



Soft Skills Good Communication and analytical skill.







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

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

Phone: 609-897-9670 x 2152

Email: sati...@sysmind.com

Gmail: satishsysmi...@gmail.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Mobile apps test lead

2016-12-06 Thread john n
Job Title: Mobile apps test lead
Work Location & Address Sunnyvale,CA
Contract duration (in months) 6
Experience: 5 to 8 years

Must Have Skills (Top 2 technical skills only)
1. Mobile apps testing iOS platform
2. Mobile automation skill and Test strategy and planning
Nice to have skills (Top 2 only)
1. Functional testing knowledge
2. Automation tools 
Desired years of experience : 5 to 8 years

Top responsibility you would expect the subcon to shoulder and execute:
1. Engineering Graduate or Equivalent

Warm regards,

John
Namitus Technologies Inc
832-592-7965
j...@namitus.com
john.nami...@gmail.com

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


[android-developers] Urgent Need----Mainframe Cobol/Unix Developer------EAD or GC or Citizens Only

2016-12-06 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



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



*Mainframe Cobol/Unix Developer*

*downtown Chicago, IL*

*6+ Months *

*EAD or GC or Citizens Only*



*Top  Skills:*

· *Passport and Asset Suite experience *

· Mainframe

· UNIX

· Oracle/SQL

· Accounts Payable/General Ledger

· Strong Testing Background

· COBOL



*Nice to have skills:*



   - DB2
   - Unix Scripting





Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

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


[android-developers] emulator proxy settings, set non-proxy hosts?

2016-12-06 Thread Steven Gibbs
I am using the Android emulator with a proxy, and I'd like to be able to 
set a list of hosts that should NOT go through the proxy.  Does anyone know 
if this is possible?  I'd like to do this within the AVD/emulator, and not 
rely on the proxy server itself.

emulator -avd Nexus_5_M -no-boot-anim -http-proxy http://localhost:

Any ideas?

Thanks,
Steven

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


[android-developers] Urgent requirement || SAP Product Costing – COPA @ Pittsburgh, PA

2016-12-06 Thread Vasanth Kumar
Hi,

Greetings from American IT Resource Group Inc.!

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

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

*Role: SAP Product Costing – COPA*

Location: Pittsburgh, PA

Duration: 6+ months contract

*Job Description: *

§  Experience in SAP Product Costing, Cost Object Controlling, Material
Ledger, and Profitability Analysis (CO-PA).

§  Must have experience in SAP Integrations.

§  Interface with team members and business users, develop a thorough
understanding of the existing SAP solution and new business requirements
and then apply industry best practices and detailed knowledge of the
software to design and configure the SAP solution as well as document
design for needed RICEFW objects.

§  Build a trusting relationship with major project stakeholders and lead
them to adoption of the best solution.

Looking forward to hear from you!



Thanks & Regards,



Vasanth || Associate Manager - TAG

American IT Resource Group, Inc.

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

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

Skype: vasanth.aitrg  || Gtalk: vasanth.aitrg


Web: www.aitrg.com

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

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

*To Unsubscribe, Click **Remove me*


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


[android-developers] Urgnet Need: SCO Unix Admin

2016-12-06 Thread aman tanwar
Share Resume on






*ama...@nityo.com Position: SCO Unix Admin Location:
Woonsocket, RI / Scottsdale, AZ / Richardson, TX / Florham Park NJ/ Dublin,
OH Duration: 12+ months Summary: *Experience with installation and Upgrade
of OS
Experience with Setting up and Managing  Printers in SCO Unix
Knowledge of Network Configuration
Knowledge of Different Protocols and Methods to copy data between systems
Experience with System performance monitoring and Tuning.
Knowledge about Hardware troubleshooting
File system management
User account creation , password management
Production support & troubleshooting
L2 level tasks – s/w install and configuration


*Thanks & Regards Aman Tanwar*

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


[android-developers] Urgent Need----Sr. ETL Developer(v11.5)-----EAD or GC or Citizens Only

2016-12-06 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



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



*Sr. ETL Developer – ETL, DataStage, Integration*

*(Sacramento) CA*

*6+ Months*

*EAD or GC or Citizens Only*



1.) Must have 7 years’ experience as a ETL Developer.
2.) Must have Infosphere Datastage (*preferred version is v11.5*)
development experience.
3.) Has to have experience integrating data from multiple sources*. *



Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

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


[android-developers] Hotlist

2016-12-06 Thread Kavitha csr
Hi Partner,

Greetings from *CSR Infotech Inc,*

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


*CONSULTANT NAME*

*LOCATION*

*RELOCATION*

*AVAILABILITY*

*Linux Admin*

*PA*

*OPEN*

*IMMEDIATELY*

*Windows Admin*

*NY*

*OPEN*

*IMMEDIATELY*

*VMWare/Citrix Admin*

*CA*

*OPEN*

*IMMEDIATELY*

*Network Engineer*

*TX*

*OPEN*

*IMMEDIATELY*

*Workday Consultant*

*NY*

*Open*

*IMMEDIATELY*

*.Net Developer*

*WI*

*Open*

*IMMEDIATELY*

*QA Analyst*

*NJ*

*NJ,NY*

*IMMEDIATELY*

*Hadoop Developer*

*OH*

*Open*

*IMMEDIATELY*

*ETL Tester*

*TX*

*Open*

*IMMEDIATELY*

*HL7/Cloverleaf Consultant*

*VA*

*Open*

*IMMEDIATELY*

*Java Developer*

*TX*

*Open*

*IMMEDIATELY*

*Salesforce Dev/Admin*

*IL*

*Open*

*IMMEDIATELY*

*Tableau Dev/Admin*

*VA*

*Open*

*IMMEDIATELY*

*Ba *

*NC*

*Open*

*IMMEDIATELY*

*Sqldba*

*DE*

*DE,VI,WA*

*IMMEDIATELY*

*QA Testmanager*

*MI*

*Open*

*IMMEDIATELY*

*Bsa*

*CA*

*Open*

*IMMEDIATELY*

Looking forward to work with you soon!

-- 

*Thanks & Regards*

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

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


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

2016-12-06 Thread Ateeq Rehman
Hello Associate,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



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


*Job Description:*




*Role : Oracle Developer With Golden Gate Skill*

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

*Hiring: Contract*



*Primary Skill: *Oracle Developer

*Secondary Skill: *DBA+ Golden Gate





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

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

· Ability to understand logical data model and implement physical
model

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

· Sound understanding of replication technology (Oracle Golden
Gate)

· Basic Unix and shell scripting knowledge

· Preferably from E-Commerce or Mission critical engineering
background







*Thanks & Regards*

*Ateeq Rehman*

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

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

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

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


[android-developers] Req - Salesforce Developer - Tempe, AZ

2016-12-06 Thread rahul . virtualrecruiter
Hello, 

Greetings!


Hope you are doing great!!!


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

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


Job Title : Salesforce Developer

Location : Tempe, AZ
Duration : 6 Months+


The integrations developer will be tasked with helping us move data from a 
variety of systems, including Oracle databases, SQL Server databases, SOAP 
and REST apis, AWS hosted datasets, Azure hosted SQL Server, and new 
sources as yet undetermined. Each of these sources will need to be 
transformed into Salesforce formatted objects and loaded to Salesforce, 
using a blend of tools including Jitterbit, Mulesoft, and DBAmp (SQL 
Server).

In addition, the candidate will be asked to build and maintain APIs for 
Salesforce integrations using Mulesoft, along with supporting batch 
integrations.

Ideally, the candidate will be comfortable interacting with the BA's and 
users for each of the integrations to flesh out the details and not expect 
to work from overly detailed specs. The candidate would be comfortable with 
an Agile development approach, identifying small components to complete and 
build on to provide early opportunities to users and BAs to review the 
product, and to iterate quickly on refinements.

 
Thanks & Regards
Rahul
Sr.Recruiter

ra...@virtualrecruiters.co
http://www.virtualrecruiters.co/

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


[android-developers] BMC Remedy consultants needed in San Jose, USA

2016-12-06 Thread Thiru Moorthy
Hi Friends,

Hope you doing fine.

Kindly share the resumes of your consultants for the below Simple JD.



Please submit the resumes after checking the JD.

Kindly don’t expect my call for unsuitable resumes.

*BMC Remedy*

*San Jose, USA*

*Rate : 55 *

Required Technical Skill Set and Competencies

1. BMC Remedy Action Request System 8.x,9.x- Installing, Configuring,
Upgrading, Customizing

2. BMC Remedy ITSM 8.x,9.x- Installing, Configuring, Upgrading, Customizing
ITSM modules like IM,PM,CM, SRM etc.

3. BMC Remedy CMDB 8.x,9.x: Out of the Box BMC Atrium CDM model including
Class Relationships Discovery integrations with Remedy & Atrium CMDB,
Atrium Integrator

4. Out-of-the box and third-party integration with BMC Remedy tools, web
services and APIs

5. Strong Development Expertise on BMC Remedy ARS 8.x, 9.x, ITSM 8.x, 9.x,
CMDB 8.x,9.x

6. Service Request Development based on AIF/OOTB

7. Experience in MY IT and SMART IT

8. Strong technical, analytical, and problem-solving skills

9. Coordinate with BMC for related tickets

10. Strong ITIL Framework concepts

11. Experience in proposing and implementing solution architecture for
upgrades, custom integrations

12. Ability to design/architect the solutions by following SDLC project
lifecycle

13. Should have strong client interfacing skills

14. Good communication skills

Added advantage:

1. Prior consulting or professional services experience of Upgrading ITSM
environment to 9.x

2. Prior experience in implementing or working with BMC solutions version
9.x

3. Experience in standard industry and BMC architecture methodologies to
drive solution adoption and customer success.

4. Manage time effectively and actively contributes best practice
recommendations and provides inputs as needed to ensure successful customer
outcomes.

5. Willingness to learn the business and a desire for both personal and
professional growth.



Thanks

*--*

*Tiru Moorthy | Talent Acquisition*



*Systems Software Solutions Inc D/b/a 3S USA INC*

*One Tiffany Pointe, #106, Bloomingdale, IL-60108*

*Work: 630-506-6115| Fax: (630)-246-662**4*

t...@3susa.com | http://www.3susa.com/ |

*Certified MBE/DBE|FBE|8a (SBA) | Honored to serve US Military*

*Disclaimer: *We at 3S USA INC., respect your On-line Privacy. Under
Bills.1618, Title III passed by the 105th U.S. Congress this mail cannot be
considered spam as long as we include contact information and a remove link
for removal from our mailing list, so we do not believe this email is
unsolicited. If you wish to be removed from this mailing list, please reply
with "REMOVE" in the subject line. Any inconvenience caused is regretted.

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


[android-developers] Urgent Need: SAP Basis Consultant _Santa Clara, CA_6+ Months

2016-12-06 Thread Shawn Marsh
Hi,

Hope your are Doing Good…!

I have an urgent opening on *SAP Basis Consultant  *Position with my
client. Please send me the resumes with full name, contact details, Salary,
and availability date.



*Requirementdetails:*

*Title:* *SAP Basis Consultant*

*Location: **Santa Clara, CA*

*Duration   : 6+ Months*

*Rate: As low As Possible*



Technical skills and Knowledge:



*Immediate Opening*



*Primary Skills**:*  * SAP Basis Consultant*



*Responsibilities:*



Qualified candidate will be responsible for all day to day Basis
administration and security governance support on a very larger SAP
Landscape of ECC, BW, PI, PLM, Portals, CRM, SRM, GRC, BO/BODS etc.

• Hands on experience managing day-to-day Basis technical production
support of complex multi-tier global landscape

• Hands-on experience on Basis administration, monitoring, performance
management and support.

• Monitor SAP systems - check work process, system logs, system dumps,
locks, disk spaces, etc, starting and stopping SAP applications, run audit
reports

• Maintain and administer the SAP Security environment for all implemented
SAP solutions (currently ERP, GTS, PI, Portal, Solution Manager).

• Create and modify SAP roles and work with various teams enforce
governance over the entire access management.

• Assists with production incidents and resolutions, including root cause
analysis and recommendations.

• Operations and performance management - Transport management, run traces

• Identify long running job and analyze the performance issues

• Handle Single sign-on issues between different SAP systems

• Perform printer and spool administration.

• Ensure stability, security, recoverability of the SAP and related systems.







Thanks & Regards



*Shawn Marsh*

Insoursys Inc

Ph: 972-427-1801

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

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

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


[android-developers] SAS DI Studio

2016-12-06 Thread sammy
Request Type:   Production

Labor Category:IT

Work Location:  Madison, WI 53783

Submitted: 10/27/2016 1:10:07 AM

Request Information

Request:  IT - Technology Lead | Data Management - Data
Integration | SAS DI Studio

Candidate Submission Limit Per Supplier:  1

Job Description:Job Title: Technology Lead

Contract Duration: 6 Months

Job Details:

*Must Haves – Skills: *

*Base SAS 9.4*

*Obama Care ACT experience*



Nice to Have/Skills:

Good Communications Skills

Someone who has worked on shore & offshore would be a better fit for this
role

How many years of experience?

*With Regards..**?*

Sharmishtha Rawat


Systems America, Inc.

3130 Crow Canyon Place Suite 425 San Ramon, CA 94583

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


[image: Logo]


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



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

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


[android-developers] Need : Senior Java Developer : Wilmington, DE ( Local Profiles Only )

2016-12-06 Thread Rahul Kushwaha
Hi ,



Please find the Requirement below and share matching profiles only to
rahul.kushw...@nityo.com



*Role : Senior Java Developer*

*Location : Wilmington, DE*

*Duration : 18+Months*

*Experience : 8-14+Years*

*Domain : Banking/Finance*



*Visa Copy and Photo ID Is Must at the time of Submission*

*Local candidates who can appear for In Person interview are only Workable*



*Job Description :*

Should have 5-10 years of IT experience

Should be very strong in core java, Java Collections, performance
improvements on code.

Should be aware of end to end testing and deployment. The candidate should
have knowledge of Test Driven Development.

Spring - Core, MVC is must.

The candidate should have experience on Devops with knowledge on tools like
Team City, Jenkins, Nolio , Nexus etc

Should have Technical blend of mind and working on latest emerging trends.

Good to have front End development experience (Worked in UI frameworks like
Angular and Node.js).


--





Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Regards*



*Rahul Kushwaha*
Desk : 6098530818 Extn2114

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

--

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

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

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

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


[android-developers] Looking for::: SAP ISU solutions in Cherry Hill, NJ 08003

2016-12-06 Thread SALMA BHAT
Hi Partners,

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

*Position: SAP ISU solutions*

*Location: Cherry Hill, NJ 08003*

*Contract duration (in months) 6 Months*



Must have a good balance between functional knowledge and practical
implementation experience of *SAP ISU solutions*. Should develop and
implement independently SAP ISU solutions. Should have a good overview and
understanding of the following SAP ISU modules oEnergy Data
ManagementoDevice ManagementoBilling InvoicingoContract Accounts FICA.
Knowledge on BRF, BRF is an added advantage.



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

1. Should develop and implement independently SAP ISU solutions

2. Should have a good overview and understanding of the SAP ISU modules

3. Should have Knowledge on BRFand BRF+



*Nice to have skills (Top 2 only)*

*1. Device Management*

*2. Billing Invoicing and Contract Accounts FICA.*

*Desired years of experience : Above 5 years*

*Education/ Certifications (Required) :B.Tech*

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

1. Should develop and implement independently SAP ISU solutions

2. Should have a good balance between functional knowledge and practical
implementation experience of SAP ISU solutions

3. Should able to manage Billing, Invoicing, Contract Accounts and FICA
independently

Will the candidate be client facing and/or working with business users?
Client Facing

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

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

Any companies/vendors who have been able to service similar requirements in
the past well within the rates and quality expectations:

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


[android-developers] AEM Developer/ AEM Lead

2016-12-06 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

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



*Position: AEM Developer/ AEM Lead*

*Location: Dallas, TX*

*Duration: Long Term*

*Interview:- Phone/Skype*



*Job Description:*

8 to 10 years of overall experience. 4 to 5 years of AEM hands on
experience.
Should have some previous experience of Teamsite or Livesite.
Should be able to architect, design and code.
Good knowledge of AEM architecture.
Should be a good team player and should mentor the team.

*Must Haves – Skills:*-
AEM 6.0 and above
Prior experience using Teamsite or Livesite (content management tools)

*Nice to Have/Skills:*-
Java / J2EE

*Thanks &
Regards,
*

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@nityo.com

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


[android-developers] Need Urgent--.net with C#, WPF (Local to MA and 9+Profile )

2016-12-06 Thread Bharat Chhibber
Hello,

Hope you are doing well.

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


Please send genuine profiles only.

*.net with C#, WPF  *

*Boston , MA*

*Long Term Contract *



JD-

WPF, Winforms  Developer with Resful Webservices exp : 2 Roles
· Proficient in XAML (WPF) using MVVM , Winforms
· Hands on experience with WPF Patterns, Window manager, xamldatagrid and
xamlspreadsheet
.Candidates should have exp on Windows management and docking
· Hands-on experience with restful Web Services/SOA
· Strong Object Oriented design skills
· Proficient with Test Driven Development
· Familiar with Agile-Scrum methodology and practices

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


[android-developers] ETL DBA / Netezza DBA

2016-12-06 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

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



*Role:-  ETL DBA / Netezza DBA*

*Location: Phoenix, AZ*

*Duration: Long term *

*Interview:- Phone/Skype*



*Technical Skills**:-*

*Must Have Skills*
1. Netezza DBA

*Nice to have skills*
1. Strong communication skills. This is a must-have skill.



*Top 3 responsibilities you would expect the subcon to shoulder and
execute*:*
1. Netezza DBA responsible for Database Performance & maintenance
activities like Weekly backups, daily Incremental backups, tuning complex
report queries, Groom process, Workload Management, Alerts etc.
2. Design and develop scheduler which is interfacing with Netezza appliance
and returning response to the ETL server.
3. Proficient in agile methodology.
4. Participate in scrum call and team meeting and share updates regularly
with required stakeholders.



*Thanks &
Regards,
*

*Manisha Budhwar
*

Technical Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail:- manish...@nityo.com

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


[android-developers] Re: How to start a launcher directly (without FallbackHome) in AndroidN

2016-12-06 Thread Anatoliy Shuba
Hi,

I have faced same issue.
My device doesn't need any lock or encryption but FallbackHome still starts.
Did you solve that issue for you?
Thanks

понедельник, 22 августа 2016 г., 7:22:12 UTC-4 пользователь kai zhao 
написал:
>
> I try to run AndroidN on my device. The device *doesn't need any lock or 
> encryption.*
>
> Issue:
> I find that ActivityManagerService starts Settings.FallbackHome before 
> real Launcher.
> This process takes more than 1000ms, so I wanna remove FallbackHome 
> process for quick-startup.
>
> Modify:
> original: ams.systemReady -> startHomeActivityLocked -> resolveIntent -> 
> FallbackHome -> User unlocked and real home found -> real Launcher
> goal: ams.systemReady -> startHomeActivityLocked -> resolveIntent -> real 
> Launcher
>
> Status:
> If I remove FallbackHome and modify PackageUserState, the resolveIntent 
> and startHome will be failed.
> Anyone knows about this activity in AndroidN?
>
> Thanks.
>

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


[android-developers] java with vxml coding and ivr exp

2016-12-06 Thread chandrakanth itiyam
*Job Title: Technology Lead*

* Work Location & Address: Buffalo Grove-IL Contract duration (in months)
12*
*Job Details:*
Must Have Skills (Top 2 technical skills only)
1. VXML coding
2. Java
*Nice to have skills (Top 2 only)*
1.Nuance IVR
2.CC
*Education/ Certifications (Required) :BE*



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


-- 
Thanks & Regards,

*Chandrakanth Grandhi*
*ITiyam LLC*

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

Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we  include contact information and a
remove link for removal from our mailing list. To be removed from our
mailing list, reply with remove in the subject heading and your email
address in the body. Include complete address and domain to be removed.
Pursuant to Federal law, if you do not wish to receive future email
messages from us, please reply with "remove" to the same id.

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


[android-developers] START IN NEXT WEEK: Cisco Voice Engineer

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

Cisco Voice Engineer
Smithfield VA or Kansas city, MO or Yale IL.
6+ Months

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

Required Skills:
1.) 3 years in-depth experience with Cisco Unified Communications – Cisco
Call Manager
2.) They must have performed a migration/ upgrade to a newer version of
Call Manager of version 8 or higher!
3.) Strong network knowledge VOIP, routers, switches.

Pluses:
1.) Experience with Cisco CUCM version 11.5
2. Cisco Unified Communications Call Center experience


Best Regards,

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

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


[android-developers] Business Intelligence with Birst and Data Mapping Exp.@Phoenix, AZ

2016-12-06 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:** Business Intelligence with Birst and Data Mapping Exp.*

*Location: **Phoenix, AZ*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
*Must Have Skills*
1. Birst Developer.
2. Data Modelling

Nice to have skills
1. Strong communication skills. This is a must-have skill.

Desired years of experience* : 8 years
Education/ Certifications (Required) : BE
Top 3 responsibilities you would expect the subcon to shoulder and execute*:
1. Developer who has hand on experience on Birst along with data modeling
skills.
2. Proficient in agile methodology.
3. Participate in scrum call and team meeting and share updates regularly
with required stakeholders.

*Desired years of experience : 8**+*







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


[android-developers] SAP HANA Solution Architect @ LA

2016-12-06 Thread Shyamsundar
Hi ,

Hope you are doing good.

Please find below job description and do share me matched resumes to
*sh...@saligrams.com
*




*SAP HANA Solution ArchitectDuration: 1 year Location: New Orleans, LA.*



   -Must have – SAP/HANA implementation experience and certified
   -Bonus – Unicode conversion experience, HANA Studio (Analytical
   Engine), SAP IS-U

Review and integrate all application requirements, including functional,
security, integration, performance, quality and operations requirements.
Review and integrate the technical architecture requirements. Provide input
into final decisions regarding hardware, network products, system software
and security


*Thanks,*

*Shyamsundar*

*Saligram Systems Inc*

*sh...@saligrams.com *

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


[android-developers] IMMD NEED: Sr. QA Tester – CA LISA Exp in OH

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

Title: Sr. QA Tester – CA LISA
Location: Cincinnati, OH
Duration: 12 months + (Contract with potential for extension)

*Need EAD, GC, TN or Citizen Only!!*
*Must have: CA LISA, SOA, Jira, Agile*

Job Description:
•5+ years of software quality assurance
•Strong experience with web services/ integration testing
•Experience with CA Lisa or CA Dev Test
•Experience with Agile software development methodology
•Strong understanding of test case creation and execution concepts and best
practices
•Experience with SOA test automation framework, process, strategy, and
approach
•Hands on developing scripts (Java/ JavaScript using Selenium or UFT would
be a plus)
•Responsible for validating web services
•Experience using Jira for defect tracking
•Proficient in SQL and database concepts


Best Regards,

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

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


[android-developers] Openings for Sr. Recruiters for Offshore team at Hyderabad

2016-12-06 Thread MOHAN


*Company: SIARP Technologies LLC*

*No. of positions: 2-4*

*Required Experience: 2-5 years*

*Mode of Interview: Phone and Then Skype Interview*

*Location: Kukatpally, Hyderabad*

*Date of Joining: ASAP*

*Salary: DOE + Excellent incentive structure*

 

*Interested candidates can email their resumes with the required details 
mentioned below to a...@siarptech.com *

 

*Full Name:*

*Email:*

*Phone:*

*Address:*

*Current CTC:*

*Expected CTC:*

 

*Required Skills/Experience:*

· Fair understanding of US Staffing industry and latest trends and 
technologies.

· Must have good knowledge on US Tax Terms: C2C, 1099, W2.

· Experience in placing candidates on different skill sets.

· Sourcing through database, networking and Internet job portals.

· Should be able to work on multiple candidates at any given date 
and be able to prioritize work.

· Good interpersonal skills and proven ability to negotiate and 
communicate effectively within the team and with senior management.

· Dynamic, responsive communicator with excellent written, verbal & 
presentation skills.

· Self- motivated team player and results-oriented Individual.

· Self-disciplined with a positive attitude.

· Aggressive, go-getter with excellent rapport building skills.

· Willing to work in night shifts

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


[android-developers] (NEED USC OR GC) Sr. Hadoop Developer @ Wilmington, Delaware

2016-12-06 Thread ANUDEEP
*Job Title:** Sr. Hadoop Developer*

*Duration : 6 Months*

*Location: Wilmington,** Delaware*



*NEED USC OR GC*



*Skills: *Servlet, Java, SQL, Apache, PowerPoint, Visio, Shell scripting,
Analytics, design, flow diagrams, HBase, Hive, Hadoop, Healthcare



*Qualifications:*

*Client is seeking a Sr. Hadoop Developer.  Candidate will lead design,
data architecture, data migration, and development of new processes flows
on the Cloudera stack. Candidate must have a strong background with the
Hadoop development and related architecture. *


*5+ years of overall development experience with at least 2 years of Hadoop
2+ years of experience using Apache Oozie *

*2+ years of experience with Impala Shell scripting*

*2+ years of experience working as Hadoop Administrator*

*3+ years of experience developing with Java*

*3+ years of experience developing with Shell Scripting and SQL*



*At least 2 years of hands-on working experience with one or more of the
following technologies: *

Hadoop, Hive, HBase, Sqoop, Zookeeper, MapReduce - Ability to develop data
flow diagrams in PowerPoint and/or MS Visio - Experience designing and
developing data cleansing routines utilizing typical data quality functions
involving standardization, transformation, rationalization, linking and
matching

Experience working with multi-terabyte data sets

Understanding and hands on technical expertise of building extracts and
services layers from Hadoop/Impala data ecosystem for third-party analytics
solution integration

Strong ability to formulate business problems mathematically and strong
problem solving skills

Superior oral and written communication skills, especially the ability to
communicate technical issues to a non-tech audience;

Critical thinking and intellectual curiosity - Superior learning abilities
- Enjoy working in a team-based environment



*Other Required Qualifications/Experience*

*Qualification*

*Impala*



*Minimum Years Required*

*2*





*Qualification*

*Oozie*



*Minimum Years Required*

*2*





*Qualification*

*  Hadoop
Admin*



*Minimum Years Required*

*2*



*Thanks*

*Anudeep | Anblicks | www.anblicks.com *

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

*anudee...@anblicks.com *

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


[android-developers] Ruby on Rails Developer ( F2F Required in PA )) NO H1B at this time please

2016-12-06 Thread Vishal Ji Awasthi
Ruby on Rails Developer

Must be local candidates for in-person interview

Philadelphia, PA

6+months



MUST HAVE:
5-8 years of front end development experience building accessible,
cross-platform web sites and web applications
- Ruby on Rails (3+ years)
- JavaScript, HTML, CSS (5+ years)
- Experience with at least one JavaScript testing library (Jasmine, Mocha,
Chai, Sinon, etc.) & test runner (Karma, Teaspoon, Web Component Tester,
etc.)
- Experience building web applications

Additional Preferred Skills:
- Knowledge of NPM & Gulp
- Knowledge of source control systems (Git, Subversion)
- Knowledge of Continuous Integration and Deployment tools (AntHill Pro,
Jenkins, Travis CI)
- Knowledge of Web Performance best practices
- Experience with Analytics and Big Data (Omniture, Splunk)
- Agile development experience
- DevOps experience





*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] Hiring for JDA Supply Chain Management Consultant at Westchester, IL

2016-12-06 Thread USIT Recruiter
*Hi *



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



*Job Title: JDA Supply Chain Management Consultant*

*Duration: 6+ months*

*Location: **Westchester, IL*



*Job Description :*

· Experience developing on Windows/Unix environment

· Experience in Pl/Sql programming.

· Experience with Oracle databases - SQL: queries, stored
procedures.

· Good Knowledge on JDA Fulfillment and ESP.

· Strong conceptual understanding of Supplier, Manufacturer &
Retailer in Supply Chain Planning.

· Knowledge on various ESP modelling concepts like Resource,
Production Method, Distribution Network Method, Calendars etc...

· Strong conceptual understanding of Deep Tree, MAP & Linear
Optimization Algorithms.

· Knowledge on Master Planning concepts would be an added advantage.

· Knowledge on Load planning/building concepts of Fulfillment
module would be an added advantage.

· Strong analytical, problem solving, troubleshooting skills

· Strong Communicator

· Ability to thrive in a fast-changing, dynamic environment

· Exhibit a commitment to customer service while building customer
partnerships.

· Knowledge on other JDA modules would be an added advantage like
I2 Supply Chain Planner.

· Strong consulting mindset, exceptional client Interfacing skills

· Prior experience in leading implementation teams would be
desirable

· Prior JDA ESP and Fulfillment implementation experience in the
Retail/CPG domain would be an added advantage

· Knowledge on estimation techniques & presales experience would be
desirable





*Job Requirement :*

· JDA Manugistics

· JDA Fulfillment and ESP 2.Supplier, Manufacturer & Retailer in
Supply Chain Planning.

· ESP modelling concepts like Resource, Production Method,
Distribution Network Method, Calendars etc 4.Oracle databases – PL/SQL:
queries, stored procedures



*Nice to have :*

· Master Planning concepts

· Development experience on Windows/Unix environment









*Thanks and Regards,*

*Abhishek Kumar*

Next Level Business Services, Inc.

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

 *f: *+1 (608) 646 8326

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

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

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


[android-developers] .Net Developer || Jersey City, NJ || F2F Must || 7+ exp || NO OPT at this time please

2016-12-06 Thread Vishal Ji Awasthi
*Position: .Net Developer*

*Location: Jersey City, NJ*

*Duration: 6-12 Months Contract*

*Phone and F2F*



*(Consultant should be very strong in WWF or JS Framework)*





*Project Requirements:*

· Strong Core C#

· WebAPI

· MVC pattern

· Spring.Net, Ninject or comparable Dependency Injection tool (
Spring.Net preferred)

· Knowledge of RESTful Services

· Strong Unit Testing experience

*Nice to have’s*

· Entity Framework

· AngularJS

· Automapper

· jQuery

· AJAX

· CSS

*Basic Requirements:*

· Core C#

· Microsoft Visual Studio 2012 or 2015

· Microsoft .NET Framework 3.5/4.0/4.5

· Common Language Runtime

· ADO.NET

· ASP.NET

· LINQ

· Unit Testing:

o   NUnit, MSTest

o   Mocking Framework (i.e.: MOQ)

· Git or BitBucket (formerly known as Stash) and SourceTree

· Experience with Peer reviews

· Familiarity Agile [Scrum and XP Engineering Practices]

· Familiarity with Continuous Integration

· Familiarity with Test Driven Development (TDD)

· Excellent communication skills

· Ability to collaborate in a team

· Ability to analyze manual business processes and propose
automated solutions

· Someone who takes initiative instead of waiting for work to be
assigned.

· Someone who participates in discussions and who isn't afraid to
have and state opinions.

*Nice to have:*

· Familiarity with the Property and Casualty Industry is a plus





*Needed some details for submission process -*






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

*Relocation   :*



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

*Availability to Join: *

*Work authorization   :*

*Education, University, Year:*









*Regards*



*Vishal Ji Awasthi*

*Srimatrix Inc.*

[image: Logo.png]

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

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

Web: www.srimatrix.com

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


[android-developers] Urgent Need: Dynamics AX Architect @ Cherry Hill, NJ | Contract Position

2016-12-06 Thread Ateeq Rehman
*Hello Associate,*

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share resume for Dynamics AX Architect at
**ateeq.reh...@diverselynx.com
*



*Job Description*



*Role: Dynamics AX Architect*

*Location: Cherry Hill, NJ*

*Hiring: Contract*



*Job Details:*


1.   Excellent communication skills, client handling skills,

2.   Good domain knowledge (MUST)

3.   Address user queries on AX 2012 product / Incident Management,
respond and resolve Tickets.

4.   Manage Change requests, Coordinate with offshore team on
deliverables

5.   Should have end to end AX implementations, with below expertise

a.Functional requirement documentation

b.   Fit Gap analysis

c.AX Configuration and demonstration

d.   Draft design documents and user training




*Thanks & Regards*

*Ateeq Rehman*

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

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

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

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


[android-developers] Re: Citizen/USC/GC/HI:::::::::Network/Juniper/Security Consultant:::Open to Relocate

2016-12-06 Thread Marketing Softsages
*Hello Patrners!*

* Please find the list of Certifed CCNA CCNP JUNIPER Network
consultants available for the positions – *



*Name*

*Location*

*Re-Location*

*Visa Status*

*Contact Details*

*Email Id*

*CCNP-CCNA JUNIPER Certified NETWORK ENGINEER AVAILABILITY—IMMEDIATE*

Nikhil

OK

Yes

H1b

Desk No: (484) 402 7869 Ext. 105 / Direct No: (646) 941-5098

*g...@softsages.com *

minithi

CA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

Malla

IN

Yes

H1B

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Souvik

TX

Yes

H1B

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Naziruddin

NJ

Yes

GC

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Nishit

NY

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com*

Umesh

OH

Yes

GC

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Chandana

NJ

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *

Trivrni

NJ

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Senior SAP consultant/HANA/BO/BW*

Fasi

PA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Oracle Hyperion*

Swati

AZ

Yes

H1b

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Develops Engineer*

Akhila

VA

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *





*Regards*

*Prashant*
*Desk - 484 402 7869 X 117, Direct - (832) 941-3970*

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


[android-developers] urgent need a MS Dynamics CRM Architect || Monona, WI || 12+ Months || Any Visa is OK !! Phone Hire ||

2016-12-06 Thread Mohammad Wasim
*Hello All,*

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

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

*Full Name: *

*Email:  *

*Phone:*

*Location:*

*Visa:*

*Rate:*

*Start: *







*MS Dynamics CRM Architect*

*Monona, WI*

*12+ Months*

*Phone Hire*



*Any Visa is OK !!*



*Requirements :*



- Working knowledge of specialized tools and solution providers

- Knowledge of full application life cycle design tools and methodologies.

- Exceptional demonstrated consulting skills

- Large enterprise deployment experience in complex heterogeneous
environments

•Supports the creation of a complex system being built on the Microsoft
Dynamics CRM platform, version 2015 or higher

•Integration expertise with technologies such as SOAP, REST, MQ etc

•Develops and delivers best practices, delivery templates.





**

*Thanks,*

*Mohammad Wasim*

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

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



*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] Re: Citizen/USC/GC/HI:::::::::Network/Juniper/Security Consultant:::Open to Relocate

2016-12-06 Thread Marketing Softsages
*Hello Patrners!*

* Please find the list of Certifed CCNA CCNP JUNIPER Network
consultants available for the positions – *



*Name*

*Location*

*Re-Location*

*Visa Status*

*Contact Details*

*Email Id*

*CCNP-CCNA JUNIPER Certified NETWORK ENGINEER AVAILABILITY—IMMEDIATE*

Nikhil

OK

Yes

H1b

Desk No: (484) 402 7869 Ext. 105 / Direct No: (646) 941-5098

*g...@softsages.com *

minithi

CA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

Malla

IN

Yes

H1B

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Souvik

TX

Yes

H1B

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Naziruddin

NJ

Yes

GC

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Nishit

NY

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com*

Umesh

OH

Yes

GC

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Chandana

NJ

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *

Trivrni

NJ

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Senior SAP consultant/HANA/BO/BW*

Fasi

PA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Oracle Hyperion*

Swati

AZ

Yes

H1b

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Develops Engineer*

Akhila

VA

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *





*Regards*

*Prashant*
*Desk - 484 402 7869 X 117, Direct - (832) 941-3970*

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


[android-developers] Re: Citizen/USC/GC/HI:::::::::Network/Juniper/Security Consultant:::Open to Relocate

2016-12-06 Thread Marketing Softsages
*Hello Patrners!*

* Please find the list of Certifed CCNA CCNP JUNIPER Network
consultants available for the positions – *



*Name*

*Location*

*Re-Location*

*Visa Status*

*Contact Details*

*Email Id*

*CCNP-CCNA JUNIPER Certified NETWORK ENGINEER AVAILABILITY—IMMEDIATE*

Nikhil

OK

Yes

H1b

Desk No: (484) 402 7869 Ext. 105 / Direct No: (646) 941-5098

*g...@softsages.com *

minithi

CA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

Malla

IN

Yes

H1B

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Souvik

TX

Yes

H1B

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Naziruddin

NJ

Yes

GC

Desk No: (484) 402 7869 Ext. 121 / Direct No: (213) 298 3628

*  oli...@softsages.com *

Nishit

NY

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com*

Umesh

OH

Yes

GC

Desk No: (484) 402 7869 Ext. 102 / Direct No: (213) 298 3629

*g...@softsages.com *

Chandana

NJ

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *

Trivrni

NJ

Yes

EAD GC

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Senior SAP consultant/HANA/BO/BW*

Fasi

PA

Yes

H1B

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Certified Oracle Hyperion*

Swati

AZ

Yes

H1b

Desk - 484 402 7869 X 117, Direct - (832) 941-3970

*jenni...@softsages.com  *

*Develops Engineer*

Akhila

VA

Yes

EAD GC

Desk - 832-941-3969 X 109 / Direct no. -(213) 298 3628

*z...@softsages.com *





*Regards*

*Prashant*
*Desk - 484 402 7869 X 117, Direct - (832) 941-3970*

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


[android-developers] Need Java Developer – (Spark, JDBC, SQL) ( 2 spots)

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

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

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

*Title: Java Developer – Spark, JDBC, SQL ( 2 spots)*
*Contract Duration: 6 months*
*Location: South Brunswick, New Jersey*

*Minimum Requirements:*

   - Need 2 developers with 8+ years java experience.
   - The project is development of web micro services.
   - Using a light weight web development frame work - Spark - but other
   web framework experience is helpful (e.g. Spring/Hibernate).
   - The project will include database work so SQL and JDBC is required.
   - node.js & JSON experience is a plus.


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

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


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

2016-12-06 Thread Acha Hotlist
Hello,



Hope you’re doing great today.

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



*Name*

*Technology*

*Location*

*Experience*

*Relocation*

SB

.Net Developer

Aberdeen, SD

12+

Yes

SK

Informatica

Madison, WI

9+

Yes

MJG

Hadoop Developer

Lisle, IL

7+

Yes

SR

Open stack Engineer

Dallas, TX

7+

Yes

RN

Salesforce Developer

Dover, NH

8+

Yes

ES

DevOps Engineer

Tampa, FL

8+

Yes

MRR

UI Developer

Atlanta, GA

7+

Yes

HC

.Net

Los Angeles, CA

7+

Yes

SM

Senior .Net Developer

Louisville, KY

8+

Yes

URR

Service Now Developer/Admin

Richardson, TX

7+

Yes



Thanks & Regards,



*Acha Ayyappa*

*CNET Global Solutions, Inc *

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



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*



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




Note: We respect your Online Privacy. This is not an unsolicited mail.
Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include Contact information and a
method to be removed from our mailing list. If you are not interested in
receiving our e-mails then please reply with a "remove" in the subject line
and mention all the e-mail addresses to be removed with any e-mail
addresses which might be diverting the e-mails to you. I am sorry for the
inconvenience caused to you.

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


[android-developers] Architect Adobe AEM CQ | AEM 6.0

2016-12-06 Thread sammy
Summary Information

Infosys!!

Request Type:   Opportunity

Request:IT - Technology Architect | Adobe AEM CQ | AEM 6.0

Request Code:  JTC_Technology Architect | Adobe AEM CQ | AEM 6.0

Location: Dallas, TX

Target Start Date: 1st Nov, 2016

Duration: 6 months





Job Details:

8 to 10 years of overall experience. 4 to 5 years of AEM hands on
experience.

Should have some previous experience of Teamsite or Livesite.

Should be able to architect, design and code.

Good knowledge of AEM architecture.

Should be a good team player and should mentor the team.



Must Haves – Skills:

AEM 6.0 and above

Prior experience using Teamsite or Livesite (content management tools)



Nice to Have/Skills:

Java / J2EE

*With Regards..**?*

Sharmishtha Rawat


Systems America, Inc.

3130 Crow Canyon Place Suite 425 San Ramon, CA 94583

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


[image: Logo]


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



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

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


[android-developers] Regarding Java Developer, at South Brunswick, New Jersey

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

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

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

*Title: Java Developer – Spark, JDBC, SQL ( 2 spots)*
*Contract Duration: 6 months*
*Location: South Brunswick, New Jersey*

*Minimum Requirements:*

   - Need 2 developers with 8+ years java experience.
   - The project is development of web micro services.
   - Using a light weight web development frame work - Spark - but other
   web framework experience is helpful (e.g. Spring/Hibernate).
   - The project will include database work so SQL and JDBC is required.
   - node.js & JSON experience is a plus.


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

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


[android-developers] Hot list of consultants who are ready to start immediately

2016-12-06 Thread Yogindra Gowd
*Name*

*Skills*

*Visa*

*Exp*

*Relocation*

*loc*

*Bhavya*

*Java Developer*

*H1B*

*8+*

*YES*

*TX*

*harish*

*SQL DBA*

*H1B*

*8+*

*Yes*

*OH*

*Shruthi*

*BA*

*H1B*

*8+*

*Yes*

*TX*

shruthi

SQL Developer

H1B

8+

yes

TX

Manoj

Android Developer

OPT- EAD

6+

Yes

TX

-- 
*Thanks*
*Yogindra*
*yogind...@lorava.com*
*Direct:- (469) 718-2869*102*
*Hangout : ygow...@gmail.com *
*Talent Acquisition| LORAVA, INC.*
*300 East Royal Lane, Suite # 113 IRVING TX 75039*
*WWW.LORAVA.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/CAN52aWjy2svEnSpOXWYGrwb8aimsvUdTdQMfJBedazwCogvs7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-12-06 Thread swamil singh
Hi,


Hope you are Doing well...!!!



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



*Role*: Tableau Developer

*Location*: Salt lake city UT

*Experience*: 6+ Years


*JD:*

Responsibilities

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

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

•  BI application and systems performance tuning.

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

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

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

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

•  Proactively monitor BI application and system performance.

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

Basic Requirements

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

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

Preferred Qualifications

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

•  Outstanding visualization design skills.

•  Understanding of data warehousing techniques including star
schemas.

•  Experience developing interactive dashboards in Tableau.

•  Experience with Tableau application and systems
administration.

•  Experience combining multiple Tableau data sources.

•  Experience extending and customizing Tableau visualizations
with JavaScript.

•  Experience with Elasticsearch and Kibana is a plus.


-- 

-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

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

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Fwd: Java Developer( Micro Service) in Richmond, VA

2016-12-06 Thread SALMA BHAT
*Hi Partners,*


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




*Position: Java Developer Location: Richmond, VA Duration: Long Term
Contract*

*Mandatory Skills: Micro Service 10+*



*Job Description:*



· Spring

· Micro service

· Hibernate

· Spring Boot

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


[android-developers] Urgent Need---SAP HR Data Entry-------EAD or GC or Citizens only

2016-12-06 Thread Saikiran Nandrolu
Hi Friends,

Hope you are doing great,



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



*SAP HR Data Entry*

*Chicago, IL*

*1 year*

*EAD or GC or Citizens only*

*Rate: $30/hr C2C*



*Job Description:*
This role is a data entry role loading HR data into SAP and Ultipro
(Ultimate Software). SAP is a must have and Ultipro is a plus. If they have
knowledge of SAP HCM Organizational and PA (personal administration)
modules, ESS, MSS, Compensation planning this is great too. Development and
configuration is done in Castle, Germany and he does have people on his
team who does the configuration. This role is only data entry.





Best Regard

Sai Kiran

saikir...@usmsystems.com

703-880-4146

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


[android-developers] Analyst | Telecom | Telecom - ALL

2016-12-06 Thread sammy
Summary Information

Procurement Type: Contingent Labor

Work Location:  Coppell, TX 75019

Client DTCC - Coppell

Request Information

Request: IT - Technology Analyst | Telecom | Telecom - ALL

Job Description:Job Title: Technology Analyst

Contract duration (in months)12

Target Start Date  12-Dec-16



*Job Details:*



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

*1. Telecommunications management and design experience*

*2. IBM Rivermine*



*Nice to have skills (Top 2 only)*

*1.*

*2.*



•Candidate will have strong telecommunications management and design
experience, with experience in telecom and datacom design, ordering,
provisioning, and management.

•Candidate must have proven capability to manage carrier relationships and
performance.

•Candidate will serve as team member for group that has primary
responsibility for processing, validating, and managing delivery of data
and telecom services.

•In addition, candidate is responsible for external client onboarding
process including circuit and equipment provisioning.

•Candidate will maintain accurate inventory of telecommunication devices to
allow for proper device provisioning, validation of invoices, managing and
planning of current and future network budgets and identification of future
network costs.

•Candidate will manage the central telecommunication repository (IBM
Rivermine) and support internal groups by sharing network business
intelligence.

•Candidate is responsible for determining telecommunication financial
contractual agreement validity and accuracy.

•The role is highly dependent on effective data gathering, analysis and
translation of those findings to key stakeholders within and out of
Enterprise Communications’ network areas. To support management’s decision
processes, the role requires providing clear analysis and developing and
managing tools and processes.



*With Regards..**?*

Sharmishtha Rawat


Systems America, Inc.

3130 Crow Canyon Place Suite 425 San Ramon, CA 94583

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


[image: Logo]


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



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

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


[android-developers] Urgent Requirement for ETL Developer at Dayton, OH

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

Hope you are doing  well !!!

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

Position Title: ETL Developer

Location: Dayton, OH – Kettering Tower

Term of Assignment: Approx. 6 month Contract-To-Hire

1 Skype interview only



Top skillsets: SSIS, SQL Server, SQL

Nature or Work: ETL Development for IN Medicaid



Role and Responsibility:

· Participate in the development and implementation of data
migration using best practices throughout the enterprise through the data
migration tool

· Work within the data migration strategy and roadmap to increase
the usability, completeness, and accuracy of enterprise data throughout the
company systems and applications

· Provide input on the architecture and integration of multiple
database and reporting tool products within an Enterprise Data Warehouse

· Ensure HIPPA and regulatory compliance rules are addressed for
all data movement

· Utilize ETL standards and practices toward establishing and
following a centralized metadata repository

· Work with business areas and IT to ensure integrity and proper
integration for all sources of enterprise data

· Coordinate with business areas and IT to support a business rule
repository and processes, and support and store in a metadata repository

· Work closely with areas directly connected to the Enterprise Data
Warehouse to ensure that reporting, business intelligence, and analytic
data needs are met

· Work within an iterative approach methodology

· Perform any other job related instructions, as
requested

Education / Experience:

· Bachelor’s Degree or equivalent years of relevant work experience
is required

· Minimum of three (3) years of ETL development experience is
required

· Healthcare experience is preferred

· Data management experience is preferred

Required Competencies / Knowledge / Skills:

· ETL development

· Hadoop and shell scripting experience preferred

· Informatica experience preferred

· SSIS and SQL Server knowledge preferred

· Java or Python experience preferred

· Metadata solutions or tool experience preferred





-- 

*Regards,*


*Rajesh Kumar*

*Sr. Technical Recruiter*

*TEK Inspirations LLC*

Cowboys PKWY, #3074, Irving, TX 75063

E: raj...@tekinspirations.com 

W: www.tekinspirations.com

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


[android-developers] Need || Salesforce Marketing Cloud Senior Consultant @Germantown,MD ||

2016-12-06 Thread swamil singh
Hello,



Hope you are Doing well...!!!



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





*Role*: Salesforce Marketing Cloud Senior Consultant

*Location*: Germantown,MD

*Experience*: 6+ years


*JD:*

Wipro is seeking experienced and motivated Salesforce Marketing Cloud
Senior Consultant. Accepted candidates will have the skills to provide
exceptional consulting services to clients, helping them gain the optimum
benefit from their Salesforce Marketing Cloud implementation.


*RESPONSIBILITIES*

   - Perform hands-on solution design, prototyping, and proof-of-concepts,
   as required in support of current and new projects
   - Communicate with stakeholders regarding status and creative solutions
   - Participate in pre-sales activities and internal initiatives as
   required
   - Participate in business and technical meetings
   - Provide timely status updates to project leadership
   - Identify and mitigate risks in process and technology
   - Support architectural and development guidelines and best practices
   - Mentor others through project lifecycle on both technology and process
   - Be able to estimate scope for development efforts
   - Conduct Solution reviews with project teams prior to design and
   development activities and ensure solution is scalable, is aligned with
   internal product roadmaps and meets customers' business requirements
   - Complete tasks efficiently and in a timely manner
   - Report progress to clients and project managers
   - Continually seek ways to improve the process of delivering Salesforce
   Marketing Cloud Solutions
   - Share knowledge to continually improve implementation methodology



*REQUIRED SKILLS*

   - 2+ years Salesforce Marketing Cloud administration and/or
   implementation experience
   - Experience in hands on design, prototyping, development,
   configurations, testing and other implementation activities
   - Strong oral and written communication skills
   - Strong Technical background, Analytical, and Problem-solving skills
   - Proven track record for being detail-oriented with a demonstrated
   ability to self-motivate and follow through on projects
   - Excellent troubleshooting skills with the ability to analyze and
   resolve difficult problems quickly
   - Ability to work on all project phases of a project: Discovery, Design,
   Build, Test and Go Live
   - Provide quality formal and informal documentation consistent with
   documentation standards
   - Knowledge of higher education business process a plus
   - Able to provide proof of at least one Salesforce.com certification

-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

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

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] ON MY W2`

2016-12-06 Thread 9TO9 SALES RECRUITER
Candidate Full Name

Technology

Relocate?

Surya Teja

.NET

Any Location

SaiRam B

.NET

Any location

Sreekant J

.NET

Any Location

Mankinata C

.NET

Any Location

Sreedhar P

.NET

Any Location

Vasanth Kumar T

.NET

Any Location

Ravikanth V

.NET

Any Location

Kavya

.NET

Any Location

Sairam N

.NET

Any Location

SaiPrasanna

.NET

Any Location

Vinith G

.NET

Any Location

Abhishek S

.NET

Any Location

Vishal

.NET

Any Location

Sandeep D

.NET

Any Location

Nikhila

.NET

Any Location

Sai chaitanya

.NET

Any Location

Mahesh P

.NET

Any Location

Vishal

.NET

Any Location

Mahesh K

.NET

Any Location

Sai D

JAVA

Any location

Sandeep M

JAVA

Any Location

Manoj

JAVA

Any Location




-- 
*Best Regards,*

*Shravan Kumar*
Technical Recruiter | 9to9 Software Solutions LLC
W: 203-678-8000 EXT 213 | F: 855-929-SOFT
ku...@9to9soft.com| http://www.9to9soft.com
WMBE Certified | E-Verified Company

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


[android-developers] ON MY W2

2016-12-06 Thread 9TO9 SALES RECRUITER
Candidate Full Name

Technology

Relocate?

Surya Teja

.NET

Any Location

SaiRam B

.NET

Any location

Sreekant J

.NET

Any Location

Mankinata C

.NET

Any Location

Sreedhar P

.NET

Any Location

Vasanth Kumar T

.NET

Any Location

Ravikanth V

.NET

Any Location

Kavya

.NET

Any Location

Sairam N

.NET

Any Location

SaiPrasanna

.NET

Any Location

Vinith G

.NET

Any Location

Abhishek S

.NET

Any Location

Vishal

.NET

Any Location

Sandeep D

.NET

Any Location

Nikhila

.NET

Any Location

Sai chaitanya

.NET

Any Location

Mahesh P

.NET

Any Location

Vishal

.NET

Any Location

Mahesh K

.NET

Any Location

Sai D

JAVA

Any location

Sandeep M

JAVA

Any Location

Manoj

JAVA

Any Location




-- 
*Best Regards,*

*Shravan Kumar*
Technical Recruiter | 9to9 Software Solutions LLC
W: 203-678-8000 EXT 213 | F: 855-929-SOFT
ku...@9to9soft.com| http://www.9to9soft.com
WMBE Certified | E-Verified Company

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


[android-developers] ON MY BENCH

2016-12-06 Thread 9TO9 SALES RECRUITER
Candidate Full Name

Technology

Relocate?

Surya Teja

.NET

Any Location

SaiRam B

.NET

Any location

Sreekant J

.NET

Any Location

Mankinata C

.NET

Any Location

Sreedhar P

.NET

Any Location

Vasanth Kumar T

.NET

Any Location

Ravikanth V

.NET

Any Location

Kavya

.NET

Any Location

Sairam N

.NET

Any Location

SaiPrasanna

.NET

Any Location

Vinith G

.NET

Any Location

Abhishek S

.NET

Any Location

Vishal

.NET

Any Location

Sandeep D

.NET

Any Location

Nikhila

.NET

Any Location

Sai chaitanya

.NET

Any Location

Mahesh P

.NET

Any Location

Vishal

.NET

Any Location

Mahesh K

.NET

Any Location

Sai D

JAVA

Any location

Sandeep M

JAVA

Any Location

Manoj

JAVA

Any Location




-- 
*Best Regards,*

*Shravan Kumar*
Technical Recruiter | 9to9 Software Solutions LLC
W: 203-678-8000 EXT 213 | F: 855-929-SOFT
ku...@9to9soft.com| http://www.9to9soft.com
WMBE Certified | E-Verified Company

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


[android-developers] HOT LIST

2016-12-06 Thread 9TO9 SALES RECRUITER
Candidate Full Name

Technology

Relocate?

Surya Teja

.NET

Any Location

SaiRam B

.NET

Any location

Sreekant J

.NET

Any Location

Mankinata C

.NET

Any Location

Sreedhar P

.NET

Any Location

Vasanth Kumar T

.NET

Any Location

Ravikanth V

.NET

Any Location

Kavya

.NET

Any Location

Sairam N

.NET

Any Location

SaiPrasanna

.NET

Any Location

Vinith G

.NET

Any Location

Abhishek S

.NET

Any Location

Vishal

.NET

Any Location

Sandeep D

.NET

Any Location

Nikhila

.NET

Any Location

Sai chaitanya

.NET

Any Location

Mahesh P

.NET

Any Location

Vishal

.NET

Any Location

Mahesh K

.NET

Any Location

Sai D

JAVA

Any location

Sandeep M

JAVA

Any Location

Manoj

JAVA

Any Location




-- 
*Best Regards,*

*Shravan Kumar*
Technical Recruiter | 9to9 Software Solutions LLC
W: 203-678-8000 EXT 213 | F: 855-929-SOFT
ku...@9to9soft.com| http://www.9to9soft.com
WMBE Certified | E-Verified Company

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


  1   2   >