Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread sheritagunther via Android Developers


On Wed, 12/14/16, lekishahendrix via Android Developers 
 wrote:

 Subject: Re: [android-developers] Adding Android platform to company website
 To: android-developers@googlegroups.com
 Date: Wednesday, December 14, 2016, 3:42 AM
 
 
 
 On Wed, 12/14/16, toneymessina via Android Developers 

 wrote:
 
  Subject: Re: [android-developers] Adding Android platform
 to company website
  To: android-developers@googlegroups.com
  Date: Wednesday, December 14, 2016, 3:33 AM
  
  
  
  On Wed, 12/14/16, sheritagunther via Android Developers
  
  wrote:
  
   Subject: Re: [android-developers] Adding Android
 platform
  to company website
   To: android-developers@googlegroups.com
   Date: Wednesday, December 14, 2016, 2:26 AM
   
   
   
   On Tue, 12/13/16, Marina Cuello 
   wrote:
   
    Subject: Re: [android-developers] Adding Android
  platform
   to company website
    To: android-developers@googlegroups.com
    Date: Tuesday, December 13, 2016, 10:58 PM
    
    Perhaps
    you could use the tool they use in Android Arsenal?
  It's
    called appetize.iohttps://appetize.io/
    It's not free, but perhaps it
    suits your needs.
    Marina
    On Fri, Dec 9, 2016 at 2:30
    PM, Benjamin McCay 
    wrote:
    Hello everyone, 
    I'm currently trying to
    implement some kind of Android emulator or platform
  into
   my
    companies website for demos. Now the purpose of that
  is
   for
    demos of different touchscreen point of sale systems
  that
    operate on the Android operating system. Currently we
  use
    Genymotion then add the APK file to a Nexus 7
  emulator to
   do
    demos for potential clients, but we want to be able
  to add
   a
    button on our website that customers can press such
  as,
    "Live Demo," and have the demo open up to where
    they can experience the software from the comfort of
  their
    home. I have searched everywhere on how to do this
  but
   there
    is no information available, and I can understand
  that it
    might be a new idea, but I need to make it happen
  today.
   Any
    ideas, or any directions to point me in? Thank
    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/ ff3ee57a-a3c1-496b-b228-
    e7041c1b2461%40googlegroups. com.
    
    For more options, visit https://groups.google.com/d/
    optout.
    
    
    
    
    
    
    -- 
    
    You received this message because you are subscribed
  to
   the
    Google Groups "Android Developers" group.
    
    To unsubscribe from this group and stop receiving
  emails
    from it, send an email to android-developers+unsubscr...@googlegroups.com.
    
    To post to this group, send email to android-developers@googlegroups.com.
    
    Visit this group at
   https://groups.google.com/group/android-developers.
    
    To view this discussion on the web visit
  
 
https://groups.google.com/d/msgid/android-developers/CACaNmX3Td-u4A3ZyNTQBXgx_T9D8UHj1Dqh-zne2_PcQ%3D0%2B6rw%40mail.gmail.com.
    
    For more options, visit
   https://groups.google.com/d/optout.
    ept - Formarea primelor brigazi internationale ce
  lupta
   alaturi de fortele republicane in Spania
   
   -- 
   You received this message because you are subscribed
 to
  the
   Google Groups "Android Developers" group.
   To unsubscribe from this group and stop receiving
 emails
   from it, send an email to android-developers+unsubscr...@googlegroups.com.
   To post to this group, send email to android-developers@googlegroups.com.
   Visit this group at
   https://groups.google.com/group/android-developers.
   To view this discussion on the web visit
  
 
https://groups.google.com/d/msgid/android-developers/1842614233.2549163.1481675170175%40mail.yahoo.com.
   For more options, visit
   https://groups.google.com/d/optout.partinand
  totusi  de drept  epocii cand au luat
  nastere.
  
  -- 
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  To post to this group, send email to 

[android-developers] How do I re-run an activity after clicking the Back button after checking GPS usage in the Android GPS setup screen?

2016-12-13 Thread 최세림



After you navigate to the GPS settings dialog on the following source, check 
the GPS usage and click the Back button

Intent = new Intent (this, CurrentLocatinActivity.class);

StartActivity (intent);

I want to reintroduce this part of the intent. Where should I do it?
Or if I need to create a new method, how do I create one?



public class MainActivity extends AppCompatActivity {

String gpsEnabled;

Intent intent;

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

chkGpsService();
}

private boolean chkGpsService() {

//GPS가 켜져 있는지 확인함.
gpsEnabled = 
android.provider.Settings.Secure.getString(getContentResolver(), 
Settings.Secure.LOCATION_PROVIDERS_ALLOWED);

if (!(gpsEnabled.matches(".*gps.*") && 
gpsEnabled.matches(".*network.*"))) {
//gps가 사용가능한 상태가 아니면
new AlertDialog.Builder(this).setTitle("GPS 설정").setMessage("GPS가 
꺼져 있습니다. \nGPS를 활성화 하시겠습니까?").setPositiveButton("GPS 켜기", new 
DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int which) 
{
//GPS 설정 화면을 띄움
Intent intent = new 
Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
}
}).setNegativeButton("닫기", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {

}
}).create().show();

}else if((gpsEnabled.matches(".*gps.*") && 
gpsEnabled.matches(".*network.*"))) {
Toast.makeText(getApplicationContext(), "정보를 읽어오는 중입니다.", 
Toast.LENGTH_LONG).show();
intent = new Intent(this, CurrentLocatinActivity.class); //현재 위치 화면 
띄우기 위해 인텐트 실행.
startActivity(intent);
}
return false;
}
}

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


[android-developers] Payment Issue

2016-12-13 Thread inetnumber
Hi,

  When i try to pay one time fee $25 using VISA (India) i am always 
getting following error *"Transaction declined: invalid payment method"* is 
there any special reason. How can I fix this issue

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


[android-developers] SDN based IDS

2016-12-13 Thread ayşen acun
Hi. I should do SDN based IDS for my project assignment but i dont know how 
to start. Could you help me, please?

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


[android-developers] Application Packaging Training

2016-12-13 Thread Info Cim
Tech Repack online training is best in providing Application Packaging 
Online Training, software Application packaging training in hyderabad 
 packaging online training. Contact : 
+91 8374805705.

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


[android-developers] Emulator does not run

2016-12-13 Thread mertfiliz734
Hi,
I wrote "Hello World " program in Android Studio. Then I created Android 
Virtual Device at AVD Manager. and run the emulator but emulator does not 
work. I saw this error mesage in the screen:

PANIC: Unknown AVD name [My_Device_API_24], use -list-avds to see valid 
list.
HOME is defined but could not find My_Device_API_24.ini file in 
$HOME/.android/avd
(Note: avd is searched in the order of 
$ANDROID_AVD_HOME,$ANDROID_SDK_HOME/.android/avd and $HOME/.android/avd)

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


[android-developers] Can You Escape this 1000 Doors

2016-12-13 Thread Escape Games Android











Get This Games: 


Winter Escape Games is a combo of 65 games of 3 collections. The first 
collection is Wax Stone of 23 games. Its story is about preventing the 
earth from the wax stone falling on the earth and celebrating Christmas 
with the happy ending. The second collection is Christmas celebration of 27 
games. The third collection is New Year Celebrations. Each game is 
different in all aspects in celebrating New Year in completely different 
atmospheres. It's all about partying the New Year, participating in 
celebrations and presenting precious gifts to your loved ones. HFG brings 
you this point and click type latest free new escape games especially for 
the escape games lovers.

Exciting 65 escape games waiting for you to celebrate...

FEATURES: 

Mixed Variety of Celebrations

Addictive Game play(8 hours).

Exciting Games. 

Impressive graphics.

Riddling Puzzles

Download this 65 Escape Games for different celebrations.


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


[android-developers] Re: Auto update of an App after manual installation directly on the phone?

2016-12-13 Thread Arvind Jaiswal
Can you help me with your code that checks for the update directly from the 
Play Store? It'll be a great help if you do.

On Thursday, 4 February 2016 23:09:57 UTC+5:30, Danny D wrote:
>
> One way I've solved this is to have your app check the version (either 
> against your server by other means), then open the Play-Store app with an 
> intent directing it to your app listing there.  To the user, it looks just 
> as if they had navigated there themselves.
>
> If I remember, there's a way to programmatically get the version and other 
> meta-data about an app by querying the store too, so you may be able to use 
> that as your update check.
>
> DD
>
>

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


Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread lekishahendrix via Android Developers


On Wed, 12/14/16, toneymessina via Android Developers 
 wrote:

 Subject: Re: [android-developers] Adding Android platform to company website
 To: android-developers@googlegroups.com
 Date: Wednesday, December 14, 2016, 3:33 AM
 
 
 
 On Wed, 12/14/16, sheritagunther via Android Developers
 
 wrote:
 
  Subject: Re: [android-developers] Adding Android platform
 to company website
  To: android-developers@googlegroups.com
  Date: Wednesday, December 14, 2016, 2:26 AM
  
  
  
  On Tue, 12/13/16, Marina Cuello 
  wrote:
  
   Subject: Re: [android-developers] Adding Android
 platform
  to company website
   To: android-developers@googlegroups.com
   Date: Tuesday, December 13, 2016, 10:58 PM
   
   Perhaps
   you could use the tool they use in Android Arsenal?
 It's
   called appetize.iohttps://appetize.io/
   It's not free, but perhaps it
   suits your needs.
   Marina
   On Fri, Dec 9, 2016 at 2:30
   PM, Benjamin McCay 
   wrote:
   Hello everyone, 
   I'm currently trying to
   implement some kind of Android emulator or platform
 into
  my
   companies website for demos. Now the purpose of that
 is
  for
   demos of different touchscreen point of sale systems
 that
   operate on the Android operating system. Currently we
 use
   Genymotion then add the APK file to a Nexus 7
 emulator to
  do
   demos for potential clients, but we want to be able
 to add
  a
   button on our website that customers can press such
 as,
   "Live Demo," and have the demo open up to where
   they can experience the software from the comfort of
 their
   home. I have searched everywhere on how to do this
 but
  there
   is no information available, and I can understand
 that it
   might be a new idea, but I need to make it happen
 today.
  Any
   ideas, or any directions to point me in? Thank
   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/ ff3ee57a-a3c1-496b-b228-
   e7041c1b2461%40googlegroups. com.
   
   For more options, visit https://groups.google.com/d/
   optout.
   
   
   
   
   
   
   -- 
   
   You received this message because you are subscribed
 to
  the
   Google Groups "Android Developers" group.
   
   To unsubscribe from this group and stop receiving
 emails
   from it, send an email to android-developers+unsubscr...@googlegroups.com.
   
   To post to this group, send email to android-developers@googlegroups.com.
   
   Visit this group at
  https://groups.google.com/group/android-developers.
   
   To view this discussion on the web visit
  
https://groups.google.com/d/msgid/android-developers/CACaNmX3Td-u4A3ZyNTQBXgx_T9D8UHj1Dqh-zne2_PcQ%3D0%2B6rw%40mail.gmail.com.
   
   For more options, visit
  https://groups.google.com/d/optout.
   ept - Formarea primelor brigazi internationale ce
 lupta
  alaturi de fortele republicane in Spania
  
  -- 
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  To post to this group, send email to android-developers@googlegroups.com.
  Visit this group at
  https://groups.google.com/group/android-developers.
  To view this discussion on the web visit
  
https://groups.google.com/d/msgid/android-developers/1842614233.2549163.1481675170175%40mail.yahoo.com.
  For more options, visit
  https://groups.google.com/d/optout.partinand
 totusi  de drept  epocii cand au luat
 nastere.
 
 -- 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 To post to this group, send email to android-developers@googlegroups.com.
 Visit this group at
 https://groups.google.com/group/android-developers.
 To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/883832075.3629978.1481679181707%40mail.yahoo.com.
 For more options, visit
 https://groups.google.com/d/optout. otul obstesc direct egal secret pe comune 
in mod proportional pentru ambele sexe in varsta de

-- 
You received this message because you are subscribed to the 

Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread toneymessina via Android Developers


On Wed, 12/14/16, sheritagunther via Android Developers 
 wrote:

 Subject: Re: [android-developers] Adding Android platform to company website
 To: android-developers@googlegroups.com
 Date: Wednesday, December 14, 2016, 2:26 AM
 
 
 
 On Tue, 12/13/16, Marina Cuello 
 wrote:
 
  Subject: Re: [android-developers] Adding Android platform
 to company website
  To: android-developers@googlegroups.com
  Date: Tuesday, December 13, 2016, 10:58 PM
  
  Perhaps
  you could use the tool they use in Android Arsenal? It's
  called appetize.iohttps://appetize.io/
  It's not free, but perhaps it
  suits your needs.
  Marina
  On Fri, Dec 9, 2016 at 2:30
  PM, Benjamin McCay 
  wrote:
  Hello everyone, 
  I'm currently trying to
  implement some kind of Android emulator or platform into
 my
  companies website for demos. Now the purpose of that is
 for
  demos of different touchscreen point of sale systems that
  operate on the Android operating system. Currently we use
  Genymotion then add the APK file to a Nexus 7 emulator to
 do
  demos for potential clients, but we want to be able to add
 a
  button on our website that customers can press such as,
  "Live Demo," and have the demo open up to where
  they can experience the software from the comfort of their
  home. I have searched everywhere on how to do this but
 there
  is no information available, and I can understand that it
  might be a new idea, but I need to make it happen today.
 Any
  ideas, or any directions to point me in? Thank
  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/ ff3ee57a-a3c1-496b-b228-
  e7041c1b2461%40googlegroups. com.
  
  For more options, visit https://groups.google.com/d/
  optout.
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@googlegroups.com.
  
  Visit this group at
 https://groups.google.com/group/android-developers.
  
  To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/CACaNmX3Td-u4A3ZyNTQBXgx_T9D8UHj1Dqh-zne2_PcQ%3D0%2B6rw%40mail.gmail.com.
  
  For more options, visit
 https://groups.google.com/d/optout.
  ept - Formarea primelor brigazi internationale ce lupta
 alaturi de fortele republicane in Spania
 
 -- 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 To post to this group, send email to android-developers@googlegroups.com.
 Visit this group at
 https://groups.google.com/group/android-developers.
 To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/1842614233.2549163.1481675170175%40mail.yahoo.com.
 For more options, visit
 https://groups.google.com/d/optout.partinand totusi  de drept  epocii cand au 
luat nastere.

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


[android-developers] Required: Micro Strategy Developer

2016-12-13 Thread Sam
Please send me resumes  on hr2@smdconsultants,com


Title: *Micro Strategy Developer*

Client: Accenture/Cisco

Location: San Jose, CA

Duration: 6 Months

Rate: $60/hr.



*Job Description:*

· At least 3 Year of Experience with MicroStrategy products, with
experience as both a developer and architect

· Experience with technologies like Tableau, SpotFire desirable

· Experience with multiple data warehouse platforms

· Experience with Teradata highly preferred, but not required

· Strong problem solving/analytical skills Strong SQL Skills






Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

SMD Consultants Pvt. Ltd.

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


Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread sheritagunther via Android Developers


On Tue, 12/13/16, Marina Cuello  wrote:

 Subject: Re: [android-developers] Adding Android platform to company website
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 10:58 PM
 
 Perhaps
 you could use the tool they use in Android Arsenal? It's
 called appetize.iohttps://appetize.io/
 It's not free, but perhaps it
 suits your needs.
 Marina
 On Fri, Dec 9, 2016 at 2:30
 PM, Benjamin McCay 
 wrote:
 Hello everyone, 
 I'm currently trying to
 implement some kind of Android emulator or platform into my
 companies website for demos. Now the purpose of that is for
 demos of different touchscreen point of sale systems that
 operate on the Android operating system. Currently we use
 Genymotion then add the APK file to a Nexus 7 emulator to do
 demos for potential clients, but we want to be able to add a
 button on our website that customers can press such as,
 "Live Demo," and have the demo open up to where
 they can experience the software from the comfort of their
 home. I have searched everywhere on how to do this but there
 is no information available, and I can understand that it
 might be a new idea, but I need to make it happen today. Any
 ideas, or any directions to point me in? Thank
 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/ ff3ee57a-a3c1-496b-b228-
 e7041c1b2461%40googlegroups. com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACaNmX3Td-u4A3ZyNTQBXgx_T9D8UHj1Dqh-zne2_PcQ%3D0%2B6rw%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/optout.
 ept - Formarea primelor brigazi internationale ce lupta alaturi de fortele 
republicane in Spania

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


[android-developers] Java Developer/CONTRACT/McLean,VA

2016-12-13 Thread shajisherin0


Hi,

 

*GENUINE CANDIDATES ONLY AS THERE WILL BE BACKGROUND VERIFIVATION. *

Please Submit only if you can submit Their H1B copies.

Please find the requirement below. 

 

*ROLE: Java Developer.*

*LOCATION: Mclean, VA*

-  5 years of  experience with Java EE and Spring MVC, capable of 
writing multi-threading applications

-  4 years of experience with JSP, HTML, Bootstrap, Java Script, 
JQuery

-  4 years of experience with application servers, like Tomcat, 
Weblogic, etc.

-  3 year of experience with databases, like SQL Server, Oracle, 
knowledgeable of DML, and capable of creating stored procedures.

-  Working knowledge of Eclipse or IntelliJ

-  Experience of Git, scrum/agile methodologies is a plus

-  Mortgage domain knowledge also a plus

 

 

*Priya Sonawane *
First IT Solutions 
Desk : 510-470-6122 
Email : psonaw...@1stitsolutions.com
Hard work beats talent when talent refuses to work hard 

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


[android-developers] Req - SAP FICO - Santa Clara, CA

2016-12-13 Thread rahul . virtualrecruiter
Hello, 

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

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

Title: SAP FICO
 
Location: Santa Clara
 
Duration: Long term
 
FI CO functional analyst (over 6   9 years COPA production support work 
experience), including 1, 2 full life cycle Implementations,
Must have application and configuration work experience in FI GL, both 
Costing based and Account based, CO CCA, Cost Object Controlling and SD 
Billing  Strong management reporting experience using SAP BI. Should have 
understanding of functional specs for SAP BI reporting. Must have developed 
COPA reports and able to identify the requirement and integrate effectively 
with BW. Should be familiar with COPA info cubes and related BI queries
Must have designed the data model of COPA (characteristics and value fields)
Must understand the integration points between CRM/SD/FI/Product costing 
and COPA
Understand flows to COPA from different modules, integration points and 
related configuration Understand Product costing, Service Finance, Project 
Systems and related business processes.
Understand the projects business requirements and timelines and have the 
ability to drive closure of design issues to meet the projects go live  
The candidate should possess good verbal & written communication skills and 
be an effective team player in a global company.
Must have Skill CO-Profitability Accounting 


Thanks & Regards
 
Rahul
Sr Recruiter 
ra...@virtualrecruiters.co
rahul.virtualrecrui...@gmail.com
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/768a23db-e4f4-447d-a404-e3e544d956b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-12-13 Thread rajaacropetal


On Wednesday, November 30, 2016 at 7:45:27 PM UTC+5:30, Abhishek ojha wrote:
>
> *Please Email To : aojha AT sagetL.com*
>
> *Position: .Net Sitecore Developer*
>
> *Location: Dallas, TX*
>
> * Need USC and GC only *
>
> The qualified candidate will possess 7+ years of experience in three major 
> areas, including: Sitecore Development Experience, .NET Development, and C#.
>
>
> *Description:*
>
> Delivers applications support and maintenance services for software 
> applications. Responsible for estimating, programming, debugging and 
> testing of multiple business applications within the environment. Make 
> changes to existing web applications as well as development and 
> implementation of new applications. Identifying solutions to fix issues or 
> errors with the applications. Position is also responsible for mentoring 
> developers and delegating work assignments.
>
>
> *Responsibilities for this Position Include:*
>
> *Major Responsibilities: *
>
> The Sr. .NET/Sitecore Developer is responsible for coordinating and 
> leading the development team.  They will create user information solutions 
> by developing, implementing, and maintaining .NET based templates, 
> components, and interfaces. 
>
> Assists junior staff members with code reviews, design solutions and 
> complex issue research
>
> Allocates resources to development projects, manage around release 
> schedules, and work with manager to prioritize deliverables.
>
> Completes technical analysis, design, coding and testing for development 
> and support initiatives.
>
> Leads testing efforts by evaluating failed test cases and performing 
> appropriate coding fixes, as well as supporting coding changes resulting 
> from user acceptance testing.
>
> Design and develop user interfaces to internet/intranet CMS applications 
> by setting expectations and features priorities throughout development life 
> cycle; determining design methodologies and tool sets; completing 
> programming using languages and software products; designing and conducting 
> tests.
>
> Provide training and guidance on development techniques and best practices 
> using Sitecore.
>
> Provides accurate and timely status reporting as needed, including task 
> and time reporting.
>
> Constantly learns and improves technical knowledge and expertise during 
> software development.
>
> Uses standard patterns and practices to implement scalable, high 
> performance application frameworks for enterprise applications.
>
> Assists the Project Manager in the management of the complete application 
> software lifecycle with little or no guidance.
>
> Adheres to all corporate guiding principles, processes, policies, 
> standards and procedures.
>
> Creates test plans and test necessary installations for deployment of an 
> application.
>
> Creates proper technical documentation.
>
>  
>
> *Minimum Education & Certifications Required: *
>
> High School diploma or equivalent required.
>
> Bachelor’s Degree in MIS, Computer Science or equivalent work experience 
> strongly preferred.
>
> Relevant technology certification is encouraged.  
>
>  
>
> *Experience & Skills Required: *
>
> 7-8 plus years of hands on experience developing, implementing and 
> delivering application development solutions for either enterprise level 
> projects or departmental projects .
>
> At least 2 years of experience in implementing websites using Sitecore 
> CMS· Experience in .net Framework 3.5 and above.
>
> Solid understanding of UX and UI design with an emphasis on intuitive, 
> slick, modern designs.
>
> Knowledge of professional software engineering best practices for the full 
> software development life cycle, including coding standards, code reviews, 
> source control management, build processes, testing and support.
>
> Experience integrating ESBs and third party APIs.
>
> Demonstrate excellent verbal and written communications skills and 
> effectively collaborates with other team members and project stakeholders.
>
> Ability to estimate project deliverables within a 10% variance to the 
> actual completion time.
>
> Ability to effectively handle multiple tasks and manage workload based on 
> project deadlines and priorities.
>
> A working knowledge of front end technologies, including CSS, HTML5 and 
> Javascript standards.
>
> Excellent problem solving and troubleshooting skills.
>
> Core Technologies such as:
>
>  
>
> *Microsoft Technologies* - C#, ASP.Net, SQL, Visual Basic, CSS3 , ASP, 
> JavaScript, JSON,HTML5
>
> *Web/Server Technologies – *IIS, .NET Framework, SSL, Browsers
>
> *Relational Databases* – SQL Server, DTS Packages, SQL 2000/2005
>
> *Others*– Sitecore, XML, HTML/DHTML, CSS, Web Services, UML, Telerik
>
>
> *Thanks & Regards,*
>
>
>
> *Abhishek Ojha732- 837- 2138aojhaATsagetl.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] Re: .NET DEVELOPER@Houston, TX

2016-12-13 Thread rajaacropetal


On Thursday, December 8, 2016 at 8:32:24 PM UTC+5:30, Santosh kumar Nityo 
wrote:
>
> *URGENT NEED *
>
> *ONLY AND 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:** .NET DEVELOPER*
>
> *Location: **Houston, TX*
>
> *Work Duration:** Long Term*
>
> *Note: We need Photo id and visa copy (H1B)*
> * Job Description:*
>
> Impact Analysis, Coding, Testing, Deployment for new 
> development/enhancements as well support requests, onshore-offshore 
> coordination
>
> Skill Reqd. = 
>
> C#, ASP.NET, .NET Webforms, SQL Server, .NET Web services
>
>
>
> *Desired years of experience : 9**+*
>
>  
>
>  
>
>  
>
> *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@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/e44e731f-83aa-4f2f-bbc9-eac9cfdb1d0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: C2C :: Sr .Net Developer / Lead - Carrollton, Texas

2016-12-13 Thread rajaacropetal


On Thursday, September 22, 2016 at 12:12:45 AM UTC+5:30, Job4Tech.com wrote:
>
> [image: Job4Tech] 
>
> Sign up for free employer account and post for free. 
>
> *Share with your network*
> [image: LinkedIn] 
> 
>  [image: 
> Facebook] 
> 
>  [image: 
> Twitter] 
> 
>  [image: 
> Google+] 
> 
>  [image: 
> WhatsApp] 
> 
>  [image: 
> Facebook Messenger] 
> 
>  [image: 
> Viber] 
> 
>  [image: 
> WeChat] 
> 
>  [image: 
> Email] 
> 
>  
>
> Dear Partners/Job Seekers
>
> We have a *Corp to Corp* opening for *Sr .Net Developer / Lead in 
> Carrollton, Texas*, if you have matching candidates please submit their 
> profiles * here 
> *.
>  
>
>
> Candidates matching the requirements will be contacted. 
>
>
> *Role: Sr .Net Developer / Lead*
>
> Location: Carrollton; TX
>
> Duration: 6 months +
>
> *Skills & Description:*
> Sr. Net Developer. Strong / Genuine hand on Senior Developers. Sr. 
> Developers from Global SI / Implementation Partners – TCS, HCL, Infosys, 
> Wipro, etc. Some experience / exposure as a Lead will be an added 
> advantage, even if it handling a small team
> [image: Submit Resume] 
> 
>
>
>
>
>
>
>
> *[image: Join Instant Featured Alert List] Social 
> Media[image: LinkedIn]  [image: Facebook] 
>  [image: Twitter]  [image: 
> Google+]  [image: Blogger]  
> [image: RSS] Post C2C Jobs for Free 
> Other C2C openings from the web 
> *
>

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


[android-developers] Urgent Need:DataStage developer, Bridgeville, DE

2016-12-13 Thread aman tanwar
Share Resume on






*ama...@nityo.com . Positions: DataStage developer
Location: Bridgeville, DE Duration: 12+ months Summary: *IBM Information
Analyzer 11.5 or 9.1.2  (Experience in writing DQ rules)
IBM Infosphere Business Glossary (Experience in import terms and assets via
XML and csv formats)
Metadata workbench
IBM Data Stage development
Oracle SQL skills

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group 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_z5dx6VQWGwob%2BP09kZFtqyn0%2B0udpPgnBkEH3GHb%3DneSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need :Sr Project Manager -Lansing, MI (Skype or In-person) (15 years required)

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

*Hope you are doing well…..*

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



*ROLE*

*Sr Project Manager*

*LOCATION*

*Lansing MI*

*DURATION*

*LONG TERM*

*RATE*

*DOE*

*CLIENT*

*DIRECT*

*INTERVIEW TYPE*

*Skype or In-Person*

*State Experience Highly Preferred*

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

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

•  Project control, governance, issue escalation to DTMB Program
Manager and Agency PMO Manager

•  Completing SUITE PMM methodology.

•  Coordination of Agency Application Changes and Estimates

•  Metrics reporting to MDOS, Project Management Office for MDOS and
SIGMA PMO

•  Project scheduling for MDOS’ SIGMA RPS integration project

•  Tracking issues, risks, and change controls

•  Update ChangePoint

•  Weekly status updates of individual tasks to Program Manager

•  Weekly status updates of Project to Agency Interface Liaison (AILs),
Agency PMO, and SIGMA PCO



*Skills*

*Required*

*Years Used*

*Last Used*

Documented experience in successfully managing Information Technology (IT)
projects (full project lifecycle) whose budget was greater than $1,000,00

*5 Years*





Recent experience in managing financial IT and/or ERP projects (preferably
within a government environment).

*5 Years*





Experience developing and monitoring detailed project schedules using a
tool such as MS Project.

*5 Years*





Demonstrated leadership ability in complex projects involving multiple
vendors and in-house resources within all levels of an organization.

*5 Years*





Agile project management experience.

*3 Years*





PMI Project Management Professional Certification

*1 Years*









Thank You,

Warm Regards,

Mani

Technical Recruiter

HCL Global Systems Inc.

Desk: (248)473-0720 Ext: 157

Email: r...@hclglobal.com

Web: http://www.hclglobal.com



Certified Minority Business Enterprise (MBE)

___


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

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


[android-developers] Urgent Need :: Scrum Master @Eden Prairie, MN

2016-12-13 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: Scrum Master*

*Location: Eden Prairie, MN*

*Duration – 12 Months*



*Role Description *

The Senior Scrum Master is responsible for analyzing the business needs of
the Identity Theft and Breach Notification practice group to support
product development and innovations, including software development efforts
and strategic initiatives.

The position will work with both internal and external customers to elicit,
analyze, communicate and validate business requirements and serve as Scrum
Master for 2-3 different Scrum teams. The successful candidate must be able
to work under minimal supervision.

This individual will need to establish excellent working relationships with
Kroll colleagues and Clients, and be able to collaborate cross-functionally
to ensure business and system requirements align with overall client
strategy.

The complexity, risk, size and visibility of assignments will increase,
commensurate with experience and acquired skills.



*Essential Skills *

Guide the team and organization on how to use Agile/Scrum practices and
values to delight customers.

Coordinate and monitor the Scrum process from initiation through delivery.

Serve as liaisons between the product owner, development team, and
management in order to ensure that all targets and requirements are met.

Ensure that team members understand project objectives.

Facilitate productivity by setting up meetings and removing impediments
that may obstruct the pursuit of the teams sprint goals. Preserve
flexibility and ability to rapidly respond to changes.

Guide the team on self-organizing to fill in the intentional gaps left in
the Agile/Scrum frameworks.

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

Removing impediments or guiding the team



*Desirable Skills *

Bachelor’s degree is preferred although equivalent industry experience will
be considered.

Minimum three-five years as a SCRUM master

Experience operating in an agile environment

Minimum three years business analysis experience in a structured software
development environment. CCBA or CBAP preferred.

Or any equivalent combination of education and experience that demonstrates
the ability to perform the essential functions of this position.

Experience working on agile projects.

Working knowledge of the Business Analysis Experience in Business Process
Model and Notation techniques.

Experience in consumer facing applications, mobile technologies and user
experience design.

Be detail and process oriented and proficient in utilizing computer
systems, with significant experience in Microsoft Office products including
Word, Excel, Access, PowerPoint, and Visio as well as Internet
technologies.

Excellent verbal/interpersonal communication skills are essential.

Excellent written communication skills (the ability to prepare written
business correspondence that is coherent, grammatically correct, effective,
professional and engaging) are essential.







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


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

2016-12-13 Thread rajaacropetal


On Thursday, November 10, 2016 at 3:58:35 AM UTC+5:30, Santosh kumar Nityo 
wrote:
>
> Hi,
>
> Hope you doing Well !!! 
>
>  
>
> Here is our Implementing partner Requirement, Please go through the below 
> requirement and send us suitable consultant with their updated resume, 
> rates and Contact details ..
>
>  
>
> *Role: **Oracle Apps DBA*
>
> *Location: **Juno Beach, FL*
>
> *Work Duration: 6 months *
>
> *Years of Experience: 8+*
>
>
> *Note: We need Photo id and visa copy (H1B) Job Description:*
> • 7+ years of experience in Oracle FMW Admin
> • Build and support all different components of Oracle Fusion Middleware 
> 12c and 11g like BPEL, OSB, BAM, ODI, ADF applications, including the Web 
> Logic App server 
> • Hands-on admin and configuration for multiple Web Logic domains 
> supporting full SDLC for several projects
> • Implement monitoring tools and techniques for Fusion Middleware 
> components, particularly SOA and OSB services
> • Support multiple integration projects in the middleware space, 
> troubleshooting middle-tier issues and assisting developers on 
> infrastructure related issues.
> • Familiar with the product roadmap from Oracle. Support code deployment 
> activities. Typical maintenance triage type activities and supporting 
> developers with environment needs. monitor system health and make 
> performance enhancement recommendations
> • Should have experience in using OEM and BTM for monitoring and taking 
> corrective action
> • Should have a working knowledge of Oracle BPEL and OSB to support the 
> developers with deployment and other environment issues
> Secondary skills (not compulsory) 
>
>  
>
>
>
> *If I'm not available over the phone, best way to reach me in email...*
>
>  
>
>  
>
> [image: cid:image001.jpg@01D0BE16.B9DD7240]
>
>  
>
> Nityo Infotech Corp. 
> 666 Plainsboro Road,  
>
> Suite 1285
>
> Plainsboro, NJ 08536
>
> *Santosh Kumar *
>
> *Technical Recruiter*
>
> Desk No-609-853-0818 Ext-2170
> Fax :   609 799 5746 
>
> kuntal@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/5b549456-29d1-4a79-b078-08f73550a2a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Oracle DBA with AWS needed in Canton, Massachusetts

2016-12-13 Thread rajaacropetal


On Thursday, September 8, 2016 at 6:24:41 PM UTC+5:30, Thiru Moorthy wrote:
>
> 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.*
>
>
>
>
> *Skills : Oracle DBA with AWS Location : Canton, Massachusetts Hourly Rate 
> ($): $50*
>
> Onsite Oracle DBA with AWS Experience 
> Database Administrator Security and Privileges
> Database Administrator Authentication
> Backup and Restore, performance monitoring tuning etc. 
> Hands-on on cloud environment
> Knowledge on Database migration and upgrade
> Cloning database 
> Disaster recovery
> ITIL knowledge with Ticketing tool experience. 
>
>
> Thank you.
>
> *Tiru Moorthy *
>
> One Tiffany Pointe, #106
> Bloomingdale,IL-60108
> Systems Software Solutions Inc. D/b/a 3S USA INC.
> Office *:**630-506-6115*| Fax *630 -246-6624*
>
> t...@3susa.com  | http://www.3susa.com/ | LinkedIn 
> 
>
> *Certified MBE/DBE|FBE|8a (SBA) | Honored to serve US Military*
>
> *It is a must to provide H1 COPY for H1b visa holders for submission.*
>
>  
>
> *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/13f711c9-d93a-4a24-8cf3-140d89408566%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-12-13 Thread rajaacropetal


On Wednesday, October 5, 2016 at 7:14:12 PM UTC+5:30, Santosh kumar Nityo 
wrote:
>
> Hi,
>
> Hope you doing Well !!! 
>
>  
>
> Here is our Implementing partner Requirement, Please go through the below 
> requirement and send us suitable consultant with their updated resume, 
> rates and Contact details ..
>
>  
>
> *Role: **Oracle DBA With Telecom Domain*
>
> *Location: Dallas, TX*
>
> *Work Duration: 6 months *
>
> *Years of Experience: 9+*
>
>
> *Note: We need Photo id and visa copy (H1B) Job Description:*
>
> NOTE : Performance Tuning
>
> Job description:
>
> Good knowledge on Solaris and Linux operating systems and very good with 
> truss, pmap, pfiles, netstat, vmstat, iostat, etc.
>
> Proficient with performance tuning in Oracle database 11g with RAC and 
> Dataguard.
>
> Good understanding of tuning Data warehousing using STAR schemas.
>
> Oracle Apps Proficient with performance tuning and application support for 
> Oracle eBusiness suite R12.
>
> In depth knowledge of Oracle Applications technology stack, including 
> architecture.
>
> Fusion Apps Proficient with performance tuning and application support for 
> Fusion Applications.
>
> In depth knowledge of Fusion Applications technology stack, including 
> architecture.
>
> Good understanding of Oracle internals Blocks, latches, memory structures, 
> locking mechanism, optimizer cost calculations, optimizer rules, stats 
> collections methodologies, etc.
>
> Ability to research and understand the internals of new products.
>
> *Mandatory Skills:*
>
> Following Performance tuning skills are required Extensive experience with 
> tuning applications developed using SQL, PLSQL, Java and SOA Fusion.
>
> Expertise in ASH, AWR. 
>
> In depth understanding of 10046 trace and 10053 traces.
>
> Well versed in SQL Profiles, Oracle Baselines, v tables, xtables, etc. 
>
> In depth knowledge of Fusion Applications technology stack, including 
> architecture.
>
> Domain: Telecom 
>
> *If I'm not available over the phone, best way to reach me in email...*
>
>  
>
>  
>
> [image: cid:image001.jpg@01D0BE16.B9DD7240]
>
>  
>
> Nityo Infotech Corp. 
> 666 Plainsboro Road,  
>
> Suite 1285
>
> Plainsboro, NJ 08536
>
> *Santosh Kumar *
>
> *Technical Recruiter*
>
> Desk No-609-853-0818 Ext-2170
> Fax :   609 799 5746 
>
> kuntal@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/3ef24334-b807-4b39-bf7d-19c2c719a7a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle EBS Consultant with Revenue recognition Exp @ San Francisco, CA

2016-12-13 Thread ANUDEEP
*Title : Oracle EBS Consultant with Revenue recognition Exp *

*Location : San Francisco, CA*

*Duration :12+ Months*



*Required*

8 to 12 years’ experience in following *Oracle EBS* modules:

*Order Management*

*Inventory*

*Accounts Receivables*

TCA

*Revenue* *recognition Process*

Expertise in SQL,PL/SQL and Workflow

Expertise in EBS configuration in the Order Management and Inventory

Must have used Customer, Sales order interface API in multiple projects

Ability to analyses data using SQL or Excel

Very good documentation skills

complete understanding of Software Development Life Cycle and Project
implementation methodology

Experience in working with offshore teams

In addition to your screening, could you also ask the following
questions, and send the questionnaire along with each resume.



*Module*

*Experience in Years*

Order Management

Inventory

Accounts Receivables

Revenue recognition Process

Total years of experience in IT



*Questionnaire*

Number of projects that the candidate has used Process Order API

Number of projects that the candidate have used TCA/Customer Master API

Experience in Inventory Costing

Any experience in Sales force or Sales force Integration

Experience in Analytical tool. If yes, how many reports developed

Knowledge Service Oriented Architecture (SOA).

Visa Status



*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/CAJOb5Ba3Fno0Q%2Bvu%2BQdaVUUxW%2BvRR2RzMy9%2B0-EtsxD-KbzY2Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] J2EE/MEAN Stack developers - Atlanta, GA

2016-12-13 Thread Sekhar Reddy
Hi,

*Sekhar *here from *SPAR INFOSYS*, one of our client has an opening for*
J2EE/MEAN Stack developers*

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



*Job Title   : J2EE/MEAN Stack developers*

*Job Location   : Atlanta, GA*

*Start Date: 8+ months*

*Interview: Telephonic/Skype *



We need multiple, senior *(7 years +) J2EE/MEAN (Mongo, Express, Angular,
Node*) Stack developers for a long term project based in Atlanta. This will
be a phone and Skype to hire with a Skype Technical Interview. Please make
sure your candidates are who they say they are because there is no way to
pass the technical interview by proxy. *Scripting and deployment (CI)
experience are a plus.*



*Must Have:*

•*MEAN Stack*

*Nice to Have:*

•*Ruby*

•*PAAS, IAAS*

•*SAAS*

•*Chef*

•*Restful*

•*PCF or AWS*



*Essential Duties and Responsibilities:  (other duties may be assigned)*

•Primary function is the analysis, design, development, testing,
deployment, and support of new capabilities to enhance the serviceability
of our products.

•Collaborate with business partners at various levels to understand
functional requirements

•Engage and communicate with stakeholders and product team to
clarify cross-functional and cross-domain requirements, and overcome
cross-team obstacles to meet the overall organizational goals

•Create high quality code using agile methodologies and tools.

•Create continuous delivery pipelines

•Create automated tests

•Troubleshooting and root cause analysis for production issues when
escalated

•Participate in code reviews with your teammates and provide
feedback

*Required Qualifications/Skills:*



•5 or more years of experience as a full stack developer.

•Experience working in an Agile or Lean Software Development such
as Kanban, Scrum, Test-Driven Development, and/or Extreme Programming
methodologies.

•Knowledge of any Java MVC framework such as Spring is beneficial.

•Experience with AngularJS, NodeJS, Mongo/PostgeSQL, ExpressJS etc
is desired.

•Experience working in an enterprise-scale SaaS product environment
that is deployed using cloud technologies like OpenStack and Cloud Foundry.

•Deep understanding of contemporary API and architectural concepts
(REST, Microservices, etc.)

•Experience writing web services, business objects, and other
middle-tier frameworks such as Ruby on Rails, Python and Chef etc.

•Software development experience including: OOP, concurrency
programming, design patterns, Service Oriented Architecture, Test-Driven
Development, Acceptance Testing, relational and non-relational database
technologies.



Thanks & Regards,

Sekhar

Email : sek...@sparinfosys.com

[image: Description: Description: Description: Description:
http://sparinfosys.com/assets/images/logo-icon.png]*SPAR INFORMATION
SYSTEMS* 

   (An E-Verify Company)



If you are not interested in receiving our e-mails, please send email with
REMOVE in subject line. We apologize for any 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/CAC%2BeU0u4A06j4BXoNKcXdw2N6EykSZziSvtN1_C1qYVxYogVwg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sr.Micro Services Developer @ Texas

2016-12-13 Thread Vinaay D


Hi , 


Greetings from Vigiboss Inc., Hope all are doing well ..

 

This is David Williams from Vigiboss Inc., please go through the following 
requirement for Sr.Micro Services Developer @ Texas . 


*Role : * Sr.Micro Services Developer 

*Location :* Texas

 

*Description: *

*Mandatory Skills:  *


   -  RESTful Service development for more than 3yrs - preferable with 
   spring cloud & spring boot
   -  Git hands on experience for more than 2 yrs.
   -  Strong Java,J2EE server side programming exp for minimum 5yrs ( Must 
   JPA with strong preferred [ but as secondary JDBC exp is fine ], JMS,J2EE 
   design patterns,collections,XML,XSD schemas, databinding with Jackson/JAXB)
   
 

*Desired Skills : *


   -  PCF - pivotal Cloud Foundry experience
   -  Preferred in-memory DB cache Redis experience
   -  Java,J2EE experience with ORM ( Ex : Hibernate), multi-threading.
   - 
   
 

 

*David Williams*

*Tech.Recruiter ,*

*Vigiboss Inc.*

Email: dwilli...@vigiboss.com

Phone   : 774-277-3300 .

http://www.vigiboss.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/8fc6ca69-68ff-4888-a043-0401b7d01f05%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can a keystore file be changed? Re: [android-developers] keytore file required

2016-12-13 Thread Matthew Nardangeli
Awesome thanks Marina,
I have a feeling it is 2. When I brought that up with the developer, he 
replied by telling me they were looking at changing the keystore so that 
they can hand it to me.

Do you know if that is possible? To be able to change a keystore file?

Thanks again for your help, you put it in words I (as a non developer) can 
understand!

On Tuesday, December 13, 2016 at 3:28:13 PM UTC-5, Marina Cuello wrote:
>
> Yeah, you need the .keystore file and key store password, and I think you 
> need to use also the same key alias and key password but I'm not sure. 
>  
> The keystore file should be property of the publisher of the app. But if 
> you, as hiring company, didn't ask for it by contract, it can be difficult 
> to convince the developer to give it to you. 
>
> It is true that it's a digital signature, but there are only two reasons I 
> can think why they could want to keep it: 
> 1. to have a leverage to ask you for more money 
> 2. they used the same keystore  on all their projects, and they're afraid 
> of the security issues it could rise if you use the same keystore to 
> publish tampered versions of their other apps outside Play Store
>
> In the first case, brace yourself for a nice ride. In the second case, I 
> guess you need to convince the developer that you're not dangerous.
>
> Marina
>
> On Mon, Dec 12, 2016 at 2:00 PM, Matthew Nardangeli  > wrote:
>
>> My company developed an App and published to play store. Account was 
>> transferred from developer to my company account, and has since been 
>> updated by another developer.
>>
>> We are getting ready to publish update, and current developer is wanting 
>> original keystore file so we don't lose all our downloads - is this 
>> needed!? I want current users to get update, not have to download a new 
>> app, and the old developer is seeming reluctant to giving me the file, 
>> because they say the keystore file is a digital signature, and should be 
>> kept with the developer who created it. That doesn't seem correct?
>>
>> Please help!
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to android-developers+unsubscr...@googlegroups.com .
>> To post to this group, send email to android-d...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/android-developers/9b913c4c-62fe-4391-97dd-98ff329f6892%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

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


[android-developers] Wilco Source Open Requirements

2016-12-13 Thread jay


Hi, 


 Please take a look at the requirements file in attachment and 
send me your consultant's, update resume, H1b copy, Photo Id copy, 
highest degree copy at a...@wilcosource.com or reach me on 408-709-1675 and 
fill the below given details.


*Requirement*

*Technology*

*Location*

*EXP*

*Work status*

1

.Net Programmer

Long Island, NY

5+

H1B, GC, USC

2

Senior Java Developer

Brooklyn, NY

8+

H1B, GC, USC

3

Java Architect

Albany, NY

7+

H1B, GC, USC

4

Peoplesoft HRMS functional/ Technical 9.2

Washington DC

9+

H1B, GC, USC

5

Peoplesoft HRMS Lead

Washington DC

9+

H1B, GC, USC

6

Peoplesoft HRMS Developer

Washington DC

9+

H1B, GC, USC


*Must Share Below Details:*


*It’s Mandatory to share H1 copy/GC/USC, Photo ID, Visa Copy, Highest 
degree copy and the details given below*


*Full name:*

*Contact number:*

*Alternate number:*

*Current Employer / Client:*

*  (i)Employer Contact Name:*

*  (ii)Employer Contact no :*

*  (iii)Employer Mail ID: *

*DOB:*

*Hourly rate on C2C:*

*Availability to start:*

*VISA Status:*

*Last 4 digits of SSN#*

*Notice period:*

*Current location (City & State):*

*Willing to relocate:*

*Highest Education? Year completed:*

*E-mail:*

*Alternate Email:*

*Linked link: *

*Availability for interview (Dates & Time):*

*Skype ID for web-cam interview:*

*3 professional Reference's*

*Month & Year Landed in US:*

*Experience in Years:*

*US Experience:*

*Other Experience:*

 

*Please share me your link din profile also*

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


13-dec-16 requirements.docx
Description: MS-Word 2007 document


[android-developers] Dot Net dev CT

2016-12-13 Thread Lisa Ray


Hi

Here is an requirement for one of our client 

Interviews ongoing

As required here id the JD  THESE ARE THE DETAILS WE HAVE

 

Location: Stamford CT

Duration: 6+months C2C

 Role:  Sr. Dot net developer

Exp : 9 +
Eligibility : H1/ GC/ Citizen

 At least 9+years of experience 

F2F Required

Our client is seeking a strong Programmer Analyst with solid ASP.NET 
, Very strong on SQL and C#experience to become an 
integral part of a growing development group.

The qualified candidate should have at least 9+years of experience 
developing applications with MS .NET, C#, .NET framework 4.5 (4.0 is 
acceptable),Json, ASP.NET , HTML, jQuery.

 Please submit suitable resume on l...@techpunditsinc.com

 

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

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


[android-developers] Hiring for Oracle BRM Developer at Atlanta, GA

2016-12-13 Thread USIT Recruiter
*Hi *



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



*Job Title: Oracle BRM Developer*

*Duration: 12+ months*

*Location:**  Atlanta, GA*



*Position Description:*

The BRM Developer will be responsible for Analyzing, designing, developing,
customizing and enhancing the Oracle Billing and Revenue Management (BRM)
application. This role will also be responsible for the hands-on
configuration and administration of BRM including documentation.



*Job Requirement :*

· Client needs analysis, installation, migration, integration, and
the deployment of Oracle BRM.

· Develop business process models and documentation using MS Visio,
Excel and Word.

· System Architecture specializing in Infranet Billing Systems
using best-in-class technologies and practices.

· Experience integrating BRM with Siebel via Oracle AIA.

· Extensive experience in architecting Infranet systems,
implementing and customizing billing Infranet Systems.

· Proficient in custom development in C/C++.

· Knowledge in installing, configuring and tuning Oracle databases.

· Work with internal and external clients in Finance and Billing
Operations as well as end users on day to day issues



*Basic Qualifications:*

· 4-6 years of experience with the implementation of large scale
BRM applications.

· 3+ years of experience integrating BRM with Siebel via Oracle AIA.

· 4-6 years expertise in analysis and development which includes
client needs analysis, installation, migration, integration and deployment
of Oracle BRM

· Excellent understanding of Billing and Financial applications.

· Knowledgeable in installing, configuring and tuning Oracle
databases.











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


Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread Marina Cuello
Perhaps you could use the tool they use in Android Arsenal? It's called
appetize.io
https://appetize.io/
It's not free, but perhaps it suits your needs.

Marina

On Fri, Dec 9, 2016 at 2:30 PM, Benjamin McCay 
wrote:

> Hello everyone,
>
> I'm currently trying to implement some kind of Android emulator or
> platform into my companies website for demos. Now the purpose of that is
> for demos of different touchscreen point of sale systems that operate on
> the Android operating system. Currently we use Genymotion then add the APK
> file to a Nexus 7 emulator to do demos for potential clients, but we want
> to be able to add a button on our website that customers can press such as,
> "Live Demo," and have the demo open up to where they can experience the
> software from the comfort of their home. I have searched everywhere on how
> to do this but there is no information available, and I can understand that
> it might be a new idea, but I need to make it happen today. Any ideas, or
> any directions to point me in? Thank 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/ff3ee57a-a3c1-496b-b228-
> e7041c1b2461%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Direct Client Req : :Software Developer with IBM Data Capture Cincinnati OH Contract/Fulltime

2016-12-13 Thread mike agilees
Hi professional,

This is MIKE MICHON from Agile Enterprise Solutions.

This is in reference to the following position.



* Please find below job description if you feel comfortable please
revert with updated resume, salary compensation and contact details ASAP
*



Tile: Software Developer

Location: Cincinnati OH

Client: Western & Southern

Mode:  Contract /Fulltime



Job Description:

It is in a suburb of Cincinnati (I believe located in Kentucky versus Ohio)
as the city straddles the line.

* IBM® Datacap products offer document capture and high-speed data
extraction* technology for improved document management. They help extract
analytics and accelerate information sharing to expedite caseloads, file
patient claims and improve other document-based processes.



Job description

*Western & Southern* has an immediate opening for experienced Software
developers supporting the Enterprise Transformation Program. In this role,
they will have the opportunity to learn the *IBM Data Capture platform*
while participating in a once in a career opportunity to fundamentally
change a Fortune 500 Company’s critical business processes. We are seeking
developers with 3 or more years of specific experience in the following
technical areas: C#, HTML, XML, DHTML, VBScript, web services (REST, SOAP)
and Visual Studio.  Candidates with IBM Data Capture experience will be
given first consideration.



Thanks & Regards



Mike Michon,

Agile Enterprise Solutions Inc.,

Ensuring Client's Success

Ph: 972-427-1853

Email: *mike_mic...@aesinc.us.com* 

Web: *www.agilees.com* 

Gtalk/YIM:" mikeagilees "

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


Re: [android-developers] Re: RecyclerView with wrap_content height, inside ScrollView is not working in marsmallow and above devices.

2016-12-13 Thread jacqulinewoody via Android Developers


On Tue, 12/13/16, aikennicole492 via Android Developers 
 wrote:

 Subject: Re: [android-developers] Re: RecyclerView with wrap_content height, 
inside ScrollView is not working in marsmallow and above devices.
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 10:40 PM
 
 
 
 On Tue, 12/13/16, Marina Cuello 
 wrote:
 
  Subject: Re: [android-developers] Re: RecyclerView with
 wrap_content height, inside ScrollView is not working in
 marsmallow and above devices.
  To: android-developers@googlegroups.com
  Date: Tuesday, December 13, 2016, 10:30 PM
  
  Thanks for
  posting the answer to your own question! It can help
 people
  on future searchs :)
  Marina
  On Mon, Dec 12, 2016 at
  3:34 AM, Laxman Singh 
  wrote:
  Fixed using   android.support.v4.widget.
  NestedScrollView   instead of Scrollview.
  
  
  On Monday, December 12, 2016 at
  11:05:24 AM UTC+5:30, Laxman Singh wrote:Why RecyclerView
  with wrap_content height, inside ScrollView is not working
  in marsmallow and above devices.
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+
  unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@
  googlegroups.com.
  
  Visit this group at https://groups.google.com/
  group/android-developers.
  
  To view this discussion on the web visit https://groups.google.com/d/
  msgid/android-developers/ 6b34df40-04b0-4114-979d-
  a50ec889b53e%40googlegroups. com.
  
  For more options, visit https://groups.google.com/d/
  optout.
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@googlegroups.com.
  
  Visit this group at
 https://groups.google.com/group/android-developers.
  
  To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/CACaNmX1w%2BrCQ4rcsDys5E2VNW2vChu3uY-6E-6hramKf8xmSgw%40mail.gmail.com.
  
  For more options, visit
 https://groups.google.com/d/optout.
  olitic care prezidase pacea mondiala dupa razboiul incheiat
 in 1918  dar ele au
 
 -- 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 To post to this group, send email to android-developers@googlegroups.com.
 Visit this group at
 https://groups.google.com/group/android-developers.
 To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/1752974665.3356526.1481661609667%40mail.yahoo.com.
 For more options, visit
 https://groups.google.com/d/optout.itatea natiunilor libere in asa chip ca 
dreptatea si libertatea sa fie asigurate pentru toate natiunile

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


Re: [android-developers] Re: RecyclerView with wrap_content height, inside ScrollView is not working in marsmallow and above devices.

2016-12-13 Thread aikennicole492 via Android Developers


On Tue, 12/13/16, Marina Cuello  wrote:

 Subject: Re: [android-developers] Re: RecyclerView with wrap_content height, 
inside ScrollView is not working in marsmallow and above devices.
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 10:30 PM
 
 Thanks for
 posting the answer to your own question! It can help people
 on future searchs :)
 Marina
 On Mon, Dec 12, 2016 at
 3:34 AM, Laxman Singh 
 wrote:
 Fixed using   android.support.v4.widget.
 NestedScrollView   instead of Scrollview.
 
 
 On Monday, December 12, 2016 at
 11:05:24 AM UTC+5:30, Laxman Singh wrote:Why RecyclerView
 with wrap_content height, inside ScrollView is not working
 in marsmallow and above devices.
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+
 unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@
 googlegroups.com.
 
 Visit this group at https://groups.google.com/
 group/android-developers.
 
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/android-developers/ 6b34df40-04b0-4114-979d-
 a50ec889b53e%40googlegroups. com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACaNmX1w%2BrCQ4rcsDys5E2VNW2vChu3uY-6E-6hramKf8xmSgw%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/optout.
 olitic care prezidase pacea mondiala dupa razboiul incheiat in 1918  dar ele au

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


[android-developers] Urgent Need: Java Web Services Developer @ Charlotte, NC | Contract Position

2016-12-13 Thread Ateeq Rehman
Hello Associate,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share resume for  **Java Web Services Developer **at
**ateeq.reh...@diverselynx.com
*


*Max Rate: $45/hr on C2C*

 *Job Description:*

*Job Title: Java Web Services Developer*

*Location: Charlotte, NC*

*Duration: 6 Contract*


*Please submit candidates who have very strong hands on experience on
Drupal or WordPress*

*Key Responsibilities:*

· Core java, Hibernate, Ant build, Spring and MVC framework

· Hands on experience in building SOA Web Services  with both REST
and SOAP end points

· Experience in Middle tier architecture, ESB Layer  development
experience  and active MQ

· Nice to have (Hudson /Jenkin ,Ant build ,  IBM WebSphere or JBOSS
FUSE, Camel and Switchyard Experience )

· Prompt support experience  and able to interact with business





*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/CAN6NZJuQ4w_-Sy84cOx4TGDQUnwtq3XPgk-2JsZ2O%3DMp-e39fw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: RecyclerView with wrap_content height, inside ScrollView is not working in marsmallow and above devices.

2016-12-13 Thread Marina Cuello
Thanks for posting the answer to your own question! It can help people on
future searchs :)

Marina

On Mon, Dec 12, 2016 at 3:34 AM, Laxman Singh 
wrote:

> Fixed using   android.support.v4.widget.NestedScrollView   instead of
> Scrollview.
>
>
> On Monday, December 12, 2016 at 11:05:24 AM UTC+5:30, Laxman Singh wrote:
>>
>> Why RecyclerView with wrap_content height, inside ScrollView is not
>> working in marsmallow and above devices.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/6b34df40-04b0-4114-979d-
> a50ec889b53e%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] keytore file required

2016-12-13 Thread Marina Cuello
Yeah, you need the .keystore file and key store password, and I think you
need to use also the same key alias and key password but I'm not sure.

The keystore file should be property of the publisher of the app. But if
you, as hiring company, didn't ask for it by contract, it can be difficult
to convince the developer to give it to you.

It is true that it's a digital signature, but there are only two reasons I
can think why they could want to keep it:
1. to have a leverage to ask you for more money
2. they used the same keystore  on all their projects, and they're afraid
of the security issues it could rise if you use the same keystore to
publish tampered versions of their other apps outside Play Store

In the first case, brace yourself for a nice ride. In the second case, I
guess you need to convince the developer that you're not dangerous.

Marina

On Mon, Dec 12, 2016 at 2:00 PM, Matthew Nardangeli 
wrote:

> My company developed an App and published to play store. Account was
> transferred from developer to my company account, and has since been
> updated by another developer.
>
> We are getting ready to publish update, and current developer is wanting
> original keystore file so we don't lose all our downloads - is this
> needed!? I want current users to get update, not have to download a new
> app, and the old developer is seeming reluctant to giving me the file,
> because they say the keystore file is a digital signature, and should be
> kept with the developer who created it. That doesn't seem correct?
>
> Please help!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/9b913c4c-62fe-4391-97dd-
> 98ff329f6892%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Urgent Need: SAP Vistex Functional Consultant @ St Paul, MN | Contract Position

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

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



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




*Job Description:*



*Role: SAP Vistex Functional Consultant*

*Location: St Paul, MN*

*Duration: 6 months*


*Hiring: Contract*



*Required Areas:*



   *   4-5 years in SD Pricing & 2 years in Vistex

   -  SAP Vistex Functional Consultant: Design, Implement, test and
   supports SAP Vistex functionality(Bill backs, Customer Rebates and Sales
   Incentives)

Prioritizing, solving, business needs via ticketing system; designing
operational process maps and flows for new or existing functionality with
SAP-Vistex

Gathering functional requirements; performing functional setup and
configurations

Managing creation and revisions of SAP Vistex processes and business
procedures

   -   Preparing detailed systems documentation, test scripts


   -   Knowledge/experience in SD pricing, OTC and Finance areas are a plus

-  Ability to learn new software quickly
-  Ability to work in a fast paced environment and within tight
deadlines
-  Independent thinking with keen problem solving skills
-  Excellent communication and client handling 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*



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


Re: [android-developers] Can't enable DEBUG & VERBOSE for Huawei Android Logcat

2016-12-13 Thread Marina Cuello
Try with
adb shell setprop log.tag.TagYouUseInYourApp DEBUG

Marina

On Tue, Dec 13, 2016 at 1:52 PM, Ashraf Fouad 
wrote:

> I'm having Huawei Nova Plus
>  I just
> found that Huawei only displays in its Android log starting log level INFO.
> Of course I need DEBUG & VERBOSE in my development. I came across this
> link
> 
> which is exactly same screens appear to me and I mark the 3 check at the
> end for "AP Log", "Charge Log", & "Sleep Log" when I reboot my mobile, it
> still behaves the same and only logging is for INFO. I check the project
> menu again, and I found all log level not checked after reboot.
>
> Appreciate help as really affecting my development.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/a2463328-5c16-4419-b60a-
> 58399de6ff69%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Urgent Three Positions::: Pega LSA Consultant::::Java developer with DevOps:::Workday HRMS with Infosys

2016-12-13 Thread SALMA BHAT
Hi Partners,

Please connect with me if you have 90% matching  at

*Naseer Bhat*

Desk : 609-853-0818 Ext: 2184

naseer.ah...@nityo.com




Position: Workday HCM

Work Location & Address* 12301 Research Blvd, Austin, TX 78759, USA

Contract duration (in months)* 6 months (To start with. Will be extended
further)

Target Start Date* 19 Dec 2016





Job Details:



Must Have Skills (Top 3 technical skills only)*

1. Workday

2. HRMS

3. Testing



Nice to have skills (Top 2 only)

1. Automation

2.Other ERP tools



Desired years of experience* : 5+



Education/ Certifications (Required) : BE



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

1. Functional Requirement Analysis

2. Testing and Defect Management

3. Co-ordination with stakeholders

_



Role: Pega LSA Consultant

Location: Phoenix, AZ

Duration: Long Term

Interview: Phone/Skype



Job Description:

Must Have Skills (Top 2 technical skills only)
1.PEGA 7 CSSA
2.Pega Scrum methodology

Nice to have skills (Top 2 only)
1.
Pega DCO

Desired years of experience : > 5 years


Top 3 responsibilities you would expect the subcon to shoulder and execute:
1.Lead the Development team during Inception, Elaboration, development
phases for Design, Development, and Technical support.
2.Code review of both agile teams
3.Guidance to the team on any technical issues
4.Support deployments during FPR
5.Support Pega Architect in defining Technical Architecture
6.Support during Go Live and deployment activities



Position: Java developer

Location :  Minneapolis ,MN

Duration: Log term



Must have : Java 8, Spring, Rabbit MQ, MongoDB, Elastic



Good to have : Kafka, Restful API and SQL

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group 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_wk3XLwi_D8xpk_5N3AQrAcv0XOBEvK18KbOA-BcZTjA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread lailombard via Android Developers


On Tue, 12/13/16, gwendaconrad via Android Developers 
 wrote:

 Subject: Re: [android-developers] ASP.NET Developer || Chicago, IL || Only 
Local for Direct F2F
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 9:05 PM
 
 
 
 On Tue, 12/13/16, sheritagunther via Android Developers
 
 wrote:
 
  Subject: Re: [android-developers] ASP.NET Developer ||
 Chicago, IL || Only Local for Direct F2F
  To: android-developers@googlegroups.com
  Date: Tuesday, December 13, 2016, 8:07 PM
  
  
  
  On Tue, 12/13/16, toneymessina via Android Developers
 
  wrote:
  
   Subject: Re: [android-developers] ASP.NET Developer
 ||
  Chicago, IL || Only Local for Direct F2F
   To: android-developers@googlegroups.com
   Date: Tuesday, December 13, 2016, 7:30 PM
   
   
   
   On Tue, 12/13/16, Sales01 Teamleadway 
   wrote:
   
    Subject: Re: [android-developers] ASP.NET Developer
  ||
   Chicago, IL || Only Local for Direct F2F
    To: android-developers@googlegroups.com
    Date: Tuesday, December 13, 2016, 7:14 PM
    
    Please
    find my consultant profile Mark Su. He is USC and
  local to
    IL 
    On Mon, Dec 12, 2016 at
    11:41 PM, Vishal Ji Awasthi 
    wrote:
    Role: ASP.NET
    Developer
    
    Duration: 3-6 months
    contract
    
    Location: Chicago,
    IL
    
    Interview:
    F2F
    
    Rate: $50/hr on c2c
    (negotiable)
    
     
    
    Crucial to take care
    off Recently out of
    Banking, finance, or
    trading industry. 
    
    4+ years’
    ASP.Net3+ years’
    JavaScriptC# Development
    experienceFront end web development
         experience – HTML 5, Javascript,
   modern Javascript
    Frameworks. Agile
    Experience in a Test Driven
         Development Environment4+ years’
   Agile
    MethodologiesGit Version
    ControlAmazon Web Services ( or other
    cloud
         environments ) Familiar with Capital
    MarketsBachelor’s Degree in Computer
         Science or Equivalent
    Experience
    
    Job Requirements
    
    Maintain high level of proficiency
         in company-directed advanced methods
   and technologies
    for assigned
         applications in order to complete own
   technical
    assignments and to provide
         guidance to others within
    organization.Effectively and efficiently
         communicate systems solutions to
   business problems to
    team members,
         business unit representatives,
   management, and other
    impacted project
         teams.Utilize proven project
   management
         methods to plan, track, and status
   projects.
    Proactively manage
         expectations of all customers and
   management by
    identifying,
         communicating, and mitigating
    risks.Enhance knowledge of financial
         services industryMaintain a high level
   of personal
         productivity and quality and help
   others within the
    team organization and
         company to make
    improvements.Operate with a strong sense of
         urgency, emphasizing action; Rapidly
   resolve issues
    with own and with
         team’s work, plan, and
    direction.
    
     
    
     
    
    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.
    
    
    
    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 

[android-developers] Looking for ull Stack Lead developer for SFO, CA

2016-12-13 Thread Sudhakar Reddy
Hi,

Hope you are doing great,

My Self, Sudhakar from *logic soft**.* We have a requirement for *Full
Stack Lead developer** for **SFO, CA*

Please review the Job description below 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. You can also reach me at *614-884-5544
Ext. 229*, Drop the suitable profiles on sudha...@logicsoftusa.com





*Title: **Full Stack Lead developer*

*Location:** SFO, CA*

*Duration: 6 Months +*



*Technical Skills - In Detail (Essential Skills)*



Experience needs to be 10+ years as this person would be the anchor and
needs to provide guidance as well.
HTML5, CSS, Javascript, jQuery, AngularJS, Bootsrap, NodeJS/NPM,
Grunt/Gulp, Unit testing of UI code, linting, minification, concatination,
etc.
Core Java, J2EE, SOA based Web Services, RESTful Web Services , Hibernate,
Spring,MVC, XSD, XML and WSDL, DB
Experience in Agile (Scrum) software development methodologies

-Strong customer service and solutions orientation
-Strong in design and technical documentation
-Strong analytical skills
-Prior experience of leading teams is a MUST



*Responsibilites - In detail*



-Understand business and functional requirements to be developed.
-Develop UI screens and server side components
-Trouble shoot issues, collaborate in making the systems stable, sound,
perform faster and processing more in automated manner.



*Project Summary*

Development of UI and Server side components







*Thanks and Regards . . . . *



*Sudhakar.Muchumari*

*Logic soft,inc.*

5900, Sawmill Road, Suite 200, Dublin, OH - 43017

WORK:  (614) 884-5544 x 229| FAX:  (614) 884-5540 |

Email: sudha...@logicsoftusa.com | Visit Us: www.logicsoftusa.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/CAGxT0BQmfJRcN6fp_Db024t78iMJT%2B4TvQFU%2BxERVF3aDd9eQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Requirement :: .Net Developer(10+) :: Brentwood,TN(Local) :: Long Term Contract

2016-12-13 Thread Sharad Rajvanshi
Hi

Hope you are doing fine!!
Please share your consultant resume at sree.si...@softnet-consulting.com

*Position:- **.Net Developer(10+)*

*Position Type:-  **Long Term Contract*

*Location:- **Brentwood,TN(Local Only)*



*Must Have - Technical Skills*

1. Strong Hands On Experience in .NET (C#, ASP.NET,VB.NET).

2. Hands On Experience of WCF, WEB API, ActiveX,  MSMQ, Entity Framework.

3. Strong Hands on Experience Oracle.

4. Strong knowledge of T-SQL.

5. Strong Hands on Experience SQL Server.

6. Experience with HTML, JavaScript, CSS, and XML.

7. Strong experience in Debugging and Diagnosis of problem.


 *Nice To Have - Technical Skills*


1. Exposure to Angular JS, JQuery, Knockout.JS or Backbone.JS.

2. Strong Experience on working with Design Patterns and MVC

3. Experience on performing unit testing (using N-Unit and MS-Unit)


 *Other Skills Needed*


1. Good Business English Communication Skills

2. Excellent Articulation/Analytical Skills

3. IT Experience of 3 Years Min. 2 Years of Must Hand On in .Net

4. Must Have Contribute to All Phases of Development Lifecycle.

5. Must have knowledge of AGILE.

6. Ensure Design Are In Compliance with Client and Industry Specifications




*Regards,*


*Sree Singh*

*Softnet Consulting, Inc.*


*sree.si...@softnet-consulting.com *

*Ph: 925-350-6855*

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


[android-developers] Need :: SAP Functional consultant @San Antonio, TX

2016-12-13 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*: SAP Functional consultant

*Location*: San Antonio, TX


*JD:*

This role will involve a full life cycle project implementation of SAP
S/4HANA

The resource will support all phases of the project from Design through
Go-Live and Support.

Process Requirements document prep (includes detailed client requirements,
process overview, process flows, configuration requirements, data
conversion scope, RICEWF, out of scope areas, etc.)

Functional spec prep

System configuration

Configuration doc prep

Unit test & Integration test docs

Support to training curriculum identification

Support to security role definition

Input to data conversion effort

Support for cutover planning efforts

Support integration testing defect remediation

Support UAT (user acceptance testing) Final Prep Phase

Support end user training

Support cutover tasks Go-Live and Support Phase

Resolve system issues for end users

*Experience*

IS-Oil – TSW Experience (Nomination, Stock Projection Worksheet, Master
Data and Configuration)

Hands-on experience in design, configuration, testing the scheduling
end-to-end processes

Knowledge or experience implementing projects in the Oil industry

Experience working with global and diverse teams

Completed at least 3 - 5 full life cycle projects in Oil

ABAP debug experience

Experience with implementing SAP's pre-configured Best Practice solutions

Proficiency using the following project tools: Sharepoint, Word,
PowerPoint, Excel, and Visio



-- 


-- 

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


[android-developers] Hiring for Agile PLM Consultant at Atlanta, GA

2016-12-13 Thread USIT Recruiter
*Hi *



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



*Job Title: Agile PLM Consultant*

*Duration: 6+ months*

*Location:**  Atlanta, GA*



*Position Overview*

8 to 10 years of Agile PLM experience Export control resource Expert in
Agile system installation & administration activities Experience of Agile
upgrade Knowledge of Agile Data migration Agile configuration experience
mandatory Exposure to Agile integration with other enterprise applications



* Must have *

· Agile Prodika PLM







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


[android-developers] F2F Required in CA || Enterprise Data Management Consultant

2016-12-13 Thread Vishal Ji Awasthi
*Job Description:  Enterprise Data Management Consultant*

Client: Healthcare

Location:  Los Angeles, CA

Position Type: Contract for 12 Months+

Interview: Phone and In Person



*Key Responsibilities:*

Responsible for the architecture of the client’s Enterprise Database
platform. Develops practical roadmaps for the Enterprise Data. Defines the
overall core OLAP and OLTP data architecture, including ETL processes,
logical and physical structures and recommends appropriate technologies to
support the implementation of the roadmap.



Works with the Data architects and Database Developers to insure that
logical and physical data models support the analytic needs of the business
and solution architecture. Provides technical and architectural guidance to
projects and teams, ensuring that new initiatives enable effective
management. Works with the SOA Architects and application architects to
ensure that the overall enterprise orchestration vision is being followed.
Creates, educates and drives Master Data Management processes and provides
enterprise oversight to ensure adherence.  The scope of oversight will
include 40+ custom solutions (including MPD & Encounters) as well as the
COTS solutions like QNXT, CCA and SFDC. Collaborates with key business
users to identify needs and opportunities for improved data management and
delivery. Provides expert level technical knowledge and business support to
the architecture and development teams.  Effectively communicates
requirements and solutions.



*Qualifications:*

8+ years of experience with Enterprise Data Management

Education: Bachelor’s required

Area of Studies/Major:  Computer Science Engineering, I.T. or related field

Preferred:  Master's Degree





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


[android-developers] ColdFusion Developer || Linthicum, MD || EAD/GC/USC || Local only

2016-12-13 Thread Vishal Ji Awasthi
Skype Hire .. EAD/GC/USC only.



ColdFusion Developer

3 months+

Linthicum, MD





*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-%3DMxO3mNj1NxGhEzGQCa%2BsBXhuuyGMx4-rePe%3D6iDb-g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for COBOL Programmer at NYC, NY || Need local f2f || USC/GC Only

2016-12-13 Thread USIT Recruiter
*Hi *



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



*Job Title: COBOL Programmer*

*Duration: 6+ months (possible
extension)*

*Location: **NYC, NY*

*Mode of Interview: In person*

*Job Description (Narrative Summary)*

*Requirements:*
- Seasoned COBOL programmer. SME
- Hands on experience in an MVS / mainframe environment, using VSAM files
- Banking, preferably retail, knowledge

*Role to be played in the Engagement:*
The deliverable for this engagement is a documentation framework for an
existing legacy COBOL banking system. The role for this COBOL resource will
be:
- Use the MVS / COBOL test environment that the client has setup for this
project in order to test bits and pieces of the existing code to better
ascertain flow and true functionality of the systems
- Participate in COBOL code walkthroughs with season client COBOL
programmers, also in order to ascertain a program's functionality
- Dig through what has been described as "spaghetti " code in order to
understand flow and dependencies
- Update and compile the code to test and identify root cause of certain
behavior
- Help with both internal (within the COBOL code) and external documentation
- Load data from / to VSAM files
- Be our in-house COBOL SME
- Help train our staff on advanced COBOL







*Thanks & Regards*

*Abhishek Kumar*

*11628 Old Balas Road*

*STE 316, St. Louis, MO-63141*


*Email id: abhis...@cncsinfotech.com 
Web: www.cncsinfotech.com *

*Hangout : usitrecruiter1...@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/CALnpRi0K%3DkzmFvr04XKofUOtyMuQkL%3DW2e-%2B_%3DxqrmgnAoJgmQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need :: Java Developer @ Tampa, FL

2016-12-13 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...



*Rate:* $40-42/hr on C2C

*Note: Need Passport copy/Number*



*Role: Java Developer*

*Location: Tampa, FL*

*Duration – Long Term*



Competencies: Web Services, Hibernate ORM, J2EE EJB 1.x/2.x, Java EE - EJB
3.0/JPA, Spring Framework

Total Experience Required  4-6Years



*Required Skills :*

JAVA/J2EE, Spring Core, Spring ORM/Hibernate, RESTGood to Have:Spring Boot,
Spring Integration, Microservices, Maven, DevOps Tools

EXCELLENT COMMUNICATION Motivated to make their mark







*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/CAHxR9GaMsWascDHkLRWG8Hcn%3DNT0e5q-yQFo_Y%3DRyCgZRBt%2BRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sr. Linux system Admin - Issaquah, WA

2016-12-13 Thread Sekhar Reddy
Hi,

Sekhar here from *Metasis Information’s,* one of our client has an opening
for *Sr. Linux system Admin*

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



*Job Title   : Sr. Linux system Admin *

*Job Location   : Issaquah, WA*

*Start Date: 6-8 Months *

*Interview: Telephonic/Skype *



*Sr. Linux & Puppet Analyst:*

· *9 years* of IT experience to include at least *5 years of Red
Hat Linux* experience in an enterprise environment, of which 2 years must
be on *RHEL 7.x version* *with Puppet configuration management/automation*.

· Red Hat Certified Administrator certification or equivalent.

· Configuration Management Experience on *Puppet*

· Provisioning experience with Red Hat Satellite Server.

· Version control experience (cvs, subversion,git. *GIT preferred*).

· Strong experience with services in Enterprise – Active Directory,
DNS, Apache, Tomcat.

· Strong experience in *Red Hat Linux* clustering.

· Strong understanding of Kerberos, cross-realm authentication and
Kerberized services.

· Proven ability to perform custom RPM builds.

· Implements and maintains enterprise class Linux solutions that
support systems such as ERP (*SAP Preferred*) and WebSphere.

· Out of the box *troubleshooting experience in all layers of the
OSI model* with proven ability to plan, install and integrate software
packages (OEM, OS, etc.).

· Experience with *SAP *is a plus.

· Developing and documenting standard operating procedures and best
practices in a technical repository.

· Proven experience designing, building, and deploying hardened
enterprise Linux environments.

· Proven experience reviewing and comparing multiple platform
options for a given application and collaborating with appropriate teams to
choose the right platform.

· Demonstrated ability in Systems Management and Administration
(applying fixes, loading the OS, creating Gold images, resolving system
issues, working with vendors to resolve issues, etc).

· Proven ability to plan, install and integrate software packages
(OEM, OS, etc.).

· Designs and implements a tool set that simplifies provisioning
and support of a large enterprise Linux environment.

· Collaborates with Enterprise Architecture to design and review
architectural decision documents.

· Strong focus on design, build, deployment, security, system
hardening and securing services.

· Plans and executes major platform software and operating system
upgrades and maintenance across a highly virtualized environment.

· Knowledge of Unix shell scripting.   Exposure to Perl scripting
preferred.

· Creates and maintain detailed up-to-date technical documentation.

· Manages the planning, implementation, and upgrade of OEM packages.

· Proactively manages system resources to assure maximum system
performance and appropriate additional capacity for peak periods and growth.

· Plans, configures and implements features on the Linux platform
that improve availability, response time, and monitoring of key system
metrics.

· Provides support to the user community using incident and problem
management tools, email, and voicemail.

· Serves as a mentor and provides guidance and training to other
team members and I.S. personnel.

· Excellent troubleshooting skills and the ability to logically
think through problem situations.

· Excellent verbal and written communication skills.

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


Re: [android-developers] ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread gwendaconrad via Android Developers


On Tue, 12/13/16, sheritagunther via Android Developers 
 wrote:

 Subject: Re: [android-developers] ASP.NET Developer || Chicago, IL || Only 
Local for Direct F2F
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 8:07 PM
 
 
 
 On Tue, 12/13/16, toneymessina via Android Developers 

 wrote:
 
  Subject: Re: [android-developers] ASP.NET Developer ||
 Chicago, IL || Only Local for Direct F2F
  To: android-developers@googlegroups.com
  Date: Tuesday, December 13, 2016, 7:30 PM
  
  
  
  On Tue, 12/13/16, Sales01 Teamleadway 
  wrote:
  
   Subject: Re: [android-developers] ASP.NET Developer
 ||
  Chicago, IL || Only Local for Direct F2F
   To: android-developers@googlegroups.com
   Date: Tuesday, December 13, 2016, 7:14 PM
   
   Please
   find my consultant profile Mark Su. He is USC and
 local to
   IL 
   On Mon, Dec 12, 2016 at
   11:41 PM, Vishal Ji Awasthi 
   wrote:
   Role: ASP.NET
   Developer
   
   Duration: 3-6 months
   contract
   
   Location: Chicago,
   IL
   
   Interview:
   F2F
   
   Rate: $50/hr on c2c
   (negotiable)
   
    
   
   Crucial to take care
   off Recently out of
   Banking, finance, or
   trading industry. 
   
   4+ years’
   ASP.Net3+ years’
   JavaScriptC# Development
   experienceFront end web development
        experience – HTML 5, Javascript,
  modern Javascript
   Frameworks. Agile
   Experience in a Test Driven
        Development Environment4+ years’
  Agile
   MethodologiesGit Version
   ControlAmazon Web Services ( or other
   cloud
        environments ) Familiar with Capital
   MarketsBachelor’s Degree in Computer
        Science or Equivalent
   Experience
   
   Job Requirements
   
   Maintain high level of proficiency
        in company-directed advanced methods
  and technologies
   for assigned
        applications in order to complete own
  technical
   assignments and to provide
        guidance to others within
   organization.Effectively and efficiently
        communicate systems solutions to
  business problems to
   team members,
        business unit representatives,
  management, and other
   impacted project
        teams.Utilize proven project
  management
        methods to plan, track, and status
  projects.
   Proactively manage
        expectations of all customers and
  management by
   identifying,
        communicating, and mitigating
   risks.Enhance knowledge of financial
        services industryMaintain a high level
  of personal
        productivity and quality and help
  others within the
   team organization and
        company to make
   improvements.Operate with a strong sense of
        urgency, emphasizing action; Rapidly
  resolve issues
   with own and with
        team’s work, plan, and
   direction.
   
    
   
    
   
   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.
   
   
   
   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/ CAJYEZ98HOq8KQwP3xsKN%
   2BZjzgsMwzQPKps0hjC1tS% 2BQWvxFhPg%40mail.gmail.com.
   
   For more options, visit https://groups.google.com/d/
   optout.
   
   
   
   
   
   
   -- 
   
   You received this message because you are subscribed
 to
  the
   Google Groups "Android Developers" group.
   
   To unsubscribe from this group and stop receiving
 emails
   from it, send an email to android-developers+unsubscr...@googlegroups.com.
   
   To post to this group, send 

[android-developers] Diret Client Req - Teradata Developer at Bellevue, WA

2016-12-13 Thread Mohammed Amjad
 *For Immediate consideration reply to moham...@malektron.com
  *

Dear Vendors,

Hope you are doing good. We have an opportunity for you for our client,
Below are the job details. Please go through it once and if interested
respond back with the most updated profile, Contact information and
expected rate to proceed further.

Please revert back with the below requested information along with a latest
copy of your resume.
Full Legal Name (first, middle, last):
Contact Details:
Email ID:
Skype ID:
Work authorization and expiration date:
Current Physical Location (city/state):
Relocation:
Availability :
Expected Rate:

*Position: Teradata Developer*
*Location: Bellevue/ WA*
*Duration: 6 Months - Contract*
*Client: HCL/T-Mobile*


*Description:*
· Design/Develop detail ETL specifications based on business
requirement
· Design and code from specifications, analysis, evaluate, test,
debug, document and implement complex SQL statements
· Comply with coding standards and guidelines as provided by
T-Mobile
· Participate in the effort necessary for following all ETL
standards and architecture
· Create S2TM, data model and related design documents as needed
· Use Teradata utilities fastload, multiload, tpump, and TPT to
load data
· Write BTEQ scripts to transform data
· Write Fastexport scripts to export data
· Write, test and implement Teradata Fastload, Multiload and Bteq
scripts, DML and DDL
· Write views based on user and/or reporting requirements
· Develop Test cases, scenarios and perform manual or automated
testing.


Thanks & Regards,
Mohammad
moham...@malektron.com
Malektron Solution Inc ll www.malektron.com

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


[android-developers] Need :: Sales Force project manager @Piscataway, NJ

2016-12-13 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*: Sales Force project manager

*Location*: Piscataway, NJ


*JD:*

· 7+ years’ experience in IT project management with 3-5+ years
successful experience with Salesforce.com implementation projects

· Solid and detailed understanding of Salesforce functionality,
technology and integrations

· Experienced in HR processes and Portal and Case Management.

· Strong oral and written communication skills

· Manage a large Salesforce implementation/upgrade project or
several smaller Salesforce projects simultaneously

· Work closely with Salesforce architects, technical teams,
functional analysts to deliver project scope on time, on budget and with
high quality deliverables.

· Communicate effectively with clients regarding the Salesforce
project, technology and functionality.

· Use Salesforce experience to develop accurate work estimates,
project budgets and timelines.

· Ensure client satisfaction targets are achieved.

· Exercise required controls and propose improvements as required,
including quality plans, issues and action logs, risk management plans and
change control plans, for all aspects of the assignment.

· Responsible for Statement of Work preparation, purchase orders,
price quotes and other contractual materials as part of scheduling and
deploying resources.

· Lead the delivery team, drive desired professional behaviors and
motivate the team to the highest levels of performance and ensure that team
resources have the best conditions to perform successfully.

· Ensure business and assignment risks are identified, monitored
and managed to achieve minimal disruption to the project delivery and
success.

· Salesforce Administrator certification strongly preferred.




-- 


-- 

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


[android-developers] Data Warehouse Scrum Master in Reston VA !

2016-12-13 Thread Abhishek ojha
*Role: Data Warehouse Scrum MasterLocation:  Reston VADuration: 6-12+
Months Contract*

*Interview Mode: Onsite interview required – 12/20*



Pls do not send me a *BA/Scrum Master*



*Required Skills:*

· 5+ years of proven experience as Scrum Master

· Proven experience applying Agile approach to data
warehousing/data integration (at least 3 years) and business intelligence
(at least 3 years).

· Proven experience transforming teams to Agile/Scrum from
waterfall or other methodologies.

· Excellent communication and Partnership skills

· Hands on experience on Agile practices, Scrum process, Kanban
etc. as an Agile Practitioner/Scrum Master.

· Proven leadership experience in IT delivery, building and
sustaining high performing teams.

· Provide need based coaching to team members to *be* agile and
support agile delivery.


*Thanks & Regards,*

*Abhishek Ojha*

*732- 837- 2138*

*ao...@sagetl.com *

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


[android-developers] JOB ID: 46665: Required:::SAP FICO at Santa Clara

2016-12-13 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.

 

*Title: SAP FICO*

 

*Location: Santa Clara*

 

*Duration: Long term*

 

   - 
   
   FI CO functional analyst (over 6   9 years COPA production support work 
   experience), including 1, 2 full life cycle Implementations,
   - 
   
   Must have application and configuration work experience in FI GL, both 
   Costing based and Account based, CO CCA, Cost Object Controlling and SD 
   Billing  Strong management reporting experience using SAP BI. Should have 
   understanding of functional specs for SAP BI reporting. Must have developed 
   COPA reports and able to identify the requirement and integrate effectively 
   with BW. Should be familiar with COPA info cubes and related BI queries
   - 
   
   Must have designed the data model of COPA (characteristics and value 
   fields)
   - 
   
   Must understand the integration points between CRM/SD/FI/Product costing 
   and COPA
   - 
   
   Understand flows to COPA from different modules, integration points and 
   related configuration Understand Product costing, Service Finance, Project 
   Systems and related business processes.
   - 
   
   Understand the projects business requirements and timelines and have the 
   ability to drive closure of design issues to meet the projects go live  
   - 
   
   The candidate should possess good verbal & written communication skills 
   and be an effective team player in a global company.
   - 
   
   Must have Skill CO-Profitability Accounting 
   
 

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/d6c279ac-c000-4b13-917c-c2ed42b0a57f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Need - Java Consultant with Akka

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

 

 

Title: Java Consultant with Akka
Location: Piscataway, New Jersey
Contract: C2C

Visa: H1B/GC/USC

Role Summary:
Skillset combination is required:

1) "Play Framework with Java Package" + Akka skills


Required:
. Bachelor's Degree in Computer Science, Computer Engineering, or a related
discipline with experience in software design and development
. Experience in developing and designing high performance, scalable, cloud
native, headless, web applications with web frameworks such as Play/w Java
and Angular and concurrency frameworks such as Akka, JAVA Concurrency
package
. Experience with one or more of Play, Java, Angular JS is a must
. Experience with source code control systems such as Git and related
practices
. Familiarity with Agile methods and Continuous Integration including but
not limited to Program and Release Backlog Management (Jira), Defect
Tracking (Jira), Collaboration (Confluence, Jive, others) Test Automation
(JUnit, NUnit, TestNG), Continuous Integration/Deployment (Jenkins, Hudson),
Code Review (Sonar, Findbugs)
. Experience in cloud computing and cloud hosted applications such as Amazon
AWS, EC2 and S3
. Experience in clustered cache is a plus such as Redis, Memcache, Coherence
. Experience in Endeca is a plus or any other search systems is a plus
. Experience in No SQL databases is a plus (e.g. Casandra, Mongo)

 

 

 

 

 

Best Regards,

Mohammad Imran Uddin

Manager Talent Acquisition

IDC Technologies Inc.

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

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

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

URL- .   www.idctechnologies.com

CMM LEVEL 3 Company & ISO 9001-2008 Certified

 

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

 

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


[android-developers] Urgent Need: Windows Patching Admin, Woonsocket, RI / Scottsdale, AZ

2016-12-13 Thread aman tanwar
Share resume on *ama...@nityo.com *






*Positions: Windows Patching Admin Location: Woonsocket, RI / Scottsdale,
AZ Duration: 12+ months Summary: *The Windows administrator should have
experience in working with Different versions Of Windows Server operating
systems. The Windows administrator needs to be a work independently with
various application teams for implementing security and maintenance
compliance on servers. Effective communication with the IS Application
teams is critical to achieving success with this position.

The Windows administrator’s responsibilities will include configuration,
maintenance, support, troubleshooting, issue remediation for GPO, Security
patches and MSB of all production and test Windows servers.  Maintaining
the highest availability of all systems is of utmost priority. Period /
scheduled after hours support of these systems is required.

*Mandatory Skill Required -*
Expert in handling mix mode Windows 2000, Windows 2003, Windows 2008,
Windows 2012 environment from server Administrator perspective.
Strong hands-on experience on security and non-security patch remediation
on large scale of Windows server environment.
Knowledge on Active directory, GPO, Domain users, Administrating users and
groups and given appropriate permissions and privilege to access.
Experience in creating and implementing new GPO for various domains.
Experience in Server hardening, security permissions, User rights
assignments on windows 2003 and windows 2008 servers.
Experience in Active directory in windows 2003 and 2008 servers.
Well understanding about the PCI /SOX PHI compliance concepts.
Expert Knowledge of Security patches installation process on server
environment.
Must have experience in Security patch tools – Blade-logic, Shavlik, WSUS.
Vulnerability management and remediation on Windows servers.
Good Knowledge of third party vendor applications on vulnerabilities such
as Web and JAVA, Adobe applications.
Familiarity with VMware concepts and how they apply to a highly virtualized
environment.


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


[android-developers] Identity & Access Management (IAM) Specialist || Los Angeles, CA (downtown) || EAD/GC/USC

2016-12-13 Thread Vishal Ji Awasthi
*EAD/GC/USC only  No OPT/H1.*



*Job Description:**  Identity & Access Management (IAM) Specialist*
* Location:  Los Angeles, CA (downtown)*

*Position Type:** 6 months Contract or contract-to-hire*







* Key Responsibilities:The Identity & Access Management (IAM)
Specialist is responsible for the overall direction and oversight into the
IAM functions across the organization, including areas such as Federation,
Privileged Access Management, Authentication & Authorization, Security and
Provisioning Identity Data.  The role reports to the DBA Director and will
be responsible for documenting, designing and administering the IAM
infrastructure.  He/She will be providing support to security and develop
appropriate audit controls and procedures to ensure the integrity of
applications. He/She will be working closely with the project managers,
Security and Compliance personnel, application developers and other
administrators in creating functional, scalable and secure applications
from design and development through implementation for business clients.
He/She will also be responsible for identifying, evaluating and
participating in decision making around new and emerging technologies.
Qualifications:   *

*This position will require expert knowledge in Oracle Fusion Middleware,
Oracle Identity & Access Management administration, WebLogic
administration, installation and configuration, performance tuning, backup
and recovery methods in multiple computing environments and must be well
versed in J2EE, Service Oriented Architecture (SOA), Web Services, LDAP,
XML and SAML. This position also requires knowledge of Oracle databases and
should be able to support other areas of functions as needed.*


* High School Diploma, plus training (6 months to 1 year) beyond high
school), Bachelor's degree in Computer Science or related Information
Technology majors, or equivalent experience with systems administration. 7
to 10 years of experience 7+ years of progressive hands on experience in
design, architecture, and administration of Identity and Access Management
solutions using Oracle Identity and Access Management suite or similar
technologies.*





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


[android-developers] Opportunity!! iOS Developer in Cleveland, Ohio

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

iOS Developer
Cleveland, Ohio
6+ Months

*Need EAD, GC, TN or Citizen Only!!*
*Must have: Swift, iOS, AWS, excellent communication.*

Top Skills:
1. Swift
2. iOS app development
3. AWS cloud

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


Re: [android-developers] ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread sheritagunther via Android Developers


On Tue, 12/13/16, toneymessina via Android Developers 
 wrote:

 Subject: Re: [android-developers] ASP.NET Developer || Chicago, IL || Only 
Local for Direct F2F
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 7:30 PM
 
 
 
 On Tue, 12/13/16, Sales01 Teamleadway 
 wrote:
 
  Subject: Re: [android-developers] ASP.NET Developer ||
 Chicago, IL || Only Local for Direct F2F
  To: android-developers@googlegroups.com
  Date: Tuesday, December 13, 2016, 7:14 PM
  
  Please
  find my consultant profile Mark Su. He is USC and local to
  IL 
  On Mon, Dec 12, 2016 at
  11:41 PM, Vishal Ji Awasthi 
  wrote:
  Role: ASP.NET
  Developer
  
  Duration: 3-6 months
  contract
  
  Location: Chicago,
  IL
  
  Interview:
  F2F
  
  Rate: $50/hr on c2c
  (negotiable)
  
   
  
  Crucial to take care
  off Recently out of
  Banking, finance, or
  trading industry. 
  
  4+ years’
  ASP.Net3+ years’
  JavaScriptC# Development
  experienceFront end web development
       experience – HTML 5, Javascript,
 modern Javascript
  Frameworks. Agile
  Experience in a Test Driven
       Development Environment4+ years’
 Agile
  MethodologiesGit Version
  ControlAmazon Web Services ( or other
  cloud
       environments ) Familiar with Capital
  MarketsBachelor’s Degree in Computer
       Science or Equivalent
  Experience
  
  Job Requirements
  
  Maintain high level of proficiency
       in company-directed advanced methods
 and technologies
  for assigned
       applications in order to complete own
 technical
  assignments and to provide
       guidance to others within
  organization.Effectively and efficiently
       communicate systems solutions to
 business problems to
  team members,
       business unit representatives,
 management, and other
  impacted project
       teams.Utilize proven project
 management
       methods to plan, track, and status
 projects.
  Proactively manage
       expectations of all customers and
 management by
  identifying,
       communicating, and mitigating
  risks.Enhance knowledge of financial
       services industryMaintain a high level
 of personal
       productivity and quality and help
 others within the
  team organization and
       company to make
  improvements.Operate with a strong sense of
       urgency, emphasizing action; Rapidly
 resolve issues
  with own and with
       team’s work, plan, and
  direction.
  
   
  
   
  
  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.
  
  
  
  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/ CAJYEZ98HOq8KQwP3xsKN%
  2BZjzgsMwzQPKps0hjC1tS% 2BQWvxFhPg%40mail.gmail.com.
  
  For more options, visit https://groups.google.com/d/
  optout.
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@googlegroups.com.
  
  Visit this group at
 https://groups.google.com/group/android-developers.
  
  To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/CAHB62nJrpMqmmDtGuZUUaNF9XSqtN7TJjKcxVN%3D9_%3DgWb5dV6g%40mail.gmail.com.
  
  For more options, visit
 https://groups.google.com/d/optout.
  ceasta era mica proprietate bazata pe munca  adica
 intinderea de pamant cultivabil potrivita capacitatii de
 munca a plugarului si a familiei sale  lucrata de
 proprietar si familia sa  dar neexcluzand eventualele
 

[android-developers] Salesforce(( Must Have three certification (211) (401) (201) ||| EAD/GC/USC

2016-12-13 Thread Vishal Ji Awasthi
EAD/GC/USC Skype Hire.





***Required certifications: *Salesforce Administrator (201) and Salesforce
Developer Certified (401) and Advanced Administrator (211) Certification*


6 months to hire



Location : Indianapolis, IN









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


[android-developers] Cassandra Administration @ Houston, TX 77073

2016-12-13 Thread amit yadav
Hi,

Hope you are doing great!


* Job Title: IT - Technology Analyst | Big Data - NoSQL | Cassandra
Administration*




*Start/End Dates: 12/19/2016  Work Location: Houston, TX 77073 Contract
duration (in months)   6+ Target Start Date   15 Dec*


Job Details:

Must Have Skills (Top 2 technical skills only)
First line technical support for Informatics application server issues
• Change management administration for system updates and
modifications
• Provide assistance to planning and implementing server upgrades
and new software releases, including communication to end-users
• Steward client application deployments -- ensure end-users are
running client software that is compatible to deployed server versions
• Risk assessment / controls catalog facilitator
• Stewardship of developer software acquisitions and records (i.e.,
SAMP requests)
• Stewardship of Informatics enterprise licenses
• Account management support for Informatics, including
-   Custodian of application access and access review processes
-   Custodian of password and account management applications
• Produce clear, concise technical documentation for knowledge
capture, covering issue resolutions, managed changes, security and
controls, etc.
1.

Nice to have skills (Top 2 only)
1.
Desired years of experience :  Above 4 years

Education/ Certifications (Required) :
•   4 year degree in either a computer related or scientific discipline
(physics, chemistry or biology) with programming or extensive technical
software experience
• Exposure to systems administration
• Knowledge of relational databases
• Experience in development operations in a team environment
• Possess a high degree of attention to detail
• Problem solver (identify solutions, not problems)
• Proficiency in a reasonable number of common programming or
scripting languages
• Demonstrated ability to deliver at or ahead of project deadlines
• Team-focused and highly self-motivated with a desire to explore
new approaches and technology in a fast paced software development group
• Enjoys sharing ideas and collaborating with others to achieve a
common goal
• Works both independently and as a member of a team in development
of creative and scalable solutions.
• Possess excellent written and verbal communication skills for
interaction with business personnel at various levels within multiple
organizations


Top 3 responsibilities you would expect the subcon to shoulder and execute:
• Publication of Experiment Definition files to production servers
• System security report reviewer (e.g., review of  database audit
reports)
• Publication of web applications to Informatics’ production web
servers
• SharePoint site maintenance for Informatics
• Development of utility programs to aid in system configuration
and maintenance activities



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


[android-developers] Urgent Requirement :: UI Developer(10+) :: Newark, NJ(Local Only) :: Long Term Contract

2016-12-13 Thread Sharad Rajvanshi
Hi

Hope you are doing fine!!
Please share your consultant resume at sharad.ya...@contech-it.com

*Position:-**Front End Developer(10+)*

*Position Type:-  **Long Term Contract*

*Location:- **Newark, NJ(Local Only)*

   - BS degree in Computer Science or related technical field, or
   equivalent practical experience.
   - 5 years of front end development experience
   - Experience with incorporating accessibility into prototypes preferred
   - Proficiency in XHTML / HTML5, CSS2, CSS3, Sass, Scss
   - 3 years in AngularJS and Bootstrap frameworks
   - Experience with Object Oriented JavaScript and modern JavaScript
   libraries (e.g., Closure, jQuery and NodeJS)
   - Proficiency in Code editor of choice (Dreamweaver, Sublime, Brackets)
   - Working knowledge of Bower and Grunt
   - Working knowledge of CMS integration (WCM) nice to have
   - Working knowledge of design software (Photoshop, Illustrator,
   Fireworks) preferred
   - Experience in financial services or B2B2C organizations a huge plus
   - A conceptual thinker who can articulate and execute his/her vision
   from concept to production
   - A TECHIE that lives for emerging technologies, and is hungry to keep
   learning
   - An entrepreneurial mindset with the ability to collaborate in a
   corporate environment
   - A TECHIE that lives for emerging technologies, hungry to keep
   learning, and enjoys a laugh!


Thanks
*Regards,*
*Sharad*
sharad.ya...@contech-it.com

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


[android-developers] Mobile Automation Testing with RSA Archer tool @ Austin, TX

2016-12-13 Thread amit yadav
Hi,

Hope you are doing great!





*Job Title*  Mobile Automation Testing Work Location & Address*
12301 Research Blvd, Austin, TX 78759, USA Contract duration (in months)*
3 months Target Start Date*  20-DEC-2016 *Mandatory*

Job Details: Review the demos of existing systems, create requirement
documents, estimate effort, review test design/plans and test cases, ensure
optimum test environment is setup, and coordinate with client and internal
team on status updates WITH the objective of ensuring the highest levels of
service offerings to clients in testing WITHIN the guidelines, policies and
norms of Infosys.

Must Have Skills (Top 3 technical skills only)*
•   3+ years of hand on working experience using RSA Archer tool
•   Good Experience on validating data base using SQL server queries
such as joins etc.
•   Basic knowledge and understanding of Java Script

Nice to have skills (Top 2 only)
•   Basic domain knowledge in Credit Card Domain & Good Analytical
skills
•   Experience of using any other automation tools will be added
advantage such as Ruby / cucumber / VB Scripting
•   Desired years of experience* : At least 4+  years of experience
with Information Technology
•   Education/ Certifications (Required) : Bachelors / Master’s Degree
from an accredited institution.



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


[android-developers] Rate:-$45/hr on C2C _ Mobile Tester

2016-12-13 Thread Manisha Nityo
Hi,

Hope you doing Well !!!

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



*Rate:-$45/hr on C2C*

*Position: Mobile Tester*

*Location : Austin, TX*

*Duration: Long term*

*Interview:- Phone/Skype*



*Description:-*


*Must Have Skills (Top 3 technical skills only)* • *Experience in scripting
and debugging using Java & / JUNIT
• Hands on Experience in using Appium , Native apps iOS and Android
• Experience in Designing Automation frameworks & Should have implemented
one automation project using above tools


* Nice to have skills (Top 2 only) • *Strong experience in SOAPUI and
Automating web-services
• Experience of using any other automation tools will be added advantage
such as Ruby / cucumber / VB Scripting



*Top 3 responsibilities you would expect the subcon to shoulder and
execute*:*
responsible for end to end automation, framework definition, scripting
(creation & review) and debugging, support the project team in delivering
the optimized high quality deliverables.



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


[android-developers] .NET DEVELOPER with Adobe Flex@Atlanta, GA

2016-12-13 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:** .NET DEVELOPER with **Adobe Flex*

*Location: **Atlanta, GA*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Must Have Skills (Top 2 technical skills only)
Adobe Flex, Adobe live cycle, Action scripts

Nice to have skills (Top 2 only)
1. Agile technologies
2. Database



Qualifications Basic
• At least 5 years of development and testing experience with Portal
development using any of the frameworks such as Adobe Flex, Adobe Live
cycle suites.
Preferred
• Experience in developing applications based in Adobe Flex
• Experience in Adobe live cycle enterprise suite
• Experience in developing applications using Action script.
• Experience in Telecom Domain
• At least 5 years of experience in software development life cycle
covering both development and testing activities
• Experience in UI development.



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


Re: [android-developers] ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread toneymessina via Android Developers


On Tue, 12/13/16, Sales01 Teamleadway  wrote:

 Subject: Re: [android-developers] ASP.NET Developer || Chicago, IL || Only 
Local for Direct F2F
 To: android-developers@googlegroups.com
 Date: Tuesday, December 13, 2016, 7:14 PM
 
 Please
 find my consultant profile Mark Su. He is USC and local to
 IL 
 On Mon, Dec 12, 2016 at
 11:41 PM, Vishal Ji Awasthi 
 wrote:
 Role: ASP.NET
 Developer
 
 Duration: 3-6 months
 contract
 
 Location: Chicago,
 IL
 
 Interview:
 F2F
 
 Rate: $50/hr on c2c
 (negotiable)
 
  
 
 Crucial to take care
 off Recently out of
 Banking, finance, or
 trading industry. 
 
 4+ years’
 ASP.Net3+ years’
 JavaScriptC# Development
 experienceFront end web development
  experience – HTML 5, Javascript, modern Javascript
 Frameworks. Agile
 Experience in a Test Driven
  Development Environment4+ years’ Agile
 MethodologiesGit Version
 ControlAmazon Web Services ( or other
 cloud
  environments ) Familiar with Capital
 MarketsBachelor’s Degree in Computer
  Science or Equivalent
 Experience
 
 Job Requirements
 
 Maintain high level of proficiency
  in company-directed advanced methods and technologies
 for assigned
  applications in order to complete own technical
 assignments and to provide
  guidance to others within
 organization.Effectively and efficiently
  communicate systems solutions to business problems to
 team members,
  business unit representatives, management, and other
 impacted project
  teams.Utilize proven project management
  methods to plan, track, and status projects.
 Proactively manage
  expectations of all customers and management by
 identifying,
  communicating, and mitigating
 risks.Enhance knowledge of financial
  services industryMaintain a high level of personal
  productivity and quality and help others within the
 team organization and
  company to make
 improvements.Operate with a strong sense of
  urgency, emphasizing action; Rapidly resolve issues
 with own and with
  team’s work, plan, and
 direction.
 
  
 
  
 
 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.
 
 
 
 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/ CAJYEZ98HOq8KQwP3xsKN%
 2BZjzgsMwzQPKps0hjC1tS% 2BQWvxFhPg%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/
 optout.
 
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHB62nJrpMqmmDtGuZUUaNF9XSqtN7TJjKcxVN%3D9_%3DgWb5dV6g%40mail.gmail.com.
 
 For more options, visit https://groups.google.com/d/optout.
 ceasta era mica proprietate bazata pe munca  adica intinderea de pamant 
cultivabil potrivita capacitatii de munca a plugarului si a familiei sale  
lucrata de proprietar si familia sa  dar neexcluzand eventualele si sporadicile 
concursun'de brate ale semenilor... 

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

[android-developers] Workday HCM Functional Test Lead in , Austin, TX

2016-12-13 Thread SALMA BHAT
Hi Partners,

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


Job Description:Job Title* Technical Test Lead

Work Location & Address* 12301 Research Blvd, Austin, TX 78759, USA

Contract duration (in months)* 6 months (To start with. Will be extended
further)

Target Start Date* 19 Dec 2016

 Job Details:



Must Have Skills (Top 3 technical skills only)*

1. Workday

2. HRMS

3. Testing



Nice to have skills (Top 2 only)

1. Automation

2.Other ERP tools



Desired years of experience* : 5+



Education/ Certifications (Required) : BE



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

1. Functional Requirement Analysis

2. Testing and Defect Management

3. Co-ordination with stakeholders

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


Re: [android-developers] ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread Sales01 Teamleadway
Please find my consultant profile Mark Su. He is USC and local to IL

On Mon, Dec 12, 2016 at 11:41 PM, Vishal Ji Awasthi <
vishaljiawast...@gmail.com> wrote:

> Role: ASP.NET Developer
>
> Duration: 3-6 months contract
>
> Location: Chicago, IL
>
> Interview: F2F
>
> Rate: $50/hr on c2c (negotiable)
>
>
>
> *Crucial to take care off Recently out of Banking, finance, or trading
> industry. *
>
>- 4+ years’ ASP.Net
>- 3+ years’ JavaScript
>- C# Development experience
>- Front end web development experience – HTML 5, Javascript, modern
>Javascript Frameworks.
>- Agile
>- Experience in a Test Driven Development Environment
>- 4+ years’ Agile Methodologies
>- Git Version Control
>- Amazon Web Services ( or other cloud environments )
>- Familiar with Capital Markets
>- Bachelor’s Degree in Computer Science or Equivalent Experience
>
> *Job Requirements*
>
>- Maintain high level of proficiency in company-directed advanced
>methods and technologies for assigned applications in order to complete own
>technical assignments and to provide guidance to others within 
> organization.
>- Effectively and efficiently communicate systems solutions to
>business problems to team members, business unit representatives,
>management, and other impacted project teams.
>- Utilize proven project management methods to plan, track, and status
>projects. Proactively manage expectations of all customers and management
>by identifying, communicating, and mitigating risks.
>- Enhance knowledge of financial services industry
>- Maintain a high level of personal productivity and quality and help
>others within the team organization and company to make improvements.
>- Operate with a strong sense of urgency, emphasizing action; Rapidly
>resolve issues with own and with team’s work, plan, and direction.
>
>
>
>
>
> *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/CAJYEZ98HOq8KQwP3xsKN%2BZjzgsMwzQPKps0hjC1tS%
> 2BQWvxFhPg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Dongbo Mark Su.docx
Description: MS-Word 2007 document


[android-developers] Need :: BI Business Analyst @Philadelphia,PA ::: Only USC/GC

2016-12-13 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*:BI Business Analyst

*Location*: Philadelphia,PA


*JD:*


4+ years of hands on working experience in writing Oracle & T-SQL queries &
performance tuning and SQL Server

3+ years of PL/SQL programming experience.

hands on working experience in Informatica Power Center. Version 8.1 &
above.

Domain knowledge of CPG industry will be helpful.

Hands on knowledge on SSIS is a plus but not mandatory.

-- 


-- 

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


[android-developers] Hiring for Network Engineer at NYC, NY || Need local USC/GC Only

2016-12-13 Thread USIT Recruiter
*Hi *



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



*Job Title: Network Engineer*

*Duration: 6+ months (possible
extension)*

*Location: **NYC, NY*

*Mode of Interview: In person*

*Job Description (Narrative Summary)*

The Technical Engineer, Data Network will serve as a technical resource to
the Network Engineering/Operations team and technical consult to the
Director of the team. The individual is expected to have a thorough working
knowledge of LAN/WAN operations. He/She will be responsible for reacting to
requests from service tickets, service outages, change control, and other
related network projects. He/She must be an expert in the internetworking
field and have strong knowledge of Cisco, Nortel/Avaya, and Foundry/Brocade
switches, routers and load balancers.

The position will be accountable for all technical decisions made in an
effort to bring a solution to a trouble ticket or outage. Other proactive
situations, such as change control requests, require the approval of the
Director and other department heads. The position serves as the primary
technical resource and as such, will be responsible for maintaining the
skill set necessary to be effective. Employee is accountable for all
deadlines set by the Director. Employee is accountable for all projects
assigned to him/her and meeting the deadline set. Employee is responsible
for all decisions, communications, and actions performed


*Responsibilities:*

·  Monitor and respond to any/all network incidents, tickets or service
requests

·  Monitor network through use of logs and various network management
systems

·  Provide first and second level support for the Network Operations team

·  Create and maintain detailed network documentation

·  Comply with all established processes and procedures

·  Must have ability to lift up to 50 lbs.

·  Interface frequently with cross discipline support teams

·  Life cycle management of routers, switches, code, and other network
related equipment in the production network

·  Work with Engineering team to resolve any issues

·  Run data captures/decodes when necessary

·  Structured Cabling, patching and testing utilizing Fluke equipment

·  On-Call participation in 24/7 support with availability in the event of
any escalations



*Skills/Experience Required:*

·  6-8 years total business experience (flexible with yrs exp)

·  3-5 years as a network technician in a large network environment

·  Excellent communication skills (verbal & written)

·  Strong interpersonal skills

·  Must have heavy network "hands on” technical experience (LAN/WAN)

·  Strong background in OSPF and BGP

·  Experience with Nortel/Avaya Networks Ethernet Routing Switches, 8000
series chassis, 5500 and 5600 series stackables

·  Experience with Cisco ASR's, Catalyst 6500 series switches, 2800 series,
3800 series, 2900 series, and 3900 series routers

·  Experience with Cisco Unified Wireless deployments

·  Experience with Site-to-Site VPN's utilizing Cisco ASA's and other Cisco
routing platforms

·  Experience with Foundry/Brocade Server Irons and ADX series load
balancers

·  T1, T3, ATM, Frame-Relay, MPLS

·  Knowledge of structured cable system design and implementations

·  Knowledge of fiber systems utilizing CWDM and DWDM



*Educational Requirements:*

·  Undergraduate Degree or equivalent work experience

·  CCNA or equivalent work experience





*Thanks & Regards*

*Abhishek Kumar*

*11628 Old Balas Road*

*STE 316, St. Louis, MO-63141*


*Email id: abhis...@cncsinfotech.com 
Web: www.cncsinfotech.com *

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


[android-developers] Urgent Need: .Net Tech Lead with good SQL Exp _ San Diego, CA _ 6+ Months

2016-12-13 Thread Shawn Marsh
Hi,

Hope your are Doing Good…!

I have an urgent opening on *.Net Tech Lead with good SQL Exp *Position
with my client. Please send me the resumes with full name, contact details,
Salary, and availability date.

*Requirementdetails:*

*   Title: **.Net Tech Lead with good SQL Exp*

*Location: **San Diego, CA*

*Duration   : 6+ Months*

*Rate   : $50/hr All incl on C2C(No Negotiation)   *



*Immediate opening *

*Need H1B & Passport mandatory for Submission. Please Don’t Share me if you
can’t Provide Passport *



*Primary Skills** : .Net Tech Lead with good SQL Exp*

*Responsibilities:*

  a) Tech Lead with good exposure to .NET (Asp.Net, C#.Net, Web APIs), SQL
development.

  b) overall 9 years of Exp range  mid-size development team (4
members team). *Good onsite/offshore exp in required*

  c) AngularJS Exp is good to have

  d) Good Communication and interpersonal skills

  e) Comfortable working in Agile/Iterative Environment

  f) Good to have Knowledge of the brokerage or financial services industry





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


[android-developers] Can't enable DEBUG & VERBOSE for Huawei Android Logcat

2016-12-13 Thread Ashraf Fouad
I'm having Huawei Nova Plus 
 I just 
found that Huawei only displays in its Android log starting log level INFO. 
Of course I need DEBUG & VERBOSE in my development. I came across this link 

 
which is exactly same screens appear to me and I mark the 3 check at the 
end for "AP Log", "Charge Log", & "Sleep Log" when I reboot my mobile, it 
still behaves the same and only logging is for INFO. I check the project 
menu again, and I found all log level not checked after reboot.

Appreciate help as really affecting my development.

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


[android-developers] NetSuite SuiteCommerce Advanced (SCA) Developer

2016-12-13 Thread annimbuesys


Hi Partners,


I have the below position on c2c. Let me know if you have any matching 
candidate.-bi...@ptechpartners.com 

(binduatptechpartnersdotcom )


*Job Title:* NetSuite SuiteCommerce Advanced (SCA) Developer 
*Primary Skills:* NetSuite, JavaScript, BackboneJS
*Pay Rate:* 55/hr on c2c

*Location:* IL
*Duration:* 1 year (long-term)
*Position Type:* Contract

 

Required skilled are NetSuite Commerce with JavaScript library experience  
to create unique and highly customized websites

Skills required :JavaScript expertise with NetSuite Suite Commerce Advanced 
experience or knows to develop within the NetSuite environment/API.  The 
ideal candidate would have experience with SuiteScript, Suitelets, 
SuiteCloud and SuiteCommerce Advanced. Should know to create new module 
development and extension of Shopping, Checkout, and My Account applications

Your Responsibility :

Estimate and plan custom solutions

Work closely with clients to identify and meet client schedules, budgets 
and Project objectives

Oversee internal and contract programmers 

Program NetSuite Suite Commerce Advance websites 

Program report solutions to track and maximize ecommerce ROI

Program customized ecommerce websites, check out processes and user 
shopping experiences

Plan and meet schedules, budgets and project objectives 

Plan, program or direct programming in the development of four custom 
NetSuite SCA ecommerce websites including shopping, checkout, and my 
account modules 

Plan, program or direct programming for integration with more than 20 
backend proprietary systems

Integrate ecommerce marketing initiatives into ecommerce systems

Consulting and integrating ecommerce marketing initiatives into ecommerce 
systems

 

*Bindu*

312 778 5015

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/6fe0ce6b-0351-4c69-8cf3-64e06652e2a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Developer - Cincinnati, OH

2016-12-13 Thread Qamar Bilal
*bi...@vertexg.com* 

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


Hi  ,



Hope you are doing well today.



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



Quick Response is appreciated.



*Below are the Position Details:*



*Position: .Net Developer*

*Location: Cincinnati, OH*

*Duration: 6 month contract *





 I have multiple roles for greencard or USC 6 month contract to hire .net
candidates – please send  anyone with good comm skills.  Multiple rates so
let me see who you have. Must be on our w2.


*bi...@vertexg.com* 

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















-- 







Regards,

*Bilal Qamar*

Technical Recruiter



*VERTEX CONSULTING INC.*

www.thevertexgroup.com

935 N. Plum Grove Rd, STE # D,

Schaumburg, IL-60173.

*bi...@vertexg.com *

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

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

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



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

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

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


[android-developers] Re: ASP.NET Developer || Chicago, IL || Only Local for Direct F2F

2016-12-13 Thread madhanmano06


On Monday, December 12, 2016 at 1:16:31 PM UTC-5, Vishal Ji Awasthi wrote:
>
> Role: ASP.NET Developer
>
> Duration: 3-6 months contract
>
> Location: Chicago, IL
>
> Interview: F2F
>
> Rate: $50/hr on c2c (negotiable)
>
>  
>
> *Crucial to take care off Recently out of Banking, finance, or trading 
> industry. *
>
>- 4+ years’ ASP.Net 
>- 3+ years’ JavaScript 
>- C# Development experience 
>- Front end web development experience – HTML 5, Javascript, modern 
>Javascript Frameworks. 
>- Agile 
>- Experience in a Test Driven Development Environment 
>- 4+ years’ Agile Methodologies 
>- Git Version Control 
>- Amazon Web Services ( or other cloud environments ) 
>- Familiar with Capital Markets 
>- Bachelor’s Degree in Computer Science or Equivalent Experience 
>
> *Job Requirements*
>
>- Maintain high level of proficiency in company-directed advanced 
>methods and technologies for assigned applications in order to complete 
> own 
>technical assignments and to provide guidance to others within 
> organization. 
>- Effectively and efficiently communicate systems solutions to 
>business problems to team members, business unit representatives, 
>management, and other impacted project teams. 
>- Utilize proven project management methods to plan, track, and status 
>projects. Proactively manage expectations of all customers and management 
>by identifying, communicating, and mitigating risks. 
>- Enhance knowledge of financial services industry 
>- Maintain a high level of personal productivity and quality and help 
>others within the team organization and company to make improvements. 
>- Operate with a strong sense of urgency, emphasizing action; Rapidly 
>resolve issues with own and with team’s work, plan, and direction. 
>
>  
>
>  
>
> *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/4e4079d2-a727-4ce1-9fcd-99a16f623cd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Mahesh_Resume 1.doc
Description: MS-Word document


[android-developers] Immediate Need: Sr Java Developer at Wallingford, CT

2016-12-13 Thread Praneeth Softhq


Hi,

 

Hope You are doing great..!!

 

Here is the Job Description given below, Please go through it and revert it 
with your updated resume and the details.

 

*Note: Visa Copy, DL Copy and LinkedIn ID a must.*

 

*Role: Sr Java Developer*

*Location : Wallingford, CT*

*Duration: 12+ Months*

*Interview Process:* 1st Round Skype + Client Interview - Prefer F2F or 
Skype

 

*Job description:*

· JAVA developer (expertise in angular JS and EXT JS.

· 7-10 year of Development experience in Java.

· Experience working with databases, HTML, CSS, JavaScript.

· Experience using JavaScript libraries like JQuery, Ext JS, and 
Angular JS.

· Experience in Agile methodologies is a plus.

· Experience with REST, SOAP and SOA is a plus.

· Ability to work as a single contributor as well as team player.

· Strong problem solving and analytical skills.

 

*Required Skills:*

· JAVA developer (expertise in angular JS and EXT JS).

· 7-10 year of Development experience in Java.

· Experience working with databases, HTML, CSS, JavaScript.

· Experience using JavaScript libraries like JQuery, Ext JS, and 
Angular JS

 

Thanks & Regards:

Praneeth Metta

SPAR Information Systems

(a E-verify Company)

Fax : 201 528 5301

Email:prane...@sparinfosys.com II Gtalk: mettakspraneethkar...@gmail.com

*URL: **www.sparinfosys.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/2690a43c-c23c-4596-a384-efe765290b2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MongoDB Java Developer@Minneapolis, MN

2016-12-13 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:** MongoDB Java Developer*

*Location: Minneapolis, MN*

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
*Must have :* Java 8, Spring, Rabbit MQ, MongoDB, Elastic



*Good to have :* Kafka, Restful API and SQL




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


[android-developers] URGENT NEED: IAM Developer in Detroit, MI

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

IAM Developer
Detroit, MI
Long term contract

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

Minimum Requirements
•Experience with Enterprise (20,000+ Users) IAM solution integration and
implementation.
•Experience with UNIX, Windows, Linux, web apps, databases, strong
authentication, operating systems and network security protocols and
procedures.
•Knowledge in IAM-related standards such as SAML, WS-Federation,
SOAP,WS-Security, WS-Trust, LDAP, XACML, Open-ID, OAuth and all versions of
ADFS
•Proficiency in data manipulation and extraction techniques
•Excellent collaboration, interpersonal, written and verbal communication
skills
•Strong customer service skills
•Excellent organizational skills and attention to detail
•Ability to work in a dynamic development environment and adjust to
frequently-changing priorities and project plans

Desired Skills (Optional)
•7+ years of Experience with Databases (Oracle, Sybase, MSSQL, MySQL).
•7+ years of Experience with the following programming languages: Java,
BeanShell/JavaScript, JSP/Servlets, SQL.
•7+ years of Experience with the following web technologies: XML,
SPML/SOAP, Web and Application Servers, HTML.
•Experience with Cron job, Shellscript, Version control (SVN)
•Experience with Web application security implementation is a plus
•Experience in application support, troubleshooting, and resolving
user-based application problems
•Familiarity with identity management provisioning systems (Sun, Oracle,
IBM, NetIQ) a plus.
•Knowledge / experience with NetIQ Identity Management
•Knowledge or working experience with ITIL concepts.
•Working knowledge of SuSE Linux.
•Experience in a Health Care Organization
•Knowledge of Security Standards including HIPAA

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


[android-developers] Immediate Need - ABAP Developer

2016-12-13 Thread Mohammad Imran
Hi, I hope you are doing great! Please see the Job below and let me know if
you would like to consider the position.

 

 

Job title: ABAP  Developer
Location: Saginaw, MI

Contract: C2C

Visa: H1B/GC/USC

 

FImodule preferred.

 

*   Hands on Extensive experience in Implementation/Upgrade/Maintenance
Projects for various modules and handled more than 7 implementation Projects
across globe.
*   As ABAP/4 Technical Consultant the Key Responsibilities involved in
Blueprint, Business requirement, Designing Functional and Technical Spec,
Code Development, Unit Testing, Team Lead, Onsite Cordinator and as well as
Project Lead.
*   Experience in all WRICEF components.
*   Expertise in developing complex reports using Classical, ALV, ALV
Methods and Object Oriented ABAP
*   Extensive design and development in Module Pool Program
*   Expertise in developing data transfer technique like DINP, BDC, RFC
and BAPI- BOR.
*   Expertise in designing and developing BADI, User Exits and
Enhancements
*   Experience in designing interface technique ALE, EDI, IDOC's and XI
and exposure to PI
*   Experience in conversion technique LSMW.
*   Experience in design and development of Workflow
*   Proficient in designing and developing SAP Scripts, SMART Forms and
exposure to ADOBE Forms.
*   Extensive experience in Performance tunning technique.
*   Extensive experience in Data Migration and successfully implemented
for 4 Projects.
*   As a techno functional, proficient in SAP Finance - FI/CO, Travel,
AP, AR, AA, Integration, Controling Enterprice Structure, Cost Element
Accounting, Cost Center Accounting and Internal Orders, Fixed Asset
*   Experience in other key SAP Modules SD, MM, PM, PS, CM and HR.
*   Design and Developed the good amount of screen in Webdynpro
applications for SAP Travel Module
*   Experience in Solution Manager.
*   Experience in Creating Views, UI Elements and Contexts for Webdypro
Applications.
*   Transistioning ASP.Net codes to ABAP Webdypro codes.
*   Experience in Business Rule Framework  Plus(BRF+)
*   SAP ABAP Certified Consultant and as well in JAVA.
*   Key implementation are in SAP 4.6c, 4.7 and SAP ECC 6.0

 

 

Best Regards,

Mohammad Imran Uddin

Manager Talent Acquisition

IDC Technologies Inc.

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

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

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

URL- .   www.idctechnologies.com

CMM LEVEL 3 Company & ISO 9001-2008 Certified

 

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

 

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


[android-developers] Immediate Need - Senior level Quantitative Developers

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

 

Title: Senior level Quantitative Developers

Location: NYC

Contract: C2C

Visa: H1B/GC/USC

 

 

Retail Banking is a must! Credit Card/Consumer loans exp

 

 

Must be local candidates . Onsite interviews required.

 

Phone interview first then Onsite interview

 

 

 

. Should be able to create and implement models. Skills could be SAS, R ,
C++ Python.

. CCAR or PPNR domain desired.

 

 

 

 

 

 

Best Regards,

Mohammad Imran Uddin

Manager Talent Acquisition

IDC Technologies Inc.

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

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

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

URL- .   www.idctechnologies.com

CMM LEVEL 3 Company & ISO 9001-2008 Certified

 

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

 

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


[android-developers] Need Local or Nearby Only-----Tech Business Analyst in DC

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

Job Title: Tech Business Analyst
Location:  Washington, DC---*Need Local or Nearby Only!!*
Duration: 12 months+

*Phone & F2F Interview Required!!*

Required Education and Experience:
•Bachelor's degree in computer science, mathematics or related field
preferred(or equivalent experience)
•At least three years of experience in programming or testing
•Experience working with appropriate programming languages – Java, J2EE
Spring Framework, SOAP Web services, JMS is a must
•Intermediate knowledge of presentation languages such as JSP, XML, HTML,
Style Sheets, JavaScript
At-least 3-4 years of experience working with relational databases to
facilitate programming software. Ability to write and interpret complex SQL
Queries
•3+ years of experience with Technology Architecture (Mainframe, Client
Server and Web), Project Planning and Estimating, Systems Analysis and
Assessment; Project Management

Preferred Skills:
•Basic programming skills
•Knowledge of BPM and Workflow systems is an asset
•Good personal computer and business solutions software skills
•Analytical and problem solving skills for design, creation and testing of
programs
•Interpersonal skills to interact with team members.
•Communication skills to work effectively with team members, support
personnel, and clients
•Ability to work independently and as part of a team
•Healthcare and or claims processing intimate expertise


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


[android-developers] Urgent Requirement for Core Java Developer at Jersey City, NJ

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



Hope you are doing  well !!!



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

*REQ Title: Core Java Developer*

*Location: Jersey City, NJ*

*Duration: 9 Months Contract*

Visa:USC/GC/GC EAD


*Skills Required:*

Core Java

Sprint, Struts, Hibernate

Oracle

Ideally Core Java developer with multi-threading is good and banking
experience will be highly desirable.

But we are okay to submit a Core Java resource without banking as well.


-- 

*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%3DgbpBEgXzVj7cU%2B5iM%3D-Fk4pUwrrbVME3CcQBMAi3%2Bin%3D0g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Edifecs Developer ::: Contract Opportunity :::: New York City, NY

2016-12-13 Thread Soumya Sp
*Edifecs Developer*



*Location   NYC , NY*

*Type of hire   Contract/CTH*

*Duration  6+ months (extendable)*



*Rate   $50/hr.*



*Experience Level 6+ yrs.*



*Job Description*



*Required Skills:*



• Minimum 5-6 years of relevant experience in Healthcare EDI,
Edifecs.

• Strong EDIFECS or EDI Transaction Management

• Strong knowledge of both EDIFECS and X12 standards

• XEngine 8.5

• XEServer 8.5

• Specbuilder

• EAM





*Regards,*



*Ranjan*

*Next Level Business Services Inc.*

*Staffing|Consulting|Outsourcing*

*Jacksonville, FL*

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

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

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


[android-developers] Oracle EBS Financial consultant_Richardson, TX@ Need consultants who can provide DL and Work authorization copy

2016-12-13 Thread "N"agarju"N"@iDu
*Please share Your Profiles to **nagarj...@tekskillsinc.com*
 *with a CC to my gmail ID
:**gani.nagarj...@gmail.com
*


*Oracle EBS Financial consultant*

*Location: Richardson, TX*

*Contract duration (in months): 6 months*



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

1. Strong Oracle Apps Functional Financial Consultant – GL

2. Strong in General Ledger GL



*Desired years of experience* :*

More than 5 Education/ Certifications (Required) :

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

1. Lead CFAS module and GL






*Thanks & Regards.*

*Nagarjuna*

*Tekskills Inc.*

*200, MetroplexDrive, Suite 414, Edison, NJ – 08817 |*

*CMMI Level 3 / ISO 9001: 2008/ WMBE Certified Company   *

*Phone: 732-354-4300  |Fax:** 888-543-5125 **| Email:
**nagarj...@tekskillsinc.com
*

*Gmail: **gani.nagarj...@gmail.com *

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


[android-developers] Need :: Business Analyst (Retail) @Richfield, MN ::: Only Local

2016-12-13 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


*Please note we may ask for supporting documents/details to verify
genuineness of resume to avoid any fake submissions to our clients.*

*Valid LinkedIn ID or any online portfolio is highly desirable.*

*Thank you for your support and looking for your continued support*



*Role*:Business Analyst (Retail)

*Location*: Richfield, MN

*Client: *Wipro


*JD:*

Hands on experience in creation requirement specifications (BRD/FRD),
process modeling, data mappings, use cases, use stories etc.

Prior experience in agile project methodologies will be an added advantage

· Great communication and documentation skills.

· Prior experience in Retail domain will be an added advantage.

· Good problem solving skills and analytical skills

· Act as a liaison between the business, developers and project management
groups; facilitate business system design, implementation, integration and
support phases


-- 


-- 

*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_aUSw%3DTkNrf-WTUUTTCk7DSBCPmyrrswmw9%3DdOSvC5_%3DLX-Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Business system Analyst with Ecommerce exp in Dallas, TX !

2016-12-13 Thread Abhishek ojha
*Please Email To : aojha AT sagetL.com*

*Business system Analyst with Ecommerce exp*

*Dallas, TX *

*Contract: 12 months or longer*


Wholesale/B2B

1 – Store fronts – many appliance repair firms are family owned businesses
with 1-10 trucks – they will stop by store and pick up parts as needed

2 – Web site

3 – Warranty service – i.e. consumer purchases extended warranty on washer
and dryer they purchased at Lowe’s.   When broken, consumer calls 1-800 #
on Warranty.   That generates a service dispatch to local repair company.
Local repair company orders replacement parts, which is then tracked back
to Lowe’s.

4 – I believe they also stand-up websites for their clients – to sell parts
under their client’s name.


The qualified candidate will possess a minimum of 3 years of experience as
a Business System Analyst.


*Qualifications:*

The eCommerce Business Analyst will have a demonstrated understanding of
business flows that includes experience with eCommerce, both retail and
wholesale. Candidate will be able to demonstrate with work samples the
ability to diagram processes, draft technical specifications and write
clear documents.  Candidate will have excellent verbal skills and the
ability to engage people at all levels of the organizations. Position
Requirements:

   - Minimum of three years of comparable experience
   - Solid understanding of the business fundamentals and practices in
   e-commerce and the distribution industry.
   - Must be conversant in web technology, EDI, data imports, data exports,
   file transfer including FTP.   They do not need to be an expert in this but
   have fundamental understanding.
   - Excellent communication skills, verbal and written.   Must be able to
   work well with many varied individual from non-technical to very technical.
   - Well-developed analysis, problem solving, and documentation skills
   - Ability to create written process flows using Visio / Swim Lanes,
   etc.  Ability to flow chart business flows.
   - Effective relationship skills, able to work well at all levels in the
   enterprise.
   - Experience with third party partner integration.
   - Proficiency in systems analysis methodologies.
   - Familiarity with Information Builder WebFOCUS a plus.
   - Effective reasoning, analytical, and problem-solving skills
   - Ability to work effectively under deadlines
   - Ability to prioritize work and operate with minimal supervision
   - Proficiency with Microsoft Office suite
   - Some US-based travel may be required.

*Responsible for:*

The eCommerce Business Analyst will assist in the implementation of a new
e-commerce platform for both retail and wholesale.   The Analyst will
identify work processes, streamline processes and document.  This will
include processes within the company and with third party partners.
Partners include big box retailers that provide warranty services for
appliances.   Key areas of responsibility include:

   - Document B2B web traffic.
   - Work with third party partners, end customers, internal IT staff, to
   document integration requirements.  This will include non-technical process
   discussions to very technical discussions around web technology, EDI, data
   imports and exports, file transfer, FTP, etc.
   - Identify and document work processes – Document in detail the
   functional tasks required to execute the business.
   - Process Simplification – Abstract the business functions from the
   method of execution.  Identify and remove nonvalue added steps.
   - Define Use Cases – Define use cases from the process documentation.
   Establish the personas, inputs and outputs for each use case.
   - Create Training Material – With the assistance of staff and
   consultants, apply use cases to create functional training material.





*Thanks & Regards,Abhishek Ojha732- 837- 2138aojhaATsagetl.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/CAKpcopQCydt6E5FvereB35Y5%2BQPJDjf6HrfxqyMzPhagqV4_Yg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Requirement for Java Developer with SOA at Dallas / Irving, TX

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



Hope you are doing  well !!!



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

Java Developer with SOA

Location: Dallas / Irving, TX

Visa : USC/GC Only



*Job Description*
Java Developer with experience in building high-performing, scalable,
enterprise-grade applications, services and API. You will be part of a
talented software team that works on mission-critical applications. You
will be responsible for Java/Java EE applications development while
providing expertise in the full software development lifecycle, from
concept and design to testing.

*Responsibilities*
• Design and develop high-volume, low-latency applications, services and
API for mission-critical system, delivering high-availability and
performance.
• Must be extensive experience in SOA .
• Contribute in all phases of the development lifecycle.
• Write well designed, testable, efficient code.
• Ensure designs are in compliance with specifications.
• Prepare and produce releases of software components.
• Support continuous improvement by investigating alternatives and
technologies and presenting these for architectural review.

*Job Qualifications*

• BS/MS degree in Computer Science, Engineering or a related subject
• Proven hands-on Software Development experience
• Proven working experience in Java development
• Hands on experience in designing and developing applications using Java
EE platforms
• Object Oriented analysis and design using common design patterns.
• Profound insight of Java and JEE internals (Classloading, Memory
Management, Transaction management etc)
• Excellent knowledge of Relational Databases, SQL and ORM technologies
(JPA2, Hibernate)
• Experience in the Spring Framework
• Experience in developing web applications, services and API using
industry best frameworks (JSF, Wicket, GWT, Spring MVC)
• Experience with REST API Design, Swagger
• Experience with and good understanding of SOA principles and concepts
• Experience with test-driven development






-- 

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


[android-developers] Sr. ETL Developer ( with Talent and Web Service experience ) - Charlotte, NC

2016-12-13 Thread Qamar Bilal
*bi...@vertexg.com* 

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


Hi  ,



Hope you are doing well today.



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



Quick Response is appreciated.



*Below are the Position Details:*



*Position: Sr. ETL Developer ( with Talent and Web Service experience )*

*Location: Charlotte, NC*

*Duration: 6 month contract *



***Resource must have experience with Talend***

***Resource needs to be local to Charlotte or surrounding areas***



Sr. ETL Developer is responsible for compilation of business requirements,
analysis, design, build, test, deploy of data integration solutions,
converting business requirements into technical specifications that include
source target mappings, design and architecture. He/she will perform the
end to end tasks associated with establishing the data integration platform
for extracting, transforming, and outputting data to the project
specifications for downstream reporting needs.


* Key Responsibilities:*

- Work with business and gather business requirements related to data
integration

- Analyze, Design, Build, Test, Deploy suitable data extraction solutions (*Web
Service* calls using the Talend Open Studio Tool)

- Provide installation, configuration and support of ETL processes,
programs, environment, etc.

- Derive business logic and provide technical specs to data
integration/reporting team

- Develop data output solutions as required by business for staging/ftp
output

- Educates and provides consultation to teams on ETL best practices, data
standards, industry best practices, and new technologies.

- Where necessary, prepare and maintain data flows and high level STMs

- Establish partnerships with business departments

- Define, measure and publish data and project metrics



*Qualifications*

-  Bachelor’s degree with a focus on computer science or equivalent 5+
years of experience

- 5+ years of experience in ETL Development

- Project experience leveraging Talend Open Studio for Web Service
Integration

-  Must have strong interpersonal and leadership skills and demonstrated
ability to work comfortably independently with all levels within an
organization and across business function

-  Proven track record of delivering complex projects on time and that meet
client requirements

- Data integration experience required

- Additional considerations will be given to candidates with any of the
following in their background:

  Finance and Accounting systems and integration (PAR Brink / IntAcct),

- Written and verbal communication skills

- Problem solving and analytical skills

- Team Player


*bi...@vertexg.com* 

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



















-- 







Regards,

*Bilal Qamar*

Technical Recruiter



*VERTEX CONSULTING INC.*

www.thevertexgroup.com

935 N. Plum Grove Rd, STE # D,

Schaumburg, IL-60173.

*bi...@vertexg.com *

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

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

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



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

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

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


[android-developers] Project Manager/EHR - Ft. Lauderdale ,FL

2016-12-13 Thread Sekhar Reddy
Hi,

*Sekhar *here from *SPAR INFOSYS*, one of our client has an opening for*
Project Manager/EHR*

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



*Job Title   : Project Manager/EHR*

*Job Location   : Ft. Lauderdale ,FL*

*Start Date: 12 + months*

*Interview: Telephonic/Skype *



We are in need of a *Healthcare, Project Manager* with experience rolling
out *EHR software*. They have also indicated that if we have a candidate
that is not a Project Manager but has extensive EHR roll out experience
they would be interested. This is Phone and Skype to hire.



*Description: *

· Manages roll-out process of clinical EHR software
(eClinicalWorks) applications to end users; ensures necessary activities
occur to meet pre-set deadlines per Sheridan Project Manager and Project
Plans

· Functions as primary liaison between the practice, support
departments/teams, and project manager



*Electronic Medical Records projects:*

The skills/experience requirements are as follow:

· At least Eight (8) years of experience in IT project management,
with demonstrated leadership of at least three (3) successful projects that
were delivered on time and on budget.

· At least three (3) years of experience in IT solution design.

· At least two (2) years of experience in estimating costs and
preparing investment justifications.

· At least two (2) years of experience in either drafting or
responding to RFPs for IT solutions that include software and related
services.

· Demonstrated leadership of design of at least three (3) IT
solutions.

· Demonstrated experience at engaging with solution stakeholders
and leading solution design.

· Demonstrated experience preparing written documents and
presentations.

· Master’s degree (preferred) from an accredited college or
university

· Project Management Professional (PMP) certification, or
equivalent.



Thanks & Regards,

Sekhar

Email : *sek...@sparinfosys.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%2BeU0umctXMw-%3DjmoWPpPfP-bukm%2BXx970B0ryWGE1%3DPGhOOQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Required:::Big Data Architect at San Jose, CA

2016-12-13 Thread Priya S
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.



*Title: Big Data Architect*



*Location: San Jose, CA*



*Duration: Long term*



   -

   Strong experience in Big data, Analytics, Hadoop, Modelling experience
   is key (especially Structured Modelling in Hadoop).
   -

   Overall exp should be 7+ years.
   -

   The person need to know Hadoop in and out, Hive and HSQL.
   -

   Modeling of structure data on top of the unstructured data platform.
   Scale the data, data integrations via Talend or other ETLs and ability to
   come up with key metrics definitions etc.
   -

   Need to be very very hands on engineer.



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


[android-developers] Required:::Big Data Architect at San Jose, CA

2016-12-13 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.

 

*Title: Big Data Architect*

 

*Location: San Jose, CA*

 

*Duration: Long term*

 

   - 
   
   Strong experience in Big data, Analytics, Hadoop, Modelling experience 
   is key (especially Structured Modelling in Hadoop).
   - 
   
   Overall exp should be 7+ years.
   - 
   
   The person need to know Hadoop in and out, Hive and HSQL.
   - 
   
   Modeling of structure data on top of the unstructured data platform. 
   Scale the data, data integrations via Talend or other ETLs and ability to 
   come up with key metrics definitions etc.
   - 
   
   Need to be very very hands on engineer.
   
 

 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/54899f4c-d18a-4a0f-905c-25ac96e74e88%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] (NEED USC OR GC) Lead Java Developer @ Richmond, VA

2016-12-13 Thread ANUDEEP
*Title : Lead Java Developer*

*Location : Richmond, VA*

*Duration : 6 Months (Contract to Hire)*





*NEED GC OR USC*

Client looking for people who are amazing Java developers and looking for a
career with a team and family atmosphere.  It's fun to work in a company
where people truly believe in what they're doing. We're committed to
bringing passion and customer focus to the business of electronic payments.
We work hard, and we're serious about what we do. But we like to have a
good time, too. In fact, we run our company with that principle in mind
every day! Do you want to be part of the way we protect electronic payments
in the future?



*Lead Java Developer role - onshore and offshore experience*

This role will help shape the design, development, and support for our core
financial institution integration services.  The nature of these services
require a security-centric approach to design and development.



*Key Responsibilities:*

   - Technical design, development, coding, testing, debugging and
   documentation of applications to meet project requirements
   - Participate in planning sessions with product owner and project
   manager to analyze business requirements and define the proposed technical
   solution
   - Assume a technical lead position for small teams of developers which
   may include offshore resources
   - Provide junior developers in the team with guidance and mentorship
   - Conduct code and unit test review
   - Assign development tasks to junior developers
   - Report project status to project manager periodically

*Required Qualifications:*

   - Excellent verbal, written, and interpersonal communication skills
   - Team leadership and mentoring
   - Java application development 8+ years
   - SOAP and RESTfull web services experience
   - Spring and Hibernate experience
   - RDBMS experience
   - ETL or MVC design experience
   - Java, Spring, and Hibernate
   - Strong background in OOD/OOP design patterns
   - Agile development experience
   - Must be able to pass a background check

*Desired Qualifications:*

   - Experience in financial systems
   - Experience in building web drivers
   - Experience in enterprise ERP or transaction systems

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


[android-developers] HOT LIST OF AVAILABLE CONSULTANTS

2016-12-13 Thread akumar . scrum


*Dear Partner,*

 

*Hope you are doing well.*

 

*Kindly find below hot list of available consultants for C2C positions.*

 

*Please add me ku...@adroitassociates.com to your mailing list for current 
& future requirements.*

 

 

*CANDIDATE NAME*

*SKILLS*

*CURRENT LOCATION*

*RE LOCATION*

*Experience*

*Rakesh*

*OBIEE Developer*

*GA*

*Y*

*8*

*Devprasad*

*Scrum Master/Business ANALYST*

*Arizona*

*Y*

*8*

*Srinivasu*

*Jd Edwards*

*Minnesota*

*Y*

*20*

*Uday*

*.Net Developer*

*Tennessee*

*Y*

*8*

*Ashish*

*Business System  Analyst*

*California*

*Y*

*8*

*Sowjanya*

*Tableau Developer*

*Fremont, CA*

*Y*

*6*

*Mithil*

*Java Developer*

*New Jersey*

*Y*

*8*

*Prithvi*

*PHP Developer*

*ME*

*Y*

*7*

*Teja*

*UI Developer*

*NJ*

*Y*

*8*

*Samar*

*Informatica Developer*

*Texas*

*Y*

*7*

*Ashish*

*Business System Analyst*

*CA*

*Y*

*8*

*Devi Krishna*

*Agile Coach*

*ID*

*Y*

*5*

 

 

 

*Thanks & Regards,*

*Kumar D*

*Adroit Associates Inc*

*Direct: 732 802 7016*

*Phone: 732 516 9600 Ext: 112*

*Fax:610-465-8808*

*email: ku...@adroitassociates.com*

*www.adroitassociates.com*

*Get it right @ ADROIT*

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


[android-developers] SQL Server-Architect @ Springdale, AR

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

*Microsoft SQL Server-Architect*


*Duration: 4 months+*

*Location: Springdale, AR*



*Pre-Qualifying Questions:*



*1.   **Do you have SQL Server Data Mart / Warehouse development
experience: Building tables and views?*

*2.   **Do you have SQL stored procedure development experience in MS
SQL Server?*

*3.   **Do you have SAP BusinessObjects Web Intelligence and Universe
Development experience?*

*4.   **Do you have experience in developing applications in ASP.NET
 and are you familiar with MVC (Model-View-Controller) web
application framework?*

*Skills: *

· *Microsoft SQL Server-* *SQL Development - Stored Procedures,
Data Modeling*

· *Business Objects (SAP)-* *Web Intelligence and Universe Design /
Development*

· *Microsoft Platform-* *ASP.NET  Application
Development, debugging and tuning*

*Requirements:*

Looking for a resource who can come in, analyze a MS SQL Server based BI
application, discuss issues and additional needs of the application,
resolve issues, and implement new functionality as required by the
business.  The core of the application is housed within Microsoft SQL
Server, so MS SQL Server Data Modeling and T-SQL development skills are a
must.  Frontend UI is built on ASP.NET, with forward looking
projection/forecasting logic housed within the web application.  SAP
BusinessObjects Web Intelligence used for reporting.  There is going to be
a need to modify / create Web Intelligence reports as well as modify BOE
Universes.



The person also needs to functionally understand:

· Financial planning, forecasting and analytics

· Capacity planning processes in a manufacturing environment

· Inventory accounting

· Commodity purchasing and accounting processes

· Experience with live animal/feed mill processing is a plus

More of a finance, analytic, planning functions experience would be very
beneficial, as it's easier to apply that knowledge to the specific
requirement.

WebI reports will need to be re-done, but all the reporting logic lives in
the SQL Server.  Just layout modifications.  Reports are very busy, so will
take some work for layouts…



*Deliverables:*

Analyze, fix and enhance existing MS SQL Server BI Application:

Work with the business to identify current application issues and required
enhancements

Analyze identified issues within the ASP.NET Web Application, and MS SQL
Server model / T-SQL Code

Put together a design that will address identified issues as well as the
needed enhancements

Modify ASP.NET Web Application and MS SQL Server backend

Modify Web Intelligence reports to adhere to the required changes

Work with users to test the end-to-end changes

Transition all work to customer resource


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


[android-developers] .Net developer (WPF/WCF) WITH Oil & Gas Domain

2016-12-13 Thread SALMA BHAT
*Hi partners,*

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


*.Net developer (WPF/WCF) WITH **Oil & Gas Domain*

*Location Work Location BHI, Houston Texas -77073*

*Duration: Long term*



*Required/Must Have Skills*



· C#

· MVVM

· Prism

· WPF

· WCF

· SQL Server



*Nice to have Skills*

Oil & Gas Domain

Agile Methodology

MFC

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


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

2016-12-13 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 Developer

Madison, WI

9+

Yes

MJG

Hadoop Developer

Lisle, IL

7+

Yes

SV

Hadoop Admn

Charlotte, NC

7+

Yes

VPP

Salesforce Developer

Santa Clara, CA

9+

Yes

HD

DevOps Engineer

San Ramon, CA

8+

Yes

RA

Selenium Automation Test

Pittsburgh, PA

7+

Yes

HC

.Net Developer

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


[android-developers] .NET DEVELOPER with Share point@Milwaukee, WI

2016-12-13 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:** .NET DEVELOPER with Share Point*

*Location: **Milwaukee, WI *

*Work Duration:** Long Term*

*Note: We need Photo id and visa copy (H1B)*
* Job Description:*
Must Have Skills
1..Net Development (SDLC understanding)
2. SharePoint Development

Nice to have skills (Top 2 only)
1.MS SQL server 2008
2.SSRS


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


[android-developers] Urgent Need: SFDC Veeva Business Analyst @ Princeton, NJ | Contract Position

2016-12-13 Thread Ateeq Rehman
Hello Associate,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share resume for  **SFDC Veeva Business Analyst** at
ateeq.reh...@diverselynx.com *


*Job Description:*

*Role: Salesforce Veeva Business Analyst*
*Location: Princeton, NJ*
*Duration: 6 months, Extendable*

*Hiring: Contract*

*Roles & Responsibilities:*

   - Drive the User Requirements / Functional Requirement Workshops
   - Primary Contact for any Requirements related work
   - Derive, Define the URS and FRs
   - Own the URS, FRS and Traceability Matrix Documents
   - Review and Review the Business Use Cases and the URS and FRS with
   Business
   - Prepare wireframe and Prototype for the identified requirements and
   review the same with the business
   - Participate in Conceptual Design
   - Reviews with IT Technical Team and Business as applicable

 *Minimum Qualification:*

   - Must be Senior Veeva/SFDC BA with experience working on Pharma and CRM
   projects
   - At least 6 years of overall IT experience
   - Experience with Requirement Management
   - Excellent communication skills and ability to conduct business
   requirement clarification sessions with business SME’s.
   - Good practical understanding of force.com technology and its
   application.
   - Ability to lead and manage large design & force.com development
   initiatives in offshoring development model.
   - Works under general supervision with few direct instructions. Provides
   input to project-related decisions.
   - Experience working on Global projects




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


[android-developers] QA with TDM Experience

2016-12-13 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: QA with TDM Experience*

*Location : **Minneapolis, MN*

*Duration: Long term*

*Interview:- Phone/Skype*




*Job Details:- Must Have Skills (Top 2 technical skills only)*
1.Mainframe Testing
2. Unix and SDLC Knowledge
Nice to have skills
1. Automation On UFT



Candidate should have more than 1 year experience in test data management.
Should be able to coordinate with multiple teams and understand their data
requirement and able to explain the data requirement to the offshore team.



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


  1   2   >