[android-developers] Using TransitionDrawable to make a transition with 3 elements

2009-10-28 Thread chaitanya

Hi,
  According to the android documentation of TransitionDrawable we
have 2 use atleast 2 drawables to make the transition work. Also, the
method startTransition(int) states that only the 2nd layer is placed
on top of d 1st layer.
 So, if i have 3 drawables how do i make a transition from the first
drawable resource to the last i.e third one?? I tried using
startTransition(int) and it only makes a transition till the 2nd
drawable resource.

Chaitanya

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



[android-developers] Re: Playing Audio During call so that other person on call can hear it

2012-07-13 Thread Chaitanya
Hi Guys,
 I have been searching for the solution.I have tried all 
possible ways.but still that audio is not hearable to other end even low 
volume also.If any body give the solutions or suggestion I will  pay for 
you.



Thanks,
Chaitanya



On Wednesday, May 26, 2010 1:22:42 AM UTC+5:30, Amit Mangal wrote:
>
> Hi Everyone,
> I want to build an application which will play an audio file when call is 
> connected so that other person on the call can hear this audio file.
> experts please guide me how to do that ?
> Thanks in advance
> Amit 
>

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

Re: [android-developers] Recorded message

2012-07-13 Thread Chaitanya
Even though I am Playing music through speaker phone that music is not 
hearable to other end.:-(..Please give me suggestions to work on that.




Thanks,
Chaitanya.K

On Thursday, November 18, 2010 9:59:28 PM UTC+5:30, albertsmus wrote:
>
> Thnaks a lot
>
> Στις 18 Νοεμβρίου 2010 6:09 μ.μ., ο χρήστης Mark Murphy <
> mmur...@commonsware.com> έγραψε:
>
>> 2010/11/18 ΠΑΣΧΑΛΗΣ ΠΛΙΑΧΑΣ :
>> > Is it possible to play a recorded message when making a phone call. I 
>> mean
>> > to call a contact and when the call is answered to play immediately a
>> > recorded message.
>>
>> Android has no access to the in-call audio stream at this time.
>>
>> If the phone is in speakerphone mode, my understanding is that you can
>> play a media file through the speakers, and that it may get picked up
>> by the microphone and therefore go into the call.
>>
>> --
>> Mark Murphy (a Commons Guy)
>> http://commonsware.com | http://github.com/commonsguy
>> http://commonsware.com/blog | http://twitter.com/commonsguy
>>
>> Warescription: Three Android Books, Plus Updates, One Low Price!
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
>
>

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

[android-developers] How to implement SwitchHoldingandInactive() in android

2012-05-06 Thread Chaitanya
I am developing one application in android..In that i am able to
overriding the incoming call screen but now i want to implement
SwitchHoldingandActive(). If u have any ideas and suggestions please
post it here

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


[android-developers] Android: Streaming audio over Sockets

2010-05-03 Thread Chaitanya
Hi,

For my app, I need to record audio from MIC on an Android phone, and
send it over TCP to the other android phone, where it needs to be
played.

I am using AudioRecord and AudioTrack class. These classes works great
with a local file - write audio to the file using DataOutputStream,
and read from it using DataInputStream.

However, if I obtain the same stream from a socket instead of a File,
and try writing to it, I get an Exception.

I am at a loss to understand what could possibly be going wrong. Any
help would be greatly appreciated.

The problem is same even if I try with larger buffer sizes (65535
bytes, 16 bytes).

This is the code:

Recorder:

int bufferSize = AudioRecord.getMinBufferSize(11025, ,
AudioFormat.CHANNEL_CONFIGURATION_MONO,
AudioFormat.ENCODING_PCM_16BIT);

AudioRecord recordInstance = new
AudioRecord(MediaRecorder.AudioSource.MIC, 11025,
AudioFormat.CHANNEL_CONFIGURATION_MONO,
AudioFormat.ENCODING_PCM_16BIT, bufferSize);

byte[] tempBuffer = new byte[bufferSize];

recordInstance.startRecording();

while (/*isRecording*/) {
  bufferRead = recordInstance.read(tempBuffer, 0, bufferSize);
  dataOutputStreamInstance.write(tempBuffer);
}

The DataOutputStream above is obtained as:

BufferedOutputStream buff = new BufferedOutputStream(out1); //out1 is
the socket's outputStream
DataOutputStream dataOutputStreamInstance = new DataOutputStream
(buff);

Could you please have a look, and let me know what is it that I could
be doing wrong here?

Thanks,

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


[android-developers] Re: UnknownHostException

2010-05-27 Thread chaitanya
Yeh even I tried checking whether their is a problem with my
application, but even then the browser doesn't work. So there might be
an issue with the network

On Apr 25, 6:29 am, ls02  wrote:
> On Apr 24, 3:15 am, Bob Kerns  wrote:
>
> > Things to look at:
>
> > 1) What DNS servers are used by the phones, vs the PC's you're
> > comparing with?
>
> The same DNS server is used by both phones and PC/Macs as they are all
> on the same corporate WiFi network.
>
>
>
> > 2) Do all the DNS servers on the list work equally well?
>
> Again, all clients (PCs/Macs/iTabs/various smarphones and other WiFi
> devices) use the same WiFi network.
>
> > 3) Is the wifi connection flaky? This will often show up as DNS
> > failures, since DNS lookups are typically the first bit of network
> > activity an application does.
>
> I cannot speak for that. I have not heard about complains that people
> cannot access any network resources over WiFi.
>
> > 4) Are the phones sometimes disconnecting from the WiFi network
> > entirely, and going over the phone network instead? This would
> > normally work OK, except be slower, but a DNS lookup in the middle of
> > a switchover might fail.
>
> I don't thow this. We use regular HttpUrlConnection class for all
> network calls on Android. I don't know if there are cases when the
> call goes over 3G network.
>
> One thinbg I wan to stress that killing and then restarting the app
> ussually clears this state and network calls start working again.
>
>
>
>
>
> > On Apr 23, 8:50 am, ls02  wrote:
>
> > > I am not using emulator. I am using real Android phones and many types
> > > of them. The problem happens both in debug mode and in real mode with
> > > phone not connected to computer.
>
> > > On Apr 23, 11:45 am, Kumar Bibek  wrote:
>
> > > > This is an intermittent problem. Restarting the emulator would
> > > > normally solve this. My best guess would be your abd server is not
> > > > functioning properly.
>
> > > > Thanks and Regards,
> > > > Kumar Bibek
>
> > > > On Apr 23, 7:42 pm, Sebastian  wrote:
>
> > > > > I have the same problem. Im running an app in the emulator or on my G1
> > > > > device and sometimes there is an UnknowHostException thrown. But if i
> > > > > check if the host is available (for example over ping) then there is
> > > > > no problem.
>
> > > > > The app is also working correctly, if I close the emular and/or
> > > > > eclipse an restart the app. Then i works well again.
>
> > > > > On 23 Apr., 15:08, ls02  wrote:
>
> > > > > > The app is running on different Android devices and all of them
> > > > > > exhibit this issue. It has nothing to do with network as I said I 
> > > > > > can
> > > > > > successfully excute the same network call on the same network from 
> > > > > > PC
> > > > > > or Mac.
>
> > > > > > On Apr 23, 8:15 am, Kumar Bibek  wrote:
>
> > > > > > > Well, if it happens sometimes, then your network has a problem. 
> > > > > > > When
> > > > > > > it happens, just to make sure that other apps also are affected by
> > > > > > > this, just open some page on the browser. You will be then sure 
> > > > > > > that
> > > > > > > this is not affecting your app only, but the emulator or the 
> > > > > > > network
> > > > > > > has a problem.
>
> > > > > > > Thanks and Regards,
> > > > > > > Kumar Bibek
>
> > > > > > > On Apr 23, 5:07 pm, ls02  wrote:
>
> > > > > > > > From time to time I get java.net.UnknownHostException when 
> > > > > > > > calling
> > > > > > > > HttpURLConnection.connect. Obviously the server does exist and 
> > > > > > > > I can
> > > > > > > > successfully execute the same URL on my PC browser. The problem 
> > > > > > > > does
> > > > > > > > not happen always, only sometimes. But if it does happen 
> > > > > > > > ussually I
> > > > > > > > need to restart the app so that I can connect to server again. I
> > > > > > > > specify host name not IP address, I cannot use IP address.
>
> > > > > > > > --
> > > > > > > > You received this message because you are subscribed to the 
> > > > > > > > Google
> > > > > > > > Groups "Android Developers" group.
> > > > > > > > To post to this group, send email to 
> > > > > > > > android-developers@googlegroups.com
> > > > > > > > To unsubscribe from this group, send email to
> > > > > > > > android-developers+unsubscr...@googlegroups.com
> > > > > > > > For more options, visit this group 
> > > > > > > > athttp://groups.google.com/group/android-developers?hl=en
>
> > > > > > > --
> > > > > > > You received this message because you are subscribed to the Google
> > > > > > > Groups "Android Developers" group.
> > > > > > > To post to this group, send email to 
> > > > > > > android-developers@googlegroups.com
> > > > > > > To unsubscribe from this group, send email to
> > > > > > > android-developers+unsubscr...@googlegroups.com
> > > > > > > For more options, visit this group 
> > > > > > > athttp://groups.google.com/group/android-developers?hl=en
>
> > > > > > --
> > > > > > You received this message b

[android-developers] Problem in programmatically installing a 3rd party App onto the SD card

2010-05-28 Thread chaitanya
Hi Guys,
I am trying to install a 3rd party free app through code. I initially
download the apk from the web-site (androidfreeware.org), store it on
a SD Card. I am using an emulator to check whether my app is working
properly or not. I have attached a SD card to the currently running
avd.

Then when the user clicks on the Install, I use this code to
install it on the SD card.

public void onClick(View arg0) {
// TODO Auto-generated method stub
boolean success;
int result = Settings.Secure.getInt(getContentResolver(),
Settings.Secure.INSTALL_NON_MARKET_APPS, 0);
if (result == 0)
success = 
Settings.Secure.putString(getContentResolver(),

Settings.Secure.INSTALL_NON_MARKET_APPS, "1");
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(downloadFile),
"application/vnd.android.package-archive");
startActivity(intent);
}
I read somewhere that in order to install 3rd party apps we need to
set the value of INSTALL_NON_MARKET_APPS to 1. Do we need to set any
permission in the manifest file. Also, when I checked logcat I got the
following error

 Could not read the AndroidManifest.xml file of /sdcard/test.apk
and then it threw a FileNotFound Exception

What could be the problem ??

  Thanks,



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


[android-developers] Re: Problem in programmatically installing a 3rd party App onto the SD card

2010-05-28 Thread chaitanya
Thanks Mark.
 How exactly am i supposed to go about it? And just a small question.
When the person modifies it via the Settings application he will be
able to install the application. So when I try to install a 3rd party
app into the emulator via the command adb install  , how
does it install correctly? Are the settings modified by the install
command?

Once again Thanks for the help.

On May 28, 8:23 am, Mark Murphy  wrote:
> chaitanya wrote:
> > Hi Guys,
> > I am trying to install a 3rd party free app through code. I initially
> > download the apk from the web-site (androidfreeware.org), store it on
> > a SD Card. I am using an emulator to check whether my app is working
> > properly or not. I have attached a SD card to the currently running
> > avd.
>
> >     Then when the user clicks on the Install, I use this code to
> > install it on the SD card.
>
> > public void onClick(View arg0) {
> >            // TODO Auto-generated method stub
> >            boolean success;
> >            int result = Settings.Secure.getInt(getContentResolver(),
> >                            Settings.Secure.INSTALL_NON_MARKET_APPS, 0);
> >            if (result == 0)
> >                    success = Settings.Secure.putString(getContentResolver(),
> >                                    Settings.Secure.INSTALL_NON_MARKET_APPS, 
> > "1");
> >            Intent intent = new Intent();
> >            intent.setAction(android.content.Intent.ACTION_VIEW);
> >            intent.setDataAndType(Uri.fromFile(downloadFile),
> >                            "application/vnd.android.package-archive");
> >            startActivity(intent);
> >    }
>
> You cannot modify Settings.Secure values from code. Please allow the
> user to change that setting via the Settings application.
>
> > I read somewhere that in order to install 3rd party apps we need to
> > set the value of INSTALL_NON_MARKET_APPS to 1. Do we need to set any
> > permission in the manifest file. Also, when I checked logcat I got the
> > following error
>
> >      Could not read the AndroidManifest.xml file of /sdcard/test.apk
> > and then it threw a FileNotFound Exception
>
> Note that you cannot have the SD card mounted both on your development
> machine and on the device at the same time. If you want to be able to
> access files on the SD card from code, you need to unmount the SD card
> from your development machine.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android Online Training: 21-25 June 2010:http://onlc.com

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


[android-developers] Re: Problem in programmatically installing a 3rd party App onto the SD card

2010-05-28 Thread chaitanya
I got the Application Settings screen to pop up by using

Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_SETTINGS);
startActivity(intent);

It gives you an option whether to install the apps. Then on that
screen you had the option to manage the applications. So, how would
the application be installed? I checked the apk file is present in the
sdcard but it has permissions rwxr-x.
So, in order to install the apk file, do we need to set
permissions in the AndroidManifest file so that the apk is installed
through the code.




On May 28, 11:56 am, Mark Murphy  wrote:
> chaitanya wrote:
> >  How exactly am i supposed to go about it?
>
> What is "it"?
>
> > When the person modifies it via the Settings application he will be
> > able to install the application. So when I try to install a 3rd party
> > app into the emulator via the command adb install  , how
> > does it install correctly?
>
> AFAIK, that has nothing to do with the INSTALL_NON_MARKET_APPS permission.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android Consulting:http://commonsware.com/consulting

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


[android-developers] Re: Problem in programmatically installing a 3rd party App onto the SD card

2010-05-28 Thread chaitanya
Sorry about that the "it" in the previous post meant showing up the
Application Settings screen . I managed to show the Application
Settings screen.

  So, when the user ticks the checkbox which says install from unknown
sources , do we need to fire up the Intent which lets you install the
application onto the SD card?
  I was unsure as to how exactly I am going to handle the
installation of the apk file via code.

Thanks,
   Chaitanya


On May 28, 11:56 am, Mark Murphy  wrote:
> chaitanya wrote:
> >  How exactly am i supposed to go about it?
>
> What is "it"?
>
> > When the person modifies it via the Settings application he will be
> > able to install the application. So when I try to install a 3rd party
> > app into the emulator via the command adb install  , how
> > does it install correctly?
>
> AFAIK, that has nothing to do with the INSTALL_NON_MARKET_APPS permission.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android Consulting:http://commonsware.com/consulting

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


[android-developers] Re: Problem in programmatically installing a 3rd party App onto the SD card

2010-05-28 Thread chaitanya
Thanks Mark. Always good to learn some industry standards. I still am
not able to figure out why the intent cannot find out the
AndroidManifest.xml file in the apk which I am downloading from
androidfreeware.org .
   Aw, if you do have any clue about it let me know or I will dig into
it all night.

Chaitanya

On May 28, 2:13 pm, Mark Murphy  wrote:
> chaitanya wrote:
> >   So, when the user ticks the checkbox which says install from unknown
> > sources , do we need to fire up the Intent which lets you install the
> > application onto the SD card?
> >       I was unsure as to how exactly I am going to handle the
> > installation of the apk file via code.
>
> AFAIK, the Intent you are starting should be fine, though I have not
> installed an APK programmatically and so cannot say for certain. My
> comment was strictly on your attempting to modify secure settings.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android App Developer Books:http://commonsware.com/books

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


[android-developers] Re: EditText is unuseful on widget

2010-05-28 Thread chaitanya
This is because EditText is not supported by the AppWidget framework.
here is a list of Views which you can use in the widget UI

*  AnalogClock
* Button
* Chronometer
* ImageButton
* ImageView
* ProgressBar
* TextView


For more info read this page
 http://developer.android.com/guide/topics/appwidgets/index.html

On May 28, 6:27 pm, Wenqin Li  wrote:
> Dear all,
>      When I making widget with using EditText,DDMS print a exception as
> "class not construction".Once I remove the EditText,the widget work well.I
> couldn't understand why? Can anyone else fix the bug?
> -thanks

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


[android-developers] Re: Sharing SQLite Database between activities

2010-06-25 Thread chaitanya
Well try to create all your tables in the onCreate method of class
that subclasses SQLiteOpenHelper. Then when you call
db.getWriteableDatabase(), if the database is not created, the
onCreate() method gets called for you and then well you do not need to
worry about a null database.

On Jun 25, 3:37 pm, Ramsey Statz  wrote:
> So here's the basic idea of my code.  Each activity that needs access
> to the database has its own instance of the DataHelper class.  I do
> that with this statement:
>
>       final DataHelper dataHelper = new DataHelper(this);
>
> The DataHelper constructor looks like this:
>
>         public DataHelper(Context _context)
>         {
>                 context = _context;
>                 dbHelper = new DBHelper(context);  // dbHelper is an variable
> created outside of the constructor.  DBHelper is a static class
> created within the DataHelper class as a subclass of SQLiteOpenHelper.
>         }
>
> The DataHelper class has necessary instance variables such as an
> SQLiteDatabase (db) and a DBHelper (dbHelper.
>
> Then, in each activity that uses the database, I use the onResume()
> and onPause methods.  The onResume() method has the following
> statement:
>
>          dataHelper.open();
>
> and here's the method for open() as declared in the DataHelper class.
>
>           public DataHelper open() throws SQLException
>           {
>                 db = dbHelper.getWritableDatabase();
>                 return this;
>           }
>
> and then I do this in the onPause() method:
>
>         dataHelper.close();
>
>         public void close()
>         {
>                 db.close();
>         }
>
> That's about all I've got.  Hope it helps you help me.

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


[android-developers] Mapping Multiple textures to a cube in Android OpenGL ES

2010-06-25 Thread chaitanya
Hi,
  I have just began opengl programming in android and i am fairly
new to opengl as well. I've been using nehe's opengl tutorials as well
as insanitydesign's android ports. I successfully managed to create a
cube with a single texture mapped to all its 6 faces. I even mapped
multiple textures to different faces of the cube.
But the way I did it was to create 6 faces seperately, have 6
seperate index and texture buffers and then using glBindTexture() with
the selected texture for each face and then calling glDrawElements.
Isn't there an efficient way around this. Should i use a cube map
texture instead of a GL_TEXTURE_2D?

  Any suggestions would be appreciated?
Thanks

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


[android-developers] Re: Sharing SQLite Database between activities

2010-06-25 Thread chaitanya
Well I just create a private instance of the helper class in every
activity and then I get a database in a local variable using
helper.getWriteableDatabase();
 I think you can probably go to the sqlite prompt in adb using
sqlite3 /data/data//databases/
   try to query the database using select, if it doesn't contain any
data well try to remove the database and try creating it again.

On Jun 25, 4:34 pm, Ramsey Statz  wrote:
> Thanks.  I did that though and I guess the real problem here is that
> my database is not getting transferred from one activity to the next.
> I can insert data into it in one activity (I know for sure that data
> is getting inserted).  But then when I go to read the data from it in
> a different activity (a ListView that is supposed to be populated by
> the data in this database), there is no data in the database for that
> activity.
>
> So, I guess the real question I'm asking is: how do you make sure that
> the data gets transferred/is able to be used in multiple activities?

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


[android-developers] Re: Reading from XML

2010-06-27 Thread chaitanya
How about using the SAXParser ? The SAXParser will throw events for
start of a tag and end of a tag. Plus it is much more faster than a
DOM Parser. For every head element i.e. in your case db have a flag
and store the value in the name tag in either a StringBuilder or a
custom object which contains information about overlays.

On Jun 27, 10:52 am, Michael  wrote:
> Hello, on my app I will be reading in from an XML file thats formatted
> something like this
>
> 
> 
>
> 
> name here
> street here
>  longitude here
>  latitude here 
> 
>
> 
>  new name here 
>  new street here 
>  new longitude here 
>  new latitude here 
> 
>
> 
> 
>
> With this information I need to create Overlay Markers on the map
> (using latitude and longitude) and when they're clicked on I need it
> to display the name with the address. Depending on the conditions of
> where the map is, the number of markers will be different so I need a
> dynamic model for reading in these markers.
>
> If I were to use Document methods like getElementById(String name)
> then I couldn't call getElementById("name") because it would likely
> try to call just the first  or give an unintended result.
>
> Any help on this would be much appreciated!
>
> Michael

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


[android-developers] Re: Mapping Multiple textures to a cube in Android OpenGL ES

2010-06-27 Thread chaitanya
Thanks Robert, So in short you are stating that I use a texture atlas
approach. The second approach is what I used right now, for every face
of the cube construct that side and binding it to the texture which
was really inefficient.
  Well, you have said something about the distortion. I read at nehe's
site that you can use mimaps to upload image of any size which will be
scaled to the best aspect ratio and will minimize the distortion.
Could I use that technique to create the texture atlas? Also, could
you give me some pointers or articles which discuss the creation of a
texture atlas since I'm fairly new at this.

On Jun 26, 12:01 am, Robert Green  wrote:
> No, that's not what cube maps are for.
>
> You can only draw 1 texture at a time (unless multitexturing but
> that's totally different and not what you want) so you have 2 options:
>
> 1)  Combine all textures together into a single one and map the
> coordinates to each side accordingly (will run much faster)
> 2)  Draw side-at-a-time binding to the appropriate texture for each
> side. (not usually the preferred method.)
>
> A trick many of us use when doing something like... say you want to
> have the user pick 6 photos from their SD card and then you want to
> display those on a cube, one on each face.  At some point you must
> load each photo up, clipping and scaling it to fit aspect ratio and a
> power-of-two texture and then uploading it to vram.  Well, instead of
> uploading each one as a separate texture, why not just create a
> 1024x1024 bitmap and draw all 6 photos to it in different spots.  You
> could use 50% of the texture vertically and 33% horizontally (for
> example) to pack 6 photos onto it for 100% usage.  It's ok if they
> distort going on to it so long as you draw them aspect-correct.  You
> then keep track of which one is where (using UVs, so percentages from
> 0 to 1).  Upload that texture atlas as a single texture and when you
> draw your cube, you just bind to that atlas once and draw everything
> in one shot.  It'll run fast and it's not really that hard to do.
>
> On Jun 25, 6:26 pm, chaitanya  wrote:
>
> > Hi,
> >       I have just began opengl programming in android and i am fairly
> > new to opengl as well. I've been using nehe's opengl tutorials as well
> > as insanitydesign's android ports. I successfully managed to create a
> > cube with a single texture mapped to all its 6 faces. I even mapped
> > multiple textures to different faces of the cube.
> >         But the way I did it was to create 6 faces seperately, have 6
> > seperate index and texture buffers and then using glBindTexture() with
> > the selected texture for each face and then calling glDrawElements.
> > Isn't there an efficient way around this. Should i use a cube map
> > texture instead of a GL_TEXTURE_2D?
>
> >   Any suggestions would be appreciated?
> > Thanks

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


[android-developers] Re: Running google map

2010-06-28 Thread chaitanya
No you cannot. You need to use the Google APIs since Google Maps is
not part of the Android API but you need to add it as an external API

On Jun 28, 10:11 pm, amit  wrote:
> Hi all,
>
> I want to use google map in emulator which is created with target
> android 2.0 not with google API (during device creation selected  the
> target android 2.0) , is it possible to run google map on this avd ,
> if yes pls suggest .
>
> Thanks..

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


[android-developers] Spell checker is getting called multiple times in Landscape mode

2012-04-02 Thread krishna chaitanya
Hi,

I am currently working on spell checker in android 4.0. I have created
a new spell checker and added into android. It is working fine. But
when i change the device from portrait to landscape mode, spell
checker is getting called for each and evry word in the editor.

When i change the device from landscape to portrait mode, spell
checker is not getting called even once.

Spell checker is even getting called multiple time when i insert a
word into it.

Can anyone pls tell  why spell checker is getting called so many
times.

Thanks in advance.

Regards,
Krishna Chaitanya.

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


[android-developers] Re: Guide Help:How to trace the internal mechanism of android.Context.java and android.os.Binder.java

2011-08-30 Thread krishna chaitanya
your question is not clear for me.
As far as tracing is concerned u can use Log.d() method.

u can just repeat the query once.

On Aug 30, 10:43 am, AndroidHolder  wrote:
> who can help me,I am really in trouble.
>
> On Aug 29, 9:43 am, AndroidHolder  wrote:
>
>
>
>
>
>
>
> > As far as I know, the base class for android.Context.java and
> > android.os.Binder.java are implemented on Android system OS inside.Now
> > I really want to understand the internal behavior of them.I will
> > appreciate someone can help me to direct me one way to do the trace
> > work,such as how to import all android source code into Eclipse.
> > Many thanks. :)

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


[android-developers] Accessing activity implementing methods in another class

2011-09-05 Thread krishna chaitanya
hi guys,

Basically my
1. Activity is implementing an interface for downloading
2. A thread is called from the activity
3. Download images actually performs how download should take place.

So, my question is how do call the methods in activity. Is it just by
passing the "this pointer" ?

Is it a good programming logic to pass activity's "this" across
different class?

Ur reply wuld really be helpful for me

Krishna

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


[android-developers] App to receive events

2011-09-07 Thread krishna chaitanya
hi all,

I am try for an app which starts a service and it intimates the user
in the form notification about any event taking place as soon as the
service starts.

Its like broadcast receiver, but here the aim is to receive every
event done by the user.
Any ideas wud really be helpful

regards,
Krishna

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


[android-developers] Re: App to receive events

2011-09-07 Thread krishna chaitanya
gr8 to hear from u mark.

I have few questions here. I will put them one by one here:

1. When a service is started (startService()) its mentioned in the
list of services and its just another process. Can other application
make use of it? If yes how?
2. When an app starts a service, is the service the only property of
app or is it free for others ? I think its not. right? If it has to be
free for others it should keep an
intent filter, I guess.
3. Can we have a broadcast receiver to receive any kind of event ?

I am a newbie to android.

regards,
Krishna

On Sep 7, 4:43 pm, Mark Murphy  wrote:
> Fortunately, this is impossible, for obvious privacy and security reasons.
>
> On Wed, Sep 7, 2011 at 7:37 AM, krishna chaitanya
>
>
>
>
>
>
>
>
>
>  wrote:
> > hi all,
>
> > I am try for an app which starts a service and it intimates the user
> > in the form notification about any event taking place as soon as the
> > service starts.
>
> > Its like broadcast receiver, but here the aim is to receive every
> > event done by the user.
> > Any ideas wud really be helpful
>
> > regards,
> > Krishna
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android Training...At Your Office:http://commonsware.com/training

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


[android-developers] getting emulator console using telnet

2011-09-08 Thread krishna chaitanya
hi all,

I am trying to simulate location updates using emulator console using
telnet.

I am using windows vista, and when i am trying to connect to emulator
at port 5554 its showing that telnet is not recognized as internal or
external command.

i am using C:\> telnet localhost emulator 5554

any suggestion please...

regards,
Krishna

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


[android-developers] getting emulator console using telnet

2011-09-08 Thread krishna chaitanya
hi all,

I am trying to simulate location updates using emulator console using
telnet.

I am using windows vista, and when i am trying to connect to emulator
at port 5554 its showing that telnet is not recognized as internal or
external command.

i am using C:\> telnet localhost emulator 5554

any suggestion please...

regards,
Krishna

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


[android-developers] Re: getting emulator console using telnet

2011-09-08 Thread krishna chaitanya
ok sori  guys.

the thing is that by default telnet doesnot work in vista.
so we need to install the telnet client in vista first for this
command to work

Control panel -> programs and features -> Turn windows features on or
off -> select telnet client

installation takes few minutes. u r done ...
It works!

regards,
Krishna


On Sep 9, 10:35 am, krishna chaitanya 
wrote:
> hi all,
>
> I am trying to simulate location updatesusingemulatorconsoleusingtelnet.
>
> I amusingwindows vista, and when i am trying to connect toemulator
> at port 5554 its showing thattelnetis not recognized as internal or
> external command.
>
> i amusingC:\>telnetlocalhostemulator5554
>
> any suggestion please...
>
> regards,
> Krishna

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


[android-developers] can we record a video without displaying the preview.

2011-09-14 Thread krishna chaitanya
hi

I am trying for video recording without displaying the preview. But an
IO exception is coming while i calling prepare().
Is it possible ?

regards,
Krishna

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


[android-developers] can we know the phone no of the device.

2011-09-21 Thread krishna chaitanya
hi all,

I checked with one code like

  String ts = Context.TELEPHONY_SERVICE;

TelephonyManager telephonyManager = (TelephonyManager)
getSystemService(ts);


Toast.makeText(this, "Phone
no:"+telephonyManager.getLine1Number(), Toast.LENGTH_SHORT).show();

its showing the number in the emulator, but when ran on the device its
giving null..

thanks in advance

Krishna.

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


[android-developers] Not able to stream video on emulator

2011-07-12 Thread krishna chaitanya
Hi All,

How to do video streaming in android emulator. Please suggest any way
to stream a video.I have tried but i couldnt succeeded in playing awed
video in the emulator.Following is the code that i have tried:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.main);

mVideoView = (VideoView)this.findViewById(R.id.myVideoView);
mVideoView.setMediaController(new MediaController(this));

mVideoView.setVideoURI(Uri.parse("http://getmediacore.com/
files/tutorial-add-video-in-mediacore.mp4"));

//mVideoView.setVideoURI(Uri.parse("android.resource://
com.android.VideoPlayer/" + R.raw.dkbose));
mVideoView.requestFocus();
mVideoView.start();*/
}



If  i am giving the resource folder path,I am able to see video
playing.But if i give a web address of a video file, it is not playing
at all.It is giving error saying that "Sorry.Cannot play this video".


Also Is their any problem playing a video on emulator?

Thanks,
Krishna Chaitanya

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


[android-developers] How can I write webservices to connect between android app & oracle database or my sql database

2012-10-16 Thread Chaitanya Deshpande
I am developing android app which has lots of database. I want to put it 
commonly on sever (is it possible to deploy only database on server). 

I found on net searches - I have to use web service to connect database. 
but how I can use it.

please help me, how can I use the database. 

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

[android-developers] Re: How can I write webservices to connect between android app & oracle database or my sql database

2012-10-16 Thread Chaitanya Deshpande


On Tuesday, 16 October 2012 19:33:54 UTC+5:30, Chaitanya Deshpande wrote:
>
> I am developing android app which has lots of database. I want to put it 
> commonly on sever (is it possible to deploy only database on server). 
>
> I found on net searches - I have to use web service to connect database. 
> but how I can use it.
>
> please help me, how can I use the database. 
>
>

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

[android-developers] Release Manager in St, Louis, MO

2019-11-05 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Title: Release Manager*

*Location: St Louis, MO*

*Duration: 12 Months +*



Please share profiles to c...@oqpoint.com


*Role and Responsibilities*

· Forward Plan the release windows and cycles across a portfolio

· Manage *risks*

and
resolves issues that affect release scope, schedule and quality

· Measure and monitor progress to ensure application releases are
delivered on time and within budget, and that they meet or exceed
expectations

· Coordinate release content and effort based on the service
request backlog, pending service requests, third party applications, or
operating system updates

· Communicate all key project plans, commitments, and changes
including requirements, QA plans, schedule, and scope changes

· Manage relationships and coordinate work between different teams
at different locations

· Conduct Release Readiness reviews, Milestone Reviews, and
Business Go/No-Go reviews

· Produce Deployment, Run Books and Implementation Plans

· Weekly Release Reporting

· Communicate release details and schedules to the Business as
required

· Negotiate, plan and manage all release activities

· Work with release engineers to understand impacts of branches and
code merges

· Maintains the release schedule for all core services and ensure
alignment across key partners and vendors.

· Continually work towards making improvements in the release
process

· Lead and co-ordinate the Go-Live activities including the
execution of the deployment Plans and checklists.

· Develops scripts and automation tools used to build, integrate,
and deploy software releases to various platforms

· Participate in *CAB*
 meetings to discuss
release scope and/or roadblocks

· Maintains a release repository and manages key information such
as build and release procedures, dependencies, and notification list
  *Qualifications:*

· Bachelor’s degree in Computer Science or related field

· 2-6 years of previous release and/or project management
experience, (Solid understanding of project management principles preferred)

· 8-10 years of experience in information systems operations
environment in systems analysis or development

· Formal training in project management practices preferred

· Advanced knowledge of software development lifecycle

· Demonstrated ability to coordinate cross-functional work teams
toward task completion

· Demonstrated effective leadership and analytical skills

· Advanced written and verbal communication skills are a must

 Regards

*Chaitu | Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Data Architect in SFO, CA or BOSTON, MA

2019-11-14 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title: Data Architect*

*Location: SFO, CA or BOSTON, MA*

*Duration: 12 months+*



*Required skills:*



*Experience & Education*

· Master’s degree in Computer Science or related degree preferred

· 10 + years of experience delivering enterprise solutions to
financial services organizations as a hands-on engineer developing complex
systems architecture



*Professional Skills/Competency*

· Experience with *Foreign Exchange Upgrade or Implementation
Program  (FX Domain Experience preferred)*

· Working experience on Data Architecture

· Working experience with APIs (Open Shift Containers, Micro
services, Kubernetes preferred). Exposure to Apigee gateways.

· Working experience on System and Data Integrations – Batch and
Real-Time Integration.

· Working experience on Messaging Service (Kafka Topics Preferred)

· Experience in SSO Setup, Knowledge on SAML2.0, OAuth2.0 protocols

· Knowledge on SWIFT protocols and MT message types.

· Knowledge on OFAC Screening, Fraud Detection and Pattern analysis.

· Deep understanding of Infrastructure Architecture (Firewall
Rules, VPN Tunnel, Proxy Bypass configuration)

· Deep understanding on foundational aspects (Security, DevOps &
Governance)

· Deep understanding of Enterprise Frameworks

· Knowledge and Understanding of Industry Trends and Best Practices

· Experience with delivering enterprise design patterns and end to
end solution for mission critical highly available and scalable application
involving vendors, custom development and matrixed IS organization



*Leadership Skills/Competency*

· Proven ability to build high performing teams and motivate
people, instill accountability, and achieve results in a rapidly changing
environment

· Outstanding verbal and written communications skills with the
ability to listen, articulate positions, and influence outcomes beyond
direct areas of ownership

· Consistently demonstrates and follows high standards of integrity
in business decision-making



*Personal Skills/Competency*

· A positive, enthusiastic attitude and the ambition to tackle
challenging issues

· Looks toward the broadest possible view of an issue/ challenge;
can easily pose future scenarios; can think globally about all aspects of
the Bank; can discuss multiple considerations of an issue and forecast them
into the future; understands how the Bank works, competes, serves clients,
and generates shareholder value

· Negotiates skillfully in tough situations with internal and
external groups; can be both direct and diplomatic

· Can quickly find common ground and solve problems for the good of
all; is a team player and encourages collaboration

*Be**h   *

* Behavioral Skills:*

· Requires strong interpersonal and organizational skills,
including the ability to meet deadlines Ability to manage multiple,
concurrent projects

· Must exercise a reasonable amount of independent judgment under a
minimum of supervision

· Ability to work in an offshore/onsite model with continuous and
regular communication with offshore teams.



*Qualification:*

· Any


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*Desk**: 626-414-4713 **Cell**: 925-272-2639*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcM_AxPXAfQcm5iv4bEe4t0VVAuN37EXY4MeYjYyKDXUXA%40mail.gmail.com.


[android-developers] .Net Full Stack developer in Irving, TX

2019-11-18 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role:  .Net Full Stack developer *

*Location:  Irving, TX*

*Duration: 12 months+*



Job Description:



Who are we looking for?

Experienced Software Developer to create and maintain a software
application. The successful candidate will also help to develop critical
products and offer excellent technical support. This is a fantastic
opportunity to engage in a positive and creative work environment.



Qualification:

7 years of IT experience

B.E / B.Tech /



Technical Skills:

• 5+ years’ experience in web and software development

• Experience in developing software using .NET Core Web, API
and SQL Server

• Experience in developing software for Azure Cloud, hosting
and maintaining applications on the cloud

• Demonstrated knowledge of web technologies, such as HTML,
CSS, Bootstrap and JavaScript

• Experience in integrating with third party API

• Experience with Azure Machine Learning is a plus

• Ability to work independently and multi-task effectively

• Bachelor’s Degree in Computer Science required

• Demonstrated understanding of projects from the perspective
of both client and business

• Flexible and willing to accept a change in priorities as
necessary

• Strong attention to detail



Process Skills:

Excellent knowledge in development on MSSQL

Should have working knowledge of Webservices (Both SOAP and REST)

Good OOPS Concepts

Capable of analyzing requirements

Creation of LLD

Capable of debugging issues and providing resolutions.



Responsibilities:

• Develop and implement new software programs

• Clearly and regularly communicate with management and
technical support colleagues

• Design and update software database

• Test and maintain software products to ensure strong
functionality and optimization

• Recommend improvements as necessary


Regards

*Chaitu | Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Mobile developer in Baton Rouge, LA

2019-11-20 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title: Mobile developer*

*Location: Baton Rouge, LA*

*Duration: 3 years*



*Required Skills:*



*Mobile Application Services developers* with experience and expertise in
mobile software development/support to occupy Positions of the scope of the
proposed services will include the following:



·  Design, develop, code, test, document and implement new
applications as well as update existing applications as necessary;

·  Development Portal Configuration for the Apple Developer
Portal.

·  Deployment for Enterprise usage and Continuous Integrations.

·  UI and Unit testing support.

·  Data Migration.

·  End user documentation and training.

·  Production Implementation & General Support

·  Project Management

·  Provide technical knowledge transfer, training and
documentation to OTS staff for all requested work; and

·  Provide user training.



Expertise and/or relevant experience in the following areas are mandatory:



·  3 years of professional Mobile Application development and
support experience


 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:** cha...@klntek.com *

*Gtalk**: chaitu.recruiter7*

*Desk**: 626-414-4713 **Cell**: 925-272-2639*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOF%3DO9dp4Hhu_01R_Fiu7pVFhUZr5BZZo8L0syugNd3hA%40mail.gmail.com.


[android-developers] PRODUCT MANAGER TECHNICAL in St Louis, MO

2020-02-24 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: PRODUCT MANAGER TECHNICAL*

*Location: St Louis, MO*

*Duration: 12-18 Months Contract*




*Summary:  PRODUCT MANAGER TECHNICAL (PM-T) JOB DESCRIPTION **Overview*



· Responsible for developing inspiring platform/product visions,
derived from business needs, market opportunities, and technology trends

· Using the Working Backwards method, decomposes business
requirements and customer experiences into features and functions that
drive the platform/product roadmap

· Works with Technical Program Managers, Developers, UX designers,
and internal customers to define the details behind the business
requirements

· Collects and shares user stories with engineering teams

· Acts as the voice of the business customer and accountable for
the platform services



*Responsibilities:*

· Owns the working backwards document and vision for feature
releases

· Identifies gaps and charters new platform capabilities as
required

· Makes use of research, user studies, metrics and competitive
analysis to understand the platform and business needs for a platform
product

· Compares features for competitive review to inform prioritization
within a platform product release

· Identifies innovations or performs test and learn experiments to
create features that add more business and customer value for a platform
product

· Participates with the business in customer research to inform
platform product feature needs

· Contributes near-term input (quarterly) for the platform product
portfolio and roadmap

· Makes trade-off decisions on platform product features

· Uses runtime metrics of their services in market as a feedback
loop in to the backlog and balances the priorities against new feature
requests

· Exhibits expertise within platform feature area and coordinates
with interdependent teams

· Digests business customer requirements (user stories, use cases)
and platform requirements for a platform feature set

· Has visibility into the design of the user experience

· Determines release goals for the platform and prioritizes
assigned features according to business and platform value, adjusting
throughout implementation as needed

· Continuously monitors feature development at the feature level

· Reviews product demo with the development team against acceptance
criteria for the feature set

· Prepares launches and monitors platform performances, adoption,
and operational health for feature sets

· Stays aligned with GTM plans for the feature set

· Identifies issues that will keep the platform features from
delivering on time and/or with the desired requirements and communicates to
leadership

· Supports and participates in post-launch reviews and ensures
feedback is reincorporated into the feature

· Works with internal teams and customer service to identify,
classify, and prioritize feature-level customer issues

· Develops and implements new metrics into measurement techniques;
works with development teams to develop reports to monitor them

· Independently identifies and researches anomalous performance;
escalates findings to senior management

· Coordinates internal forums to collect and identify feature-level
development opportunities

· Owns and manages product documentation; enables self-service
support and/or works to reduce overhead

· Identifies feature risks from business and customer feedback and
in-depth analysis of operational performance; shares with senior leadership

· Establishes a network within the organization; begins to build
internal and external networks

· Mentoring team members

· Assists with candidate selection and onboarding

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Sr Technical Program Manager in St Louis, MO

2020-02-25 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Sr Technical Program Manager*

*Location: St Louis, MO*

*Duration: 12-18 Months Contract*



*Client: MasterCard*

*In Person Interview on March 4th and 5th (Travel and Hotel expenses will
be paid)*



*Job Description:   *



Are you a technical program manager who wants to shape the cloud platform
for Mastercard’s digital, marketing, loyalty, and business services (DML)
products? Do you want to work for a company that offers above and beyond
benefits including paid parental leave, flexible work hours, gift matching,
and even volunteer incentives?  Do you want to work in an inclusive and
nurturing culture that encourages your own professional learning and
development?

Over the next 12-18 months, we are breaking up our DML monoliths and
re-platforming features into re-usable micro-services and APIs while we
continue to innovate and deliver results for our customers. All net new
capabilities will be built on the DML cloud platform supporting
multi-tenancy and multi-geography capabilities for the company.  We are
looking for seasoned technical program management professionals to join our
team and help us build towards the future.  Our Technical Program Managers
(TPM) conceptualize, rationalize, and drive multiple simultaneous projects
to deliver engineering work across the portfolio in our scrum execution
model. In this role, you get to dive as deep as you want into the tech
stack, the integration patterns, the organizational capabilities, and the
company wide assets that can be leveraged to provide technical solutions to
customer problems.  You will contribute to the strategies, design choices,
and even the cloud infrastructure necessary to build comprehensive
believable and achievable execution plans to deliver high-profile new
features and capabilities for our customers.  You may drive the execution
of a feature through the full stack or may drive a project which spans
multiple teams and integrations, reporting meaningful status along the
way.



*ABOUT YOU*

· Demonstrated ability to operate with independence and autonomy

· Experience defining and building cloud-native software products
as a platform at scale with a deep understanding of those platforms
capabilities and underlying technologies.

· Demonstrated experience breaking down problems, organizing work,
planning sprints, and delivering technical programs in agile delivery
models (scrum, Kanban, etc.)

· Experience working on programs to define and build cloud-native
software products as a platform at scale

· Enjoys diving deep to understand of the platforms capabilities
and underlying technologies.

· Proven track record of data driven decision-making and applying
continuous improvement methodologies across teams

· Can debate the delivery strategy with business teams, architects,
engineers, and designers

· Can communicate to executives, peers, and staff with impact,
eloquence, and authenticity

· Demonstrated experience building relationships, partnering with
and influencing dependent teams while commanding the respect of the
individuals you work with across the organization

· Huge plus if you have expertise in Payments, IaaS, PaaS,
serverless technology, CI/CD, NoSQL databases, microservices APIs, and
distributed systems operations in a DevOps model

· BS in engineering, computer science or related discipline.

· 5-7 years technical program delivery experience including time
developing and testing software


-- 

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMFkK%3DWMMiJdBPUzVqAFSaSb%2B2whaMnTXWhd1D%2BgPGyMw%40mail.gmail.com.


[android-developers] AEM Developer in Bellevue, WA

2020-03-02 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: AEM Developer*

*Location: Bellevue, WA*

*Duration: 6-12 Months+ Contract*



*Job Description AEM Developer:*



· Knowledge of Adobe Experience Manager and AEM Core components
(Sling, OSGI, JCR, Dispatcher).

· Strong knowledge and experience in integration with components of
Adobe Marketing Cloud (including Adobe Target, Adobe Analytics, and
Campaign)

· Knowledge of AEM workflows setup and maintenance as well as User
and Group Management

· Ability to fine-tune AEM application for optimal performance,
including configuring Threads, Heap, GC Policy. FEO, JS and CSS
minification and optimization. Should be familiar with application profilers

· Aptitude for troubleshooting and problem solving as well as
mentoring/guiding other members of the team.

· Good written and verbal communication skills

-- 

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Cloud Engineer in Dallas, TX

2020-03-03 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Cloud Engineer*

*Location: Dallas, TX*

*Duration: 6-12 Months+ Contract*



*JOB REQUIREMENTS:*



· Deep understanding of cloud computing technologies, business
drivers and emerging computing

· trends.

· Thorough understanding of Hybrid Cloud Computing: virtualization
technologies, Infrastructure as a

· Service, Platform as a Service and Software as a Service Cloud
delivery models and the current

· competitive landscape.

· Extensive experience with Cloud technologies (such as Azure, AWS,
GCP) and native toolsets such

· as Azure ARM Templates, Hashicorp Terraform, AWS Cloud Formation

· Extensive experience with automation and configuration management
using Puppet, Chef, Ansible,

· Jenkins, Azure DevOps or similar.

· Experience with one or more of the following: Azure
Eventhub, Azure Virtual Machines, Azure

· Kubernetes Service, Blob Storage, Azure DNS, Virtual Networks,
Redis Cache and Azure App

· Service, Azure Kubernetes Service.

· Strong experience with the Linux operating system.

· Strong background in scripting and automation in languages such
as Python and Ruby.

· Strong background in cloud operations instrumentation and
monitoring of distributed architectures

· using ZipKin, DataDog, AppDynamics, Splunk, Nagios or similar.

· Strong background with source control management systems (GIT or
Subversion); Build Systems

· (Maven, Gradle, Webpack); Code Quality (Sonar); Artifact
Repository Managers (Artifactory),

· Continuous Integration/ Continuous Deployment (Jenkins, Azure
DevOps)

· Knowledge of relational and non-relational databases

· Knowledge of containerization (Docker, Kubernetes)

· Demonstrated excellent communication (verbal and writing),
influencing and negotiation skills.

· 5+ years of systems design experience with at least three or more
years of experience with cloud

· technologies like Microsoft Azure, Amazon Web Services (AWS) or
Google Cloud Platform (GCP)

· Deep technical experience in one or more of the following areas:
software design or development,

· application design, systems operations/management, database
architecture, virtualization, IP

· networking, storage, IT security and Linux system administration

· Knowledge and understanding of industry trends and new
technologies and ability to apply trends to

· architectural needs

· Ability to facilitate group meetings/discussions.

· Ability to broker solutions for issues between functional
domains, senior leaders.

· Strong knowledge with Web Services, API Gateways and application
integration development and

· design

· Excellent written and oral communication skills with ability to
communicate effectively with

· technical and non-technical staff

· Willingness to instruct and coach in a cloud training program as
needed

· Demonstrated strong analytic and problem-solving abilities

· Working knowledge of Agile development, Scrum and Application
Lifecycle Management

-- 

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Python Developer in NYC, NY

2020-03-04 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Python Developer*

*Location: NYC, NY*

*Duration: 12 Months Contract*



*Job Description:*



To accelerate this bold journey of empowering organizations with world
class learning platform, the BigLynx team is looking for a senior software
engineer for edX platform, integration  scaling and building out a new
platform for our learners.

*Responsibilities:*

· Design, develop, deploy, and support scalable software systems

· Collaborate with Product Management, UX, and business users to
understand business problems and identify solutions

· Help define and build new features or applications based on
technology and business needs.

· Minimum 5 years experience and Bachelors in Engineering

· Write structured, tested, readable and maintainable code.

· Participate in code reviews to ensure code quality and distribute
knowledge.

· Commit to owning your code and supporting the customer facing
environment

· Past experience in open edX is nice to have.



*Qualifications & Skills:*



· 3+ years of full-stack coding experience

· Experience working with Python and Django

· Experience building static websites (we use Gatsby and GraphQL).

· Experience working in an agile development environment.

· Experience with Optimizely or similar A/B testing tools.

· Familiarity with experiment design and evaluation.

· Familiarity with open source frameworks.

· BS in Computer Science or related experience.


-- 

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] .Net Developer in Atlanta, GA (Need 9+ Yrs resume)

2020-12-22 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Role: .Net developer*

*Location: Atlanta, GA*

*Duration: 9 Months +*



Duties and Responsibilities

• Develop and implement new applications and services.

• Design and develop new features and/or maintain existing application
utilizing the Microsoft

Technology stack.

• Work with IT Systems Analyst to understand business requirements to
provide estimates, timelines,

and technical specification.   This position requires a least 70% hands-on
development.

• Work closely with IT leadership, peers, and business clients to create
the best possible business

solution including ways to improve ways to improve software and business
processes.

• Provide documentation on implemented features and software.

• Manage multiple deliverables until conclusion.

• Conduct code reviews.



What We Are Looking For



• Bachelor’s Degree or professional training, preferably in Computer
Science or a related field preferred.

• Experience in web and software development.

• Be able to work with group or individually.

• Experience in a changing and fast-paced organization while being
comfortable with ambiguity.

• Excellent understanding of n-tiered, service-oriented, and micro service
architectures..

• Experience developing using OOP methodology.

• Ability to work independently with minimal supervision

• Strong knowledge of the .NET Framework, C#, ASP.Net, MVC, LINQ, Visual
Studio IDE and Version

Control Systems (TFVC and GIT).

• Knowledge of web technologies, JavaScript frameworks (React, AngularJS,
VueJS, jQuery, etc.) as well

as HTML and CSS.

• Experience with ORM tools.

• Knowledge of relational database design and development using SQL Server,
TSQL, and SSIS.

• Familiarity with SDLC and Agile development methodologies.

• Good analytical skills, business acumen and communication skills, written
and verbal.

• Demonstrates a strong attention to detail; ability to maintain
documentation and deliverables with

excellent follow through skills.


Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

Gtalk:chaitu.recruiter7

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


[android-developers] Java developer with Spring boot in Silver Spring, MD

2020-12-23 Thread Chaitanya Puvvada
HI,

Please send resumes for following job requirements -

*Role: Java developer with Spring boot*

*Location: Silver Spring, MD*

*Duration: 9+ Months*



o   Responsible for development and maintenance of assigned enterprise
architecture project and takes project from planning through final
delivery. Interfaces with all areas affected by the project including end
users, computer services, and client services.

o   Provides technical and analytical guidance for enterprise architecture.
Recommends and takes action to direct the analysis and solutions of
problems.

o   Possesses extensive knowledge of and hands‐on experience with Spring
Boot or custom applications

o   Identify the features, advantages and disadvantages of various software
applications

o   Implement best practices in application systems development and network
security.

o   Evaluate and test software applications, compile data and produce
relevant reports.

o   Leverage advanced technical skills and knowledge to excel in an
application systems analyst career.

o   Defines application problems by conferring with clients, evaluating
procedures and processes.

o   Overseeing implementation of required hardware and software components
for approved applications, coordination tests of the application system for
proper performance. (Functional understanding)
Minimum Skills/Qualifications: At least 5 years’ experience in Spring Boot or
Custom UI (Java, Angular JS, Visual Studio, .Net) applications. Has Public
Sector experience

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOTma5PvZnFBF7eubvh8eGtWa9XLbhLG0TVp41CMZ0j9Q%40mail.gmail.com.


[android-developers] Java Microservices Architect in NYC, NY

2021-01-12 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Java Microservices Architect*

*Location: NYC, NY*

*Long term Contract *



*Job Responsibilities *

Team is working on transforming existing Java based application to cloud
along with removing dependency on mainframe. Associate will be working
creating various micro services based on revised DB schema. We are looking
for strong Java architect who will redesigning into modern platform using
state of art technology and tools. He should be very strong on developing
multi-tier application. Hands-on Java developer with good understanding of
cloud and front end is MUST for this role



*Primary Skills *



· Demonstrated hands-on development with Java, Python, Spring Boot,
Oracle, Microservices Architecture,

· Experience with AngularJS, REST, ActionScript, Node.js, RDS,
Lambda functions, Jenkins, Docker, Kubernetes, and queuing technologies,
etc.

· Experience leveraging open source technologies and developing
with service-oriented architecture

· Expertise building SaaS offerings on public Cloud Platforms
(e.g.: Azure, AWS) using platform services and integrating with “behind the
firewall” on-premise deployments

· We definitely need strong Spring back ground and hands-on
experience with Micro Services Tech Stack.

· Expert level J2EE/Java with Microservices background preferably
in Spring boot, Spring cloud. And, solid experience in APIs gateway, etc.

· Expertise architecting and developing highly reliable,
fault-tolerant distributed applications with focus on performance and
scale.

*Secondary Skills *

· Expertise in DevOps practices like Automation, Configuration
Management, Continuous Integration & Delivery, and Monitoring •

· Good understanding of software engineering frameworks, tools, and
processes

· Self-starter with ability to execute on business objectives

· Ability to foster innovation among team members and drive best
practices

· Sharp technical acumen to solve issues and evolve the
Microservices architecture



 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOYJaw%2BEcGMqbx7j_2nDc1fHVq3uqDEbvV7NRNytdnHKg%40mail.gmail.com.


[android-developers] Salesforce Integration developer in NYC, NY

2021-01-13 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Salesforce Integration developer*

*Location: NYC, NY*

*Long term Contract *



*Need minimum 10 Yrs experience….*



*Job Description:*

• Strong hands-on experience, *Integration Developer with JAVA and
API in Salesforce*, administration, configuration, customization and
development within Salesforce, and also in reports and dashboards

• Solid grasp of at least one OOP language – JavaScript preferred

• Experience working with soap-based services / REST API’s

• Salesforce integration experience preferred

• Implement and support customizations and enhancements to existing
Salesforce application based on defined business requirements

• Provide Salesforce Application Support in terms of Defect Fix and
Configuration support (for Break fixes)

• Drive transition and knowledge acquisition workshops with AIG
Business users and Implementation Vendor

• Experience in preparing support documentation (e.g., SOP,
Knowledge Repository updates, etc.)

• Experience in migration tools such as Salesforce Migration using
ANT.Ability to work with DevOps tools like GitLab, Jenkins. Support Code
Reviews.

• Must hold active Salesforce Certifications as Salesforce
Developer (Salesforce Certified Platform App Builder, or Salesforce
Certified Platform Developer I and II) , Admin

• Consulting Cloud Certification (Sales, Service or Community) is
an add-on

• Develop custom reporting and analysis as required

 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOfUO5Ymo%2BCvU_fQCW2LoOMchxbO1ttgokqDRgFtWA5WA%40mail.gmail.com.


[android-developers] Java developer - REMOTE (Min 9+ Yrs exp)

2021-01-21 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Java developer*

*Location: Remote*

*Long term Contract *



*Need min 9+ Yrs exp*



*Required Skills:*

• *Knowledge and practical experience of Java Spring boot*

• Ability to write unit tests associated

• Comprehensive knowledge of RESTful APIs

• *Solid understanding of Microservice and principles*

• *Solid understanding of CNCF principles and initiative*

• Knowledge of CI / CD concepts and docker

• Ability to troubleshoot performance and memory usage of
application

• Experience working in Agile projects

• *Experience in Kafka*


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOrCQL3m1-7c93beSs4AGiF8a-tPCg%3DnJYmSVcCJ3QTZA%40mail.gmail.com.


[android-developers] Azure DevOps Engineer - Remote position.

2021-01-26 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Azure DevOps Engineer*

*Charlotte, NC/NYC, NY (Remote position)*

*Long term Contract *



*Required skills:*



· 8+ years of exp

· Jenkins

· CI/CD pipeline

· Azure devOps

· programming language (python or chef)


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMsO-vVGZ%3Dh46%2BuDZ2edGckcOgPPpLi7OV_w7_gt9c%3DxQ%40mail.gmail.com.


[android-developers] Python Developer in San Antonio, TX

2021-01-27 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Python Developer*

*Location: San Antonio, TX*

*Duration: 12 Months Contract*



*Job Description:*



·  7 years of full-stack coding experience

· Experience working with Python Scripting and Django

· Hands-on experience with SQL

· Experience with CI/CD.

· Experience in AWS good to have

· Familiarity with open source frameworks.

· BS in Computer Science or related experience.


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPh1%2BuOcC0niig0jYtVrvyETvdFTGFkU_tpk1znCPqOXw%40mail.gmail.com.


[android-developers] Data Engineer in San Antonio, TX

2021-01-28 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: *Data Engineer

*Location: San Antonio, TX*

*Duration: 12 Months Contract*



*Min 7 Yrs experience*

*Need to share Passport number for submission*


· Experience in streaming application and Realtime analytics (must)

· Hands-on experience in Kafka, SQL (must)

· Hands-on experience in Java/Scala and Spark (must)

· Working experience in databases:  Hive, Netezza, Oracle, Snowflake

· Very Good in writing SQLs, advance SQL for analytics


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcP%3DzX%2BChTwVb7J8cYiXARstZ7Vy8BcCxm-wDgri6NroPw%40mail.gmail.com.


[android-developers] PEGA ENGINEER WITH JAVA - Remote opportunity

2021-02-02 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*PEGA ENGINEER WITH JAVA *

*Contract Duration: 9 Months.*

*Start Date: Immediate.*

*Location: Remote. Willing to work Pacific Daylight time.*



*REQUIRED SKILLS*

· 7+ years of experience in developing and supporting business
processes using Pega BPM technology

· 3+ years of experience querying and integrating with relational
databases such as Oracle.

· 2+ years of current experience in application development or
customization with Java, J2EE, and/or C#. Expect hands-on coding test in
Java, Java Script or other OOP and SQL, PL/SQL.

· Hands on years of experience in application integration using
SOA/web services.



*PREFERRED SKILLS *

· Hands on programming experience with related technologies such as
JSON, JavaScript etc.

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPQwyY5z7u-cfCEdro8c3BuT60zezW%3DYkFasz5txsb1Aw%40mail.gmail.com.


[android-developers] AEM Architect in Sunnyvale,CA

2021-02-04 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: AEM Architect   *

*Location: Sunnyvale, CA*

*Duration: 12 Months Contract*



NOTE: Must have architecture experience



Job Description

· Solution expert for a CMS Proof of Concept using Adobe Experience
Manager

· Extensive core AEM technology and other Adobe products such as
Target and Analytics.

· 5 years of experience with AEM projects.

· Must have worked on AEM 6.4 or newer versions.

· Experience with Adobe solutions such as Target and Analytics

· Strong Java programming foundation

· Experience with Sightly / Sling models

· Extensive hands on workflows, Sling servlet, REST, JSON, lucene
indexing

· Exposure to Coral / Granite UI, Adobe UI customization is a must

· Deep understanding of AEM's security along with its Access
Controls

· Expertise around extending AEM's core functionalities such as
Launches

· Strong understand of core AEM components such as oak, sling and
dispatcher



Responsibilities:

· Full end to end implementations of websites that touches across
AEM, Target and Analytics.

· Implementation of SPA templating

· Work collaboratively with other teams; QA, UX, etc

· Continuous Integration and Automated test execution and building
tools such as Jenkins, Hudson, Selenium or Maven

· Work with project managers to ensure that all project
deliverables are on time and high quality



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcNP%2B8uj1peBjW5e8wydUjob15cpogXnvHNv4aMQ1Bd8qA%40mail.gmail.com.


[android-developers] Network Automation architect in McLean, VA

2021-02-10 Thread Chaitanya Puvvada
Hi

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Network Automation architect*

*Location: McLean, VA*

*Long term Contract *



The primary skill - *Ansible & Python with Terraform* AND networking
background is a nice to have.



-  Build automations for networking stack - Cisco Switching and
Routing, Arista, F5 and AVI network load balancers, Firewall automations,
VMware NSX, Infoblox etc

-  Should be experienced in developing CI/CD jobs and pipelines in
Concourse CI or similar orchestration tools

-  Build Rest APIs using Python, Flask, Django etc..

-  Infrastructure as a Code using Terraform and Cloud Formation
Templates or Hands on experience in Ansible configuration management,
writing playbooks etc

-  RedHat, Ubuntu

-  Write Jinja templates, YAML.

 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOcUtUftFy7jWvb190D_DREvvnh7E9NiCy-bcMKaKd8Yw%40mail.gmail.com.


[android-developers] OBIEE & ODI ETL Developer in White Oak, MD

2021-02-11 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Title: OBIEE & ODI ETL Developer*

*Location: White Oak, MD*

*Contract: 6 – 9 Months*



*Responsibilities: *

As a ETL/ ODI/ OBIEE developer, you’ll help lead the design, development
and implementation of the data extractions, transformations and load
procedures including analysis of existing source systems and data sources,
operations and maintenance and business process reengineering projects, as
well testing and release management. You’ll help lead our clients and the
project team through a structured process to analyze, test, validate and
review the solutions being implemented. Define and execute on a robust plan
to ensure all client requirements are met, while pushing the team to
continuously innovate and streamline the data quality assurance/testing
process. Our professionals help our clients transform their business
processes, improve internal controls, improve efficiency of operations,
increase transparency and performance management, and to comply with
Federal laws and regulations. The nature of our projects is extremely fluid
and requires self-motivated individuals that are willing to develop
solutions on their own or in a team of highly skilled professionals.
Project members are provided the opportunity to interact with our clients'
senior management, as well as the opportunity to enhance their skills in
the area of technical competency, business development, client service and
people development.



*Qualifications*

*Required:*

The successful candidate will have proven experience implementing and
supporting Oracle Data Integrator /ETL system integrations, data warehouses
and reporting solutions and support data analysis functions (including
budgets and planning data, financial transaction data, testing and
validation) for commercial entities and federal agencies. The candidate
shall oversee and lead the development of the ODI components and support
process improvement recommendations and implementation to enterprise
systems and functions. Specifically, the following skills and experiences
are requested:

Minimum Years of Experience: Experience of three or more years is required
with experience with Oracle Data Integrator (ODI) and ETL tools and
procedures, Oracle Business Intelligence (OBIEE), business process review,
testing and data quality assurance activities

•  Provides Subject Matter expertise in OBIEE Reporting with a
focus on designing and developing reports using the Answers capability

•  Possesses extensive knowledge of and hands‐on experience with
oracle data integrator or other ETL tools

•  Experience with Oracle Data Integrator, OBIEE, Hyperion Planning
and Essbase Applications.

•   Experience with Oracle OBIEE Data Analytics tool. Supports workflow
set up, configuration and edit check development. Supports data migration.
Supports software releases.

•  Evaluate and test software applications, compile data and
produce relevant reports.

•  Degree Holds a four year degree from an accredited college or
university.

•  Excellent verbal and written communication skills (including
presentation skills)

•  Experience and comfort with MS Excel and other MS Office products

•  Aggregate and synthesize data from authoritative systems into
metrics and analytics

•  Ability to quickly comprehend complexity and convey findings in
concise, well-written narratives



*Additional Requirements*

· This position requires successful completion of a background
check and employment verification.

· The successful candidate must not be subject to employment
restrictions from a former employer (such as a non-compete) that would
prevent the candidate from performing the job responsibilities as
described.



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcNrUNCxe4uajGcvXaBrLoe31o87fa2LM2L-FNd0fdP6Ow%40mail.gmail.com.


[android-developers] Tableau Admin in Davidson, NC | Saint Paul, MN

2021-02-16 Thread Chaitanya Puvvada
Hi,
Please share a profile for the position below:



*Job Title: Tableau Admin*

*Location: Davidson, NC | Saint Paul, MN   *

*12 Months contract   *



*Required Qualifications:*

3-5 Year experience in Tableau or Alteryx Admin

Install/Upgrade tableau Server



• Support the maintenance and performance of Tableau environment.

• In-depth knowledge on Tableau Desktop and Tableau Server

• Configuring and Administrating Tableau Server

• Good understanding of row level security [user support, User creation,
User permissions and provisioning]

• Optimize Tableau Server for performance

• Understanding of performance when building dashboards

• Knowledge of Tableau REST API

• Understanding of Tableau Server architecture

• Troubleshooting Tableau Server

• Understanding of Alteryx Admin activities [Nice to Have]

• Ability to work independently and proactively

• Strong ability to interface and communicate effectively with business
representatives

• Experience in Tableau scripting (TABCMD and TABADMIN).



 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcN3N_PHmwEHgOa5P3GFJLfJt7puw_Cy%3DFKA-ndDb_rSNg%40mail.gmail.com.


[android-developers] Marketing Automation Engineer in Plano, TX

2021-02-16 Thread Chaitanya Puvvada
Hi,
Please share a profile for the below position



*Job Title: Marketing Automation Engineer*

*Location: Plano, TX*

*12 months contract*



*Technical Skills Required:*

*Adobe Marketo, Salesforce, Java*



*Years of Exp: Minimum – 10 Years*





*Job Description: Responsibilities: *

   - Marketing automation technical subject matter expert, leveraging your
   depth of experience to solve complex business problems in an B2B environment
   - Leverage your technical expertise to lead the technical portion of
   marketing automation projects, including integrating best-in-class products
   and platforms (Adobe Experience platform, Marketo, Salesforce, Seismic,
   etc.) to create the next best-in-class digital marketing automation
   architecture
   - Enhance digital marketing architecture across multiple channels
   include digital/social/communications/events
   - Keep up to date with mobile marketing trends, utilize industry
   best-practices to create and enhance our technology stack to create a
   best-in-class data-driven platform
   - Leverage data analytics and use analytical tools to analyze and
   optimize demand generation programs, enhance nurture streams, and improve
   lead scoring models / content curation and recommendations
   - Setup, integrate and configure multiple applications, perform business
   analysis, data analysis and reporting, and provide business and technical
   insights



*Key Qualifications:*

   - Bachelors or Master’s degree in Information Systems or
   Technology-related discipline
   - 5+ years’ experience in the technology aspects of Digital Marketing,
   Marketing Automation, ABM, B2B demand generation, and Sales Enablement
   - Strong understanding of one (or many) SaaS applications such as
   Marketing Automation (Marketo, Eloqua, Pardot / Salesforce Marketing
   Cloud), CRM (Salesforce, Pega), Sales Enablement (Seismic), and Digital
   (Adobe Experience platform)
   - Experience in demand generation, customer journey/lifecycle, lead
   scoring/routing & nurture journeys, data integrations, 3rd party native
   integrations and custom API integrations
   - Intermediate to advanced analytical ability and hands-on knowledge of
   analytics technologies/tools such as Alteryx, Tableau/Qlik, SQL, etc.
   - Hands-on development language and scripting experience such as Python,
   Java, C#/.NET
   - Understands marketing, sales, customer/client experience domains and
   best practices, a strategic thinker, able to solve complex problems and
   identify insights and opportunities
   - Proven success in an Agile, collaborative, and cross-team environment
   and be able to drive/manage multiple projects simultaneously
   - Learns and adapts quickly, excellent verbal and communication skills
   - Financial services or regulated-industry background preferredHi,

   Please share a profile for the below position



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcM-iS2rzcpgUKh7%2BKc-bKMdeZDDRNMShfXQDKoXv40LaQ%40mail.gmail.com.


[android-developers] Adobe AEM Architect in Chicago, IL

2021-02-18 Thread Chaitanya Puvvada
Hi,

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title: Adobe AEM Architect*

*Location: Chicago, IL*

*9+ months Contract*



*Experience: 10+ Years*



*Mandatory Skills: *Adobe AEM Target, Cognos, SSRS - SQL Server Report
serv, MS PowerBI, SSAS-SQL Server Analysis Serv



*Job Description: *

Looking for seasoned Adobe AEM architect who has done multiple successful
implementations. Individual should have experience in Adobe Marketing cloud
product in particular Adobe Target and it’s integration with AEM and
Non-AEM built digital sites. Experience in headless CMS using AEM is
preferred.

·   5 Years of experience in solutioning digital sites using Adobe AEM

·   2+ years of experience in personalization engine Adobe Target

·   3+ years of experience as lead / architect enterprise solutions.

·   Individuals with certifications AEM Architect, AEM Developer, Adobe
AEM Advanced developer, Adobe Target are preferred.

·   Prior experience in a consulting or agency environment

·   Experience with building AEM Components, Widgets, TouchUI, Sightly
development

·   Experience with implementing OSGI Services, Servlets, and Components

·   Experienced with client-side and server-side integrations eg.
Search Integrations, Authentication Handlers, Webservices Integrations, CDN
Integrations

·   Systems integration and development, and package implementation

·   Experience integrating with at-least one CRMs (Salesforce, Marketo,
Eloqua, etc.) is preferable



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcO0Nn3uSgHc2bDyo8sYoWw3%3D%2B%3DHNzyjx7U2j%2Bxq3Rkwbg%40mail.gmail.com.


[android-developers] UI Lead with React JS + React Native in San Antonio, TX

2021-02-24 Thread Chaitanya Puvvada
Hi

 Please check the position below and reply back with your updated resume.


*Position: UI Lead with **React JS + React Native *

*Location: San Antonio, TX** (initial Remote)*

*Duration: Longterm*

*Lead Experience is Mandate – Minimum 10 Yrs experience MUST*


* ROLES AND RESPONSIBILITIES:*

Well conversant on React JS skills.

- Raise clarifications with customer / onsite to eliminate any ambiguity on
the scope of work assigned from the Client / Project Co-coordinator track
to closure any open clarifications with customer / onsite understand and
translate requirements into design (FOR ONSITE): conduct meetings with
customer SME’s,  BA’s and architect to understand and clarify functional
and technical requirements.



Thought Leadership / Process Improvements  / Delivery Excellence:

- Lead technology initiative's, incubate and build tools & reusable assets
for dev / Productivity enhancement

- Understand the current IT/Technology trends and analyze/identify the
impact of each trend on the business segments within vertical in relation
to area under purview - Create reusable assets / supporting artifacts based
on the industry landscape

- Identify re-usable solutions/assets which can be built within the
technology unit

- Co-author points of view publish whitepapers represent in the Technology
Conferences/Roadshows/Forums

- Guide teams to create case studies/whitepapers on
application/solution/enterprise architecture / technology recommendations

- Participate and present  in industry forums, technology forums and
workshops Project Estimation:

- Provide input on technical effort estimation to arrive at resourcing
plans participate in management reviews and teleconferences and report
weekly status and walkthrough to the Project Manager / Client

- Follow-up with customer POC to resolve team issues and dependencies raise
concerns regarding changes in timelines and expectations with customer
point of contact to resolve the same.



Technology Review for Projects: Review deliverables, and tasks Assigned
to the team. to ensure quality deliverables ontime.



Capability Development:

Build technical skills and capabilities through training and mentoring,

- Train the teams on technology tools and techniques.

- Enable Knowledge sharing and training for the developers.



Design & Analysis:

- Develop proof of concept as designed by architect setup development
environment for team to work in break up the modules considering technical
aspects

- Understand interdependencies of the various components in work packages
that are being developed

- Create design documents with the support of the architects for the
assigned scope

- Work with architect to understand the architecture of the application,
high level approaches and ensure that the design is in line with overall
direction conduct peer review, as required.

- Organize design review sessions with various stakeholders to validate
design is as per requirements.



Coding:

- Identify the standards applicable for the work packages / components

- Familiarize the team with development environment and  CTS and customer
specific coding  standards, guidelines and best practices to be followed
through sessions and document sharing

- Review the code created by team and provide review comments to the
developers develop code for core / critical module(s) needed for the project

- Contribute towards development of framework

- Develop/ review tier coding, business layer coding, interface
development, service development, creation of stored procedures etc. as
applicable for the work package / project

- Write efficient queries and understand logical and physical data models
follow up with Developers to ensure integration of components (input /
output) troubleshoot critical technical issues

- Handle escalations related to critical technical issues create detailed
tasks for the scope and share timelines for the same with the team track
the status of the tasks assigned, maintain detailed task information for
the work packages owned and do periodic reporting conduct technical review
and audit

- Create quality check points for all deliverables estimate at task level
in the area of work concerned, measure and report the actual effort against
the estimated



*Required Qualifications:*

*React Js, Java Script, React native, HTML 5, CSS*


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcNBiMo8JD9Yoqc2rHHazf5B%3Dt5r-nk2dDu78X1Oo%2BskoA%40mail.gmail.com.


[android-developers] DevOps/SRE Contractor in Redmond WA

2021-03-04 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.

Dev Ops/Service Reliability Contractor

Location: Redmond WA.

12 Months contract



The Cloud Security team within Xbox Community org builds the Identity and
trust across backbone for all Xbox users, devices (including PC, Mobile,
xCloud, Console), and titles (games / content).

We are looking for someone who can help us with various Service Reliability
Engineer responsibilities and manage a set of services in the above
mentioned areas.



*Responsibilities*

In this role, you will partner with engineering and SRE teams in
accomplishing the following

• 2+ years’ experience managing and supporting Windows Server
based online service platforms and internet service delivery systems.

• Experience in professional software development with a mix of C#,
PowerShell, or other languages

• Experience allocating and managing solutions in Azure

• Previous experience working in an SRE style environment

• Understanding of standard client/server, networking, and internet
fundamentals

• Superior problem solving and troubleshooting skills

• Sufficient technical depth to communicate with development and other
internal organizations at a peer level, and possess the ability to work
independently with minimal management supervision.

• Ability to enhance the technical expertise of peers via the development
of product training, mentoring of new hires, and team content development.

• Ability to apply technology to improve existing products and systems for
Xbox LIVE and its partners.

• Strong knowledge of what types of instrumentation and management
technologies are available in a Windows-based environment and how to
leverage them for diagnostics & debugging.

• Ability to multitask and reprioritize work in a changing business
climate.

• Excellent verbal and written communications and good documentation
skills.

• Ability to participate in a 24 X 7 on-call rotation.



*Qualifications*

• 3+ years of professional Software Development or Service
Reliability Engineering experience.

• A self-motivated teammate who is passionate about code quality

• Experience with C#, Power Shell.

• Previous experience with developing, deploying and managing
resources and services on Auto-Pilot and/Or Windows Azure Environments.

• Experience with using and managing Git Repositories.

-- 

Regards

*Chaitu | Sr.Technical recruiter*

OQ Point

c...@oqpoint.com

925-272-2639

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


[android-developers] Test Automation engineer with .Net (REMOTE) ** Need only GC **

2021-03-10 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Test Automation engineer*

*Location**: Remote*

*Duration: Long Term*




*** Need only GC ***


*Required skills:*



· Need min 7 Yrs of experience

· Experience with .Net

· Experience with Selenium.

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcME_Fbynr-5h%2BsA7d-dK02bn3Svv%3DJm9HZdz%3DhE0bWrJQ%40mail.gmail.com.


[android-developers] Snowflake Developer in Atlanta, GA/Dallas, TX

2021-03-11 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Snowflake Developer*

*Location: **Atlanta, GA / Dallas, TX (Remote Until COVID)*


*Duration: 6-12 Month **Long term contract*



We are looking for *Snowflake Developers *with 6+ years of experience *@
Atlanta/Dallas* location (After COVID situation).



*Required Skills:*

Need strong Snowflake Developer with 5-6 years of experience in SQL
Development and Data Analysis required to develop a new complex data
warehouse.


*• In-depth knowledge of Azure Cloud services • At least 2 full years of
recent Snowflake development experience*
• Hands-on experience with Snowflake utilities, SnowSQL, SnowPipe,
• Able to administer and monitor Snowflake computing platform
• Hands on experience with data load and manage cloud DB
• Experience in creation and modification of user accounts and security
groups per request
• Handling large and complex sets of XML, JSON, and CSV from various
sources and databases
• Solid grasp of database engineering and design
• Experience with any scripting languages, preferably Python



*Technical Skills:*
• Snowflake
• Experience in some other SQL based databases, like Teradata, Oracle SQL
Server etc.



*Nice to have:*
• Scripting with Python
• SnowPro Certification
• Experience with an ETL tool, like Informatica, Datastage, Matillion etc



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPLZ8Q1dO3gjHY7OqavdoFPMfes5CsUvwfGiG8H40R%3D6w%40mail.gmail.com.


[android-developers] Project Manager in Redmond, WA (REMOTE) *** NEED LOCALS ***

2021-03-17 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Project Manager*

*Location: Redmond, WA (REMOTE)*

*Duration: 12 Months Contract*


*What will you be doing?*

You will bring your drive, high energy, fast-paced, problem solving mindset
along with your PM experience to a team focused on an ecosystem of
strategic, global  partner focused programs.  The organization has
multiple, prioritized strategies that require project management scale and
support to properly manage all workstreams.  You will work closely with the
existing PMO, workstream leads and senior level team members.

Key responsibilities include:

   - Assess organizational and program current state, establish the go
   forward plan, plug into the existing PMO rhythms, and generate clear and
   concise status reporting
   - Oversee the successful completion of assigned projects
   - Drive end-to-end project management tasks including roadmap
   development, project scope, schedule, action items, and highly effective
   issues/risk identification and management
   - Establish strong working relationships to ensure cross team
   collaboration and effective workstream interaction/management
   - Track and report highly effective project status, issues and provide
   recommendations for resolution
   - Utilize industry best practices, techniques, and standards throughout
   entire project execution
   - Monitor progress and adjust as needed
   - Measure project performance to identify areas for improvement

*What you should bring to the table: *

   - Highly flexible, high energy, hands-on project management capabilities
   are necessary!
   - Strong executor with a strategic mindset
   - Experience in a Consumer Channels or Partner focused organization a
   plus
   - 5+ years of Project Management experience
   - Bachelor’s degree in a related field is required
   - Must possess strong cross team/group/org collaboration skills; ability
   to foresee and analyze project risks, develop risk management plan, and
   mitigate subsequent issues
   - High-powered analytical skills and the ability to understand concepts
   and situations that pass by many others
   - Must have excellent oral and written communication skills
   - Proficiency in Microsoft Office required
   - A well-balanced mix of planning, monitoring, and controlling using
   demonstrated project management methodologies, tools, techniques, and best
   practices
   - Strong leadership capabilities, ability to engage, influence and
   motivate team members
   - Excellent communication skills with the ability to develop and manage
   a Communications Plan
   - Ability to assess and make critical decisions and/or recommendations
   - Must present a professional image in conduct, attitude, and attire
   - Must be legally authorized to work in the United States without
   limitation





*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcO_MX3T_DYxH4e9zHpSqcbbdq3Jwkb3agEGdjg_jHaKfA%40mail.gmail.com.


[android-developers] SAP ABAP ISU Consultant in Boca Raton, FL

2021-03-17 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: SAP ABAP ISU Consultant *

*Location: **Boca Raton, FL*

*Duration: 12 Months Contract*



*Required Skills :*

   - 5 years SAP ABAP ISU experience
   - ODATA experience is must
   - SAP IS-U is SAP's Industry-Specific Solution for the Utilities Industry
   - Work Timing: 8 AM - 5 PM EST



*Details:*

Full Name



Visa Status

Availability

Current Location

Willing to Relocate..?

Contact Number for interview



Email ID



Webcam ID (Skype )



Passport Number for (EAD and H1B)



Full DOB (DD/MM/)



Last 4 Digits of SSN#



Total IT Exp



Degree- (which degree) & Year of Graduation



Interview Availability for next two days



Face to Face (Yes/No)

Currently Any Interviews in pipe line..?





*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email: cha...@klntek.com *

*Gtalk: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcO9h_T1QR%3DkO4brRPc_1FFXZb_SvE59N8_aU%3Dg_%2BrZZnA%40mail.gmail.com.


[android-developers] Cloudera Developers in Bridgewater, NJ

2021-03-18 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Cloudera Developers*

*Location: Bridgewater, NJ*

*12 months contract*



Experience: 6+ years



· Develop components for Cloudera with ETL related to data
ingestion, storage, transformations and analytics

· Test data components and ensure they meet requirements

· Ensure the unit of code and design follow standards

· Incorporate new and existing technology platforms with defined use

· Collaborate with other developers and architects to enhance the
capabilities of the platforms

· Assist in cross-team collaboration and design discussions

· Provide sandbox functionality to users of the datasets to build
models for analysis

· Must consist of hands-on experience with a full project
life-cycle  with the following features:

· Data volumes in terabytes with vertical and horizontal scalability

· Structured and unstructured/semi-structured data

· High speed querying

· Analytics use cases including in-memory processing

· Metadata management



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMLx3BOUTENEJVNmbYdQ62e0NEa3hNo1ZCkUcAM1EV%3DDg%40mail.gmail.com.


[android-developers] Java developer with Scala ** Remote Position**

2021-03-25 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Java developer with Scala*

*Location: Remote*

*12 Months contract*



*Job description:*

· 7+ years of professional experience in building applications in
Java/Scala (Functional Programming), Spring, basic HTML, Apache Velocity
template scripting and other open source technologies.

· 5+ years of experience in database access layer frameworks like
Slick/Mybatis etc.

· 5+ years of experience in CI/CD tools and build tools like
Gradle, managing code repositories with Git.

· 3+ years of experience in creating and consuming RESTful services.

· 2+ years exposure to work in Unix/Linux environments.

· Should also possess database skills (preferably DB2) to design
new or alter existing table structures to satisfy specifications and
requirements.

· 2+ years of experience working in test-drive development &
continuous integration model.

· Excellent communication and problem-solving skills.

· Release Management and application support skills.

· Secondary Skills / Desired skills

· Exposure to performance tuning of Apache Spark application.

· Exposure to Behavior Driven Development (Cucumber).

· Working experience with Agile methodologies would be useful




*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPncfn_ViHyn7ndXha%2Bu%3DR-92fp1K7yuG%2Bv9bZsbJ%2BtuA%40mail.gmail.com.


[android-developers] Informatica developer with Azure in San Antonio, TX

2021-03-29 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Informatica developer*

*Location: San Antonio, TX*

*12 Months contract*



*Job Description:*



· Should have knowledge of Data Modeling / Data warehouse Designing
concepts

· Experience with IICS, Azure is must.

· Hands on experience in SQL (Oracle)

· Should have interacted with the customers / business analysts in
gathering requirements and independently able to design and deliver the
Informatica Mappings.

· Should have experience in scheduling the Informatica mapping
using the Informatica workflow manager


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOyH-1x%2BPraGrSLhOVJJAbv96qWhwasrVDz6XCjxP1sJA%40mail.gmail.com.


[android-developers] Big data engineer in Chicago, IL/ Richmond, VA

2021-03-31 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Big data engineer*

*Location: Chicago, IL/ Richmond, VA/ Mclean, VA/ Wilmington, DE*

*Duration: 12 Months Contract*



*Job Description:*



· Need 10+Yrs of Experience

· *Should have strong experience in Strong Spark/ Scala or Python
coding. *

· Experience with RDD, Data frames

· AWS Experience is must.

· Experience with these AWS tools S3, IAM, EC2, EMR, AWS CLI
exposure, Lambda is must.


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcNJOKaHYMxJ8OzDmLRax9Dm2XozYf6k27kRt%2BDV2NUBDg%40mail.gmail.com.


[android-developers] UI Developer in San Antonio, TX (Remote till Pandemic)

2021-04-01 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: UI Developer*

*Location: San Antonio, TX*

*Duration: 12 Months Contract*


*Job Description:*

   - 10+ Years of IT
   - Strong experience with frontend technologies like *HTML5*, *CSS3*,
   Bootstrap, Material Designs Scripting languages like *JavaScript*,
   *JQuery*, *AJAX*, *Angular 2+*, *NodeJS, ExpressJS, BackboneJS and *in
   *ReactJS*.
   - Experience in writing test cases using *JUnit* framework, *Mockito*
   and Used *Postman* for API’s testing.
   - Experience in *Open API standards, Swagger*
   - Experience with *CI/CD tooling, such as GitLab and/or Jenkins.*
   - Experience in Containerization tools like* Docker, Kubernetes,
   Openshift*
   - Advanced experience with *SQL Queries*, Databases and SQL Server
   Stored Procedures
   - Demonstrated ability to work in a fast-paced, highly technical
   environment.
   - UX experience is a strong Plus
   - Excellent communications skills, both written and verbal.
   - Ability to troubleshoot complex system issues.
   - Ability to handle multiple tasks simultaneously.
   - Ability to translate user requirements into technical specifications.
   - Ability to train and mentor junior level developers.

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPms67Mso%3DOV%2BsX0h4C-pkRPxYEx-U3XAU7DuACrjkPBw%40mail.gmail.com.


[android-developers] Salesforce Health Cloud Developer in Chicago, IL

2021-04-07 Thread Chaitanya Puvvada
Hi,

Please check the below position and reply back with the below details and
updated resume if you are comfortable.



*Title: Salesforce Health Cloud Developer*

*Location: Chicago, IL*

*Duration: Long Term*



*Need 9+ Years of Experience required.*



*Job Description*:

·  Salesforce Health Cloud Developer

·  Required Technical Skill Set, Health cloud features, Apex
programming, LWC creation, SOQL, SOSL, HTML, Javascript

·  Desired Competencies (Technical/Behavioral Competency)

·  Experience in Heroku Dynos, Slugs, Buildpacks

·  Advanced knowledge of Salesforce CRM platforms

·  Good knowledge on Care management, Clinical data management,
Complete patient view, EHR integration, communities implementation, LWC
creation

·  Designing, coding, and implementing Salesforce applications


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcOFZOWnKZCJy6tAcmVMOZ%3DAqvg2C2xQc6sf3OtsOJO8Rg%40mail.gmail.com.


[android-developers] Data engineer in Chicago, IL/ Richmond, VA (Min 10Yrs)

2021-04-08 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Data engineer*

*Location: Chicago, IL/ Richmond, VA*

*Duration: 12 Months Contract*



*Job Description:*



· Need 10+Yrs of Experience

· *Should have strong experience in Strong Spark/ Scala or Python
coding. *

· Experience with RDD, Data frames

· AWS Experience is must.

· Experience with these AWS tools S3, IAM, EC2, EMR, AWS CLI
exposure, Lambda is must.


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMa0jeSDbRGD3-oHLjuSrpPryhy-1LrNNFE06hvLB-T2w%40mail.gmail.com.


[android-developers] JavaFullstack Developer with Kafka in San Antonio, TX

2021-04-15 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Role: Java Fullstack Developer*

*Location: San Antonio, TX*

*Duration: 12 Months Contract*



*Job Description:*



· 7+ years of full-stack coding experience

· Experience working with AWS

· Hands-on experience with APIs

· Experience with Kafka

· BS in Computer Science or related experience.

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPHbqExiSk-hR7kW6gh7gqak%2BT4hasvZ9m4VTJy0Fb%3D3Q%40mail.gmail.com.


[android-developers] ETL Developer in Atlanta, GA

2021-04-19 Thread Chaitanya Puvvada
Hi,

Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title: ETL Developer*

*Location: Atlanta, GA*

*Duration: 12 months +*



*Job Description*

· Design, build and deploy effective SSIS packages

· Experience with SQL.

· Experience with BigQuery.

· Implement stored procedures and effectively query a database

· Translate requirements from the business and analyst into
technical code

· Identify and test for bugs and bottlenecks in the ETL solution

· Provide support and fix issues in the packages

· Writes advanced SQL including some query tuning

· Experience designing and building complete ETL/SSIS processes
moving and transforming data for ODS, Staging, and Data Warehousing

*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMbHQAzuoHRcQ9Cm9Po9GNN1C%2B00nyy_dWu-1AwUM4WSw%40mail.gmail.com.


[android-developers] Sr .Net Developer with GCP in St Louis, MO

2021-04-19 Thread Chaitanya Puvvada
Hi,

Please check the below position and reply back with the below details and
updated resume if you are comfortable





*Job Title: Sr. .Net Developer*

*Location: St Louis, MO*

*Duration:  Long term*



*Need - .NET with At least 8+ years of experience.*



*Key Skills:*

·   .NET Framework

·   SQL

·   GCP

·   Terraform

·   CI/CD

·   Microservices

·   REST API



*Job Details:*

*Responsibilities:*

·   Write clean, scalable code using .Net Core, C#.NET, ASP.Net, SQL
Server, HTML, CSS, and JavaScript.

·Utilize established development tools, guidelines and conventions.

·   Remain up to date with the terminology, concepts and best practices
for coding web apps.

·   Develop client displays and user interfaces.

·   Develop technical interfaces, specifications, and architecture.

·   Investigate and develop skills in new technologies

·   Create technical specifications and test plans

·   Monitor everyday activities of system and provide required support

·   Create and test software prototypes

·   Assist software personnel in handling project related work and
other requirements

·   Coordinate with other software professionals and developers



*Qualifications:*

·   BE/BTech/MS degree in Computer Science, Engineering or equivalent
with programming experience

·   Minimum 8+ years of design and/or development experience with C#,
ASP.NET, MVC, REST API, Web Services, Windows Forms and SQL Server in an
n-tier architecture

·   Experience in working with .NET Core, Cloud (GCP), NoSQL databases,
Terraform and CI/CD.

·   Strong background in object oriented development techniques

·   Software Design Patterns and Best Practices, e.g. SOA, Serverless,
Microservices

·   Database design and development (Microsoft SQL Server)

·   Experience in writing Unit Tests using frameworks such as NUnit

·   Experience with concurrent development source control (Git) and
continuous integration (Jenkins) and CI/CD.

·   Understanding of Software Development Life Cycle and Agile
methodologies.

·   Excellent troubleshooting and communication skills.

 *Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email: cha...@klntek.com *

*Gtalk: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcNSC3Fae4hS%2BsdA47YGn53GfJEn%2BBKh%2B6yyTjJWDZoqcA%40mail.gmail.com.


[android-developers] AWS Engineer in Princeton, NJ

2021-04-21 Thread Chaitanya Puvvada
Hi,
Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title:  AWS Technical Specialist *

*Location:  Princeton, NJ*

*Long Term Contract*



*Roles and Responsibility: *

Looking for a hands on AWS services who is passionate in doing following
activities:

· Providing deep software development knowledge with respect to
cloud architecture, design patterns and programming

· Architecting and developing client/customer applications to be
cloud optimized

· Advising and implementing AWS best practices

· Working as both an infrastructure and application development
specialist

· Implementing DevOps practices such as infrastructure as code,
continuous integration and automated deployment

· Develop modules or build Proof of concept for integrating with
multiple AWS Services

· Designs and implements larger research and proof of concept
projects as an individual contributor, focusing on one or a small number of
technologies or applications to be implemented into a larger platform.

· Expertise in articulating architectural choices within various
AWS services and solution methodologies

· Knowledge on migrating workloads to AWS is an added advantage



*Technical Experience:*

Overall 6-10 yrs. of application development experience with minimum 4+
years of good hand-on experience with AWS foundation services related to
compute, network, storage, content delivery, administration and security,
deployment and management, automation technologies.



Technical experience should have

· Extensive experience architecting, designing and programming
applications and RESTFUL Services in an AWS Cloud environment

· Experience architecting highly available systems that utilize
load balancing, horizontal scalability and high availability

· Strong practical application development experience on Linux and
Windows-based systems

· Expertise in developing competencies and references through
proof-of-concepts

· Expertise in Infra capacity sizing, costing of AWS services to
drive optimized solution architecture, leading to optimal infra investment
vs performance and scale

· Hands on programming skills in Node.js, Python, Java

· Hands on familiarity with Cloud Formation

· Experience with version control management platforms like SVN, GIT

· Must have strong scripting skills in Python, Bash and PowerShell

· Must have strong proficiency in AWS IAM

· Must have understanding of cloud networking and cloud security
fundamentals, concepts and design principles

· Must have knowledge on various authentication schemes LDAP based,
OpenID, Federated Identity, Single Sign On, O365

· Working Knowledge in AJAX, JQuery, Pyspark is an added advantage

· Experience with configuration management platforms like ansible
is an added advantage

· Extra curricula software development passion (e.g. active open
source contributor) is an added advantage

· Must have AWS Solution Architect Associate Certified

· Nice to have AWS Solution Architect Professional for this role.


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcMiWNf2rERS-iKgZz35w-fG_O5FAf%2BPrfyqOnTTbKe3yA%40mail.gmail.com.


[android-developers] OBIEE developer in Irvine, TX

2021-04-22 Thread Chaitanya Puvvada
*Hi, Please check below position and reply back with the below details and
updated resume if you are comfortable.*



*Job Title:  OBIEE developer*

*Location:  Irvine, TX*

*Long Term Contract*



*Responsibilities include:*

   1. Work collaboratively with the other members of the development teams
   on OBIEE platform changes and maintenance. �
   2. Work with business to relay technical information (to non technical
   leaders)
   3. Ensure that new data products, enhancements, and features are being
   delivered individually, and as a team (documentation, testing of changes).
   4. Ensure that corrective actions are properly managed in a way that
   prevents impact to other systems.
   5. Guarantee that Root Cause analysis is performed and documented in the
   event of a major outage.
   6. Manage enhancement requests and changes required to address quality
   issues including: documentation, scheduling and delivering solutions.
   7. Implement preventative and perfective improvements in order to ensure
   the highest level of systems quality.

Requirements:

   1. *Advanced OBIEE software development background (we use 12C, but will
   accept any experience with versions 11-12)*
   2. *Experience with OAC is a plus.*
   3. *Experience working with manufacturing, supply chain,
   accounting/finance related data is a plus.*
   4. Strong knowledge of/experience with ETL development (ODI) is a plus.
   5. Lead or management experience a plus, but not required
   6. *Experience gathering and relaying technical requirements
   required.�*
   7. Experience in Agile/Scrum environments
   8. Duties may require 24 hours, seven days per week on-call
   responsibility for critical outages or escalated issues.


*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcO-_sbDJ%3DBtjLA9zC6Z9KCq3DgaE-MQHTe3-4Q%3DUO862A%40mail.gmail.com.


[android-developers] AWS architect in Princeton, NJ

2021-04-23 Thread Chaitanya Puvvada
Hi,
Please check below position and reply back with the below details and
updated resume if you are comfortable.



*Job Title:  AWS architect*

*Location:  Princeton, NJ*

*Long Term Contract*



*Roles and Responsibility: *

Looking for a hands on AWS services who is passionate in doing following
activities:

· Providing deep software development knowledge with respect to
cloud architecture, design patterns and programming

· Architecting and developing client/customer applications to be
cloud optimized

· Advising and implementing AWS best practices

· Working as both an infrastructure and application development
specialist

· Implementing DevOps practices such as infrastructure as code,
continuous integration and automated deployment

· Develop modules or build Proof of concept for integrating with
multiple AWS Services

· Designs and implements larger research and proof of concept
projects as an individual contributor, focusing on one or a small number of
technologies or applications to be implemented into a larger platform.

· Expertise in articulating architectural choices within various
AWS services and solution methodologies

· Knowledge on migrating workloads to AWS is an added advantage



*Technical Experience:*

Overall 10 yrs. of application development experience with minimum 4+ years
of good hand-on experience with AWS foundation services related to compute,
network, storage, content delivery, administration and security, deployment
and management, automation technologies.



Technical experience should have

   - Extensive experience architecting, designing and programming
   applications and RESTFUL Services in an AWS Cloud environment
   - Experience architecting highly available systems that utilize load
   balancing, horizontal scalability and high availability
   - Strong practical application development experience on Linux and
   Windows-based systems
   - Expertise in developing competencies and references through
   proof-of-concepts
   - Expertise in Infra capacity sizing, costing of AWS services to drive
   optimized solution architecture, leading to optimal infra investment vs
   performance and scale
   - Hands on programming skills in Node.js, Python, Java
   - Hands on familiarity with Cloud Formation
   - Experience with version control management platforms like SVN, GIT
   - Must have strong scripting skills in Python, Bash and PowerShell
   - Must have strong proficiency in AWS IAM
   - Must have understanding of cloud networking and cloud security
   fundamentals, concepts and design principles



   - Must have knowledge on various authentication schemes LDAP based,
   OpenID, Federated Identity, Single Sign On, O365
   - Working Knowledge in AJAX, JQuery, Pyspark is an added advantage
   - Experience with configuration management platforms like ansible is an
   added advantage
   - Extra curricula software development passion (e.g. active open source
   contributor) is an added advantage
   - Must have AWS Solution Architect Associate Certified
   - Nice to have AWS Solution Architect Professional for this role.



*Regards*

*Chaitanya | Technical Recruiter*

*KLNtek/OQ Point*

*Email:* *cha...@klntek.com* 

*Gtalk**: chaitu.recruiter7*

*324 E. Foothill Blvd. Suit # 206*

*Arcadia, CA 91006 USA*

*www.KLNtek.com* <http://www.klntek.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CACteqcPyGPnL-jtCCSkYTxfFs724eXyXy%2BtwG6wsPOD3s%3D7Udg%40mail.gmail.com.


[android-developers] Lead QA Tester in Bellevue, WA

2021-04-27 Thread Chaitanya Puvvada
*Looking for a  **Lead QA Tester (Banking/Auto Finance domain),
Bellevue, Washington - 12 Months*



* Job Description*

For this position, we are looking for candidate who is having minimum of
10+ years of experience with the role of Senior QA Lead, Project
Coordinator and should have worked in Banking/Auto Finance domain along
with QA automation experience.

Client Job Description:
• Strong experience in Auto Finance, Banking (Retail, Commercial) domain.
• Strong Onsite Project Coordinator/QA Manager experience.
• Experience in client facing roles and ability to interact with Dev/QA
Team, Project Management, Business Analyst, Line of Business, Offshore Team.
• Strong ability in driving testing organization strategy, methodology,
improvement, and alignment across the Enterprise in partnership with
stakeholders, building and migrating to a Testing Center of Excellence.
• Extensive experience in planning Automation Strategy.
• Strong Experience in Selenium Automation Framework Setup, Maven, Jenkins
and other tools.
• Should have exposure to Katalan Studio Automation and HP UFT.
• Establishing connect between Customer and Testing Service lines to bring
in new thought process.
• Working experience on Contracts, SOW's, Invoicing, Budgeting.
• Managing demand dashboard for the requirements, review of demand with
Delivery and Program Managers for planning and fulfillment.
• Providing Key weekly/monthly metric reviews and analysis of the trends.
• Minimum years of experience: 10+
• Certifications Needed: No
• Interview Process (Is face to face required?) No



Best Wishes,

Balu Garikapati | IT Recruiter|

Email : balu.garikap...@itbtalent.com| ITBrainiac, Inc. |
http://www.itbrainiac.com/

Direct : 609 353 5828|Fax: (609) 228-5321

Princeton Forrestal Village, 116 Village Blvd. Suite # 200, Princeton, NJ
08540

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


[android-developers] ETL Developer in Richmond, VA F2F

2018-03-22 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself, *Chaitu* from R2 Technologies, We have a requirement for ETL
Developer at Richmond, VA. 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*cha...@r2techcorp.com* 



*Position:** ETL Developer*

*Location: **Richmond, VA*

*Duration: 6 months+*



*10 years of experience *



*Experience Required:*



· Expert designer, coder and tester for data warehouse programming
ETL Tools and UNIX shell scripts

· Expert Oracle database application developer including SQL

· Expert Oracle database application developer including PL/SQL

· Expert Oracle database application developer including
Materialized Views

· Expert Oracle database application developer including
Performance Tuning

· Expert Oracle database application developer including DDL
Operations

· Advanced skills defining business data requirements and the
characteristics of source system data

· Data modeling and dimensional data warehouse schema design
experience



*Experience Preferred:*



· Must be able to demonstrate ETL skills and capabilities; DMExpress

· Experience with data quality tools applied to ETL applications;
Experian Pandora



*Job description:*



· Analysis of source system data and business reporting
requirements, design of staging area and presentation layer objects in
Oracle, ETL software design, development and testing, documentation, and
maintenance work.

· Sources of data for the project will be Oracle primarily but not
exclusively.

· The goal is to build and populate a new dimensional data mart for
Child Welfare services reporting.

· Plans, develops, tests, and documents data warehouse ETL computer
programs and jobs.

· Evaluates user requests for new or modified application software
to determine feasibility, cost and time required, and compatibility with
current system & computer capabilities.

· Consults with team members and business users to identify current
operating procedures and clarify objectives.

· Formulates plans outlining steps required to develop programs
using structured analysis & design, agile, or other suitable method.



· The contractor will work with business stakeholders, business
analysts, BI architect, ETL team lead, and potentially other developers.

· The tools and technologies used for this work are specialized,
and the contractor will have the responsibility to develop, recommend, and
communicate their best practices.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Sr. Test Engineer in Atlanta, GA

2018-03-27 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself, *Chaitu* from R2 Technologies, We have a requirement for *Sr. Test
Engineer* at *Atlanta, GA*. 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 *470-242-7345 Ex-302*, Drop the suitable profiles



We are looking for *Sr. Test Engineer **in Atlanta, GA *to join a growing,
dynamic Software Engineering Team. The right person will have experience
developing software by following various development methodologies and the
ability to bring and apply the best of breed practices to the projects.



*Position: **Sr. Test Engineer*

*Location: Atlanta, GA*

*Duration:  Long Term*



*Sr. Test Engineer – Mobile Automation Testing – Need someone with C#,
Scripting skills and building C# Automation Test Scripts in a Xamarin.*



   - 6 + years of experience required
   - Experience with testing mobile native apps
   - Coding and scripting skills with C#, JavaScript and Java.
   - Mobile automation testing experience on application built on Xamarin.
   - Hands on experience with C# for building automation test scripts.
   - Test Engineer job description has been developed to support both the
   testing functions in the System Test and Integration Test environments.
   - System Test Engineer is responsible for creating master test plans,
   test cases, and test schedules for the projects.
   - Primary responsibilities include the execution of test cases and
   scenarios across individual development projects within the System Test
   environment.
   - Ensures established methodologies and standards are used in product
   testing.
   - Integration Test Engineer has responsibility for providing mentoring
   support to the project team throughout the Development Lifecycle.
   - This mentoring begins in the requirements development phase to ensure
   all requirements are both testable and verifiable, and continues through
   system test.
   - The Integration Test Engineer is responsible for conducting
   Integration test and to support the implementation methodologies of new
   documented, standardized, repeatable testing processes.






*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Junior Java Developer in Atlanta, GA F2F

2018-03-28 Thread Chaitanya Puvvada
Hi,



Hope you are doing good, please see the requirement below and share your
candidate resume to me at cha...@r2techcorp.com



*This is a Junior position and do not send Senior candidate profiles*



Junior Java Developer

Atlanta, GA



F2F required



Description:

4 years of Experience in Java/J2EE

Experience on Spring and Hibernate needed

Experience on any database



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Performance Tester in Moorestown, NJ (Min 8 Yrs EXP)

2018-03-30 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitu* from R2 Technologies, We have a requirement for *Performance
Tester* at *Moorestown, NJ*. 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.  Drop the
suitable profiles on *cha...@r2techcorp.com *



*Position:** Performance Tester*

*Location: **Moorestown, NJ*

*Duration: 6 months+*





Experience in Performance tools likes Apache Jmeter, Load runner, Cloud
test etc

· Hands on for open source load test like Tsung, Gatling

· Working experience in Monitoring tools Raygun , AppDynamics etc.

· Experience in performance measurement for some NoSQL Open source
database like Cassandra etc is a must.

· Experience in performance measurement for Apache components like
Apache Kafka, Spark, Flink is a plus.

· Experience in HSD, cable domain is a pluys.

· Experience in networking topics like routers, switch, DHCP, DNS
is a plus.

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


[android-developers] SDET Consultant

2018-04-02 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* chaitu* from R2 Technologies, We have a requirement for *SEDT
Consultant *at *Pleasanton CA and Henderson NV*. 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 *470-242-7345 Ex-302*, Drop the
suitable profiles on *cha...@r2techcorp.com* 



*NOTE: Passport number is Must*



*Position: SDET Consultant*

*Location: **Pleasanton CA and Henderson NV*

*Duration: 6 months+*





*Skills Required:*

Total – 10 years combined experience in development and testing

Min 4 – 5 years of Java development

SDET experience working in agile scrum teams

White box/unit testing experience

5 years hands on Automation experience using tools like selenium

Knowledge about CI/CD tools like Jenkins




*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] SQL DBA with Teradata experience

2018-04-02 Thread Chaitanya Puvvada
 Please share profiles to *hva...@r2techcorp.com *

SQL DBA with Teradata experience
Locaiton – Dallas TX
6 Months+

*Description:*
Need atleast 5+ yrs experience on SQL DBA
Should have atleast 3 years experience on Teradata


*Thanks & Regards,*

*Varma*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 303*|**Email: hva...@r2techcorp.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/CACteqcPxR%3DN5UfT9Tu0WLY0HPErwUe4QAHiE44yhKR2cZX3Gmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SDET Consultant in Pleasanton CA and Henderson NV

2018-04-04 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* chaitu* from R2 Technologies, We have a requirement for *SEDT
Consultant *at *Pleasanton CA and Henderson NV*. 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 *470-242-7345 Ex-302*, Drop the
suitable profiles on *cha...@r2techcorp.com
/chaitu.recruit...@gmail.com
*



*NOTE: Passport number is Must for OPT/H1*



*Position: SDET Consultant*

*Location: **Pleasanton CA and Henderson NV*

*Duration: 6 months+*



*Skills Required:*

· Total – 10 years combined experience in development and testing

· Min 4 – 5 years of Java development

· SDET experience working in agile scrum teams

· White box/unit testing experience

· 5 years hands on Automation experience using tools like selenium

· Knowledge about CI/CD tools like Jenkins





*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Hot List of R2 technologies

2018-04-05 Thread Chaitanya Puvvada
Hi,

Greetings for the day,

Please find the list of skilled *R2 Technologies* consultants who are
actively looking for new role and please share your requirements to
*chaitu@**r2techcorp.com* <http://r2techcorp.com/> or you can call to
me *470-242-7345
EXT: 302*



*R2 Technologies Hot List*

*Consultants*

*Skillsets*

*Current Location*

*Relocation*

*Experience*

*Selvi*

QA Manager

Atlanta, GA

ONLY EST

12+ Years

*Olumide*

Project Manager/SharePoint

Atlanta, GA

Yes

12+ Years

*Sushma*

Sales force UI Developer

Atlanta, GA

Yes

4 Years

*Ravi Teja*

SQL Developer

Fort Lauderdale, FL

Yes

5 Years

*Rahul*

Data Analyst

Atlanta, GA

Yes

5+ Years

*Rasheed*

Java Developer

Atlanta, GA

Yes

5 Years

*Madhuri*

Front End UI Developer

Seattle, WA

Yes

5 Years

*Arushi*

Business Analyst

Buford, GA

Yes

5 Years

*Rohit*

UI Developer

Atlanta, GA

Yes

5 Years

*Archana*

UI Developer

Windsor, CT

Yes

8 Years

*Uma*

Sr. Java Developer/Mark Logic

Boston, MA

Yes

7 Years

*Siva*

AWS Devops

Herndon, VA

Yes

10+ Years


*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Agile Coach in Detroit, Michigan

2018-04-05 Thread Chaitanya Puvvada
 and test automation

· Legacy code remediation

*SYSTEMS, DEVOPS*

· Continuous integration

· Virtualization, cloud, and infrastructure as code

· Development pipeline and continuous delivery

· Competitive candidates will have experience with Pivotal Cloud
Foundation (PCF)

*LEAN/AGILE PRACTITIONER*

· Works effectively with Kanban and Scrum approaches, and coaches
and mentors teams to improve their lean/agile approach. This includes
concepts and activities such as improving flow, limiting work in progress,
backlog definition and refinement (e.g story breakdown), and fast delivery
of value.

*Responsibilities*

· Collaborate with Expedition Lead and Transformation coach to
understand the Expedition roadmap and necessary outcomes.

· Develop and deliver coaching plan to get Expedition teams to
their targeted outcomes.

· Effectively detect, communicate, and escalate organizational,
technological, and other impediments.

· Teach and mentor Expedition team members on Lean/Agile approaches
for flowing work.

· Teach and mentor Expedition team members on XP engineering
practices, including TDD, CI and pairing. Facilitate code reviews, provide
leadership perspective on design and code quality.

· Accountable to delivery and performance for assigned product team

· Coach Expeditions within the system of delivery to implement
DevOps practices and technologies, including delivery pipeline design and
development, cloud technologies and infrastructure as code, and continuous
delivery.





*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Agile Coach in Detroit, Michigan

2018-04-06 Thread Chaitanya Puvvada
 quality.

· Test-first, test-driven approach.

· Refactoring.

· Pair programming and cross-disciplinary pairing.

· Build and test automation

· Legacy code remediation

*SYSTEMS, DEVOPS*

· Continuous integration

· Virtualization, cloud, and infrastructure as code

· Development pipeline and continuous delivery

· Competitive candidates will have experience with Pivotal Cloud
Foundation (PCF)

*LEAN/AGILE PRACTITIONER*

· Works effectively with Kanban and Scrum approaches, and coaches
and mentors teams to improve their lean/agile approach. This includes
concepts and activities such as improving flow, limiting work in progress,
backlog definition and refinement (e.g story breakdown), and fast delivery
of value.

*Responsibilities*

· Collaborate with Expedition Lead and Transformation coach to
understand the Expedition roadmap and necessary outcomes.

· Develop and deliver coaching plan to get Expedition teams to
their targeted outcomes.

· Effectively detect, communicate, and escalate organizational,
technological, and other impediments.

· Teach and mentor Expedition team members on Lean/Agile approaches
for flowing work.

· Teach and mentor Expedition team members on XP engineering
practices, including TDD, CI and pairing. Facilitate code reviews, provide
leadership perspective on design and code quality.

· Accountable to delivery and performance for assigned product team

· Coach Expeditions within the system of delivery to implement
DevOps practices and technologies, including delivery pipeline design and
development, cloud technologies and infrastructure as code, and continuous
delivery.





*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
ha...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Java developer with Swing(Passport number is must for submission)

2018-04-09 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
We represent  *R2 Technologies*. We have a requirement for *Java Developer
with swing* at *Cupertino, 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 *470-242-7345 Ex-302. *Drop the suitable profiles on
*chaita...@r2techcorp.com* 





*Position: Java developer with Swing*

*Location: Cupertino, CA*

*Duration: 6 months+*



*Job description*

· 8+ years ‘experience in java/J2EE.

· Experience in Swing, Hibernate, spring, Struts and Core Java

· Experience in Web Services Rest/SOAP.

· Experience in JQuery and Ajax.

· Experience in SQL (Database).





*Qualification*

· Bachelor’s degree from an accredited institution required in
Computer Science, Computer Engineering, Information Systems/Technology, or
related major field of study (THROUGHOUT 60%).

· Candidate should not have any gap in education or employment.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Red Hat Engineer with cloud experience

2018-04-11 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for *Red
Hat Engineer with cloud experience *at *Dallas, TX*. 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 *470-242-7345 Ex-302*, Drop the
suitable profiles on *chaita...@r2techcorp.com *



*Position: Red Hat Engineer with cloud experience*

*Location: Dallas, TX*

*Duration: 6 months+*



NOTE: Consultant must able to take coding Test



· Redhat Certification is mandatory

· Expertise on Cloud Platform such as Azure, AWS.

· Experience on Application development and deployment using Java.
Experience with Linux or UNIX software development.

· Experience with development using OpenShift. Continuous
integration software development models using Jenkins, Teamcity etc.

· Experience with containerization, the Docker project, and
OpenShift

· Understanding of Red Hat Enterprise Linux (RHEL)

· Experience with Linux container and container clustering
technologies like Docker, Kubernetes and the Gluster storage solution.

· Experience with the Red Hat OpenShift product.

· Experience in defining and implementing OpenShift security and
infrastructure policies.

· Offer Container-as-a-Service (CaaS) and Platform-as-a-Service
(PaaS) through OpenShift by Red Hat

· Understanding of microservices, current application architectures
and frameworks

· Experience with broader Java technologies platforms

· and Git



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] React/Redux developer in San Francisco, CA

2018-04-12 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for
*React/Redux
developer* *experience *at *San Francisco, 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 *470-242-7345 Ex-302*, Drop the
suitable profiles on *chaita...@r2techcorp.com* 





*Position: React/Redux developer Location: San Francisco, CA Duration: 6
Months +*



*Job description:*



   - 8+ years building interactive web experiences with a strong emphasis
   on single page applications and RESTful web service
   - Understanding of Functional Programming Concepts
   - Ability to visualize data / data science experience
   - Experience architecting high performance multi-tier systems
   - REACT, REDUX,HTML5, JavaScript, CSS3, Node.JS
   - Self-motivated, collaborative team member with outstanding
   interpersonal, communication, and troubleshooting skills



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] .Net developer in Lansing, MI (F2F Interview must)

2018-04-17 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for *.Net
developer* at *Lansing, MI.* 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*chaita...@r2techcorp.com* 




*Position: .Net developer Location: **Lansing, MI*
* Duration: 6 Months +*



*8+ years of experience *



*Experience Required:*



· Advanced skill in .NET programming.

· Advanced skills in computer programming, data modeling, and
object-oriented programming procedures and techniques.

· Advanced skills in Visual Studio and version control such as Team
Foundation Server

· Advanced skill in SQL.

· Advanced skills in HTML and CSS.

· Ability to communicate technical terminology that is appropriate
for the target audience.

· Ability to provide quality code as well as customer service, and
build trust through integrity of work, is required

· Knowledge and proven ability in using UI Framework such as
Bootstrap, Angular Material, jQuery UI, Foundations, etc.

· Knowledge and proven ability in responsive web application design.

· Knowledge and proven ability using Angular/AngularJS





*Experience Preferred:*



· Knowledge and proven ability in .NET Core

· Knowledge and proven ability using a CSS compiler such as SASS or
LESS

· Knowledge and proven ability in Entity Framework



*Job Description:*



We are looking for strong developer with a desire to learn and utilize
their broad skill sets to drive innovation on one of our client’s key
solutions. If you have a passion for development, love solving challenging
problems and writing high quality code, we want to talk to you. Experience
designing and implementing large, highly complicated systems, will be a
huge plus. We are looking for a talented .NET developer who is a team
player to join our winning team.



· Serve as a senior level Programmer/Analyst under the guidance of
the immediate supervisor and project technical lead.

· Participate in daily scrums, project planning, and project review
meetings.

· Design and code solution to State of Michigan standards.

· Problem solve, debug and optimize code, and automate routine
tasks


· Conduct peer code reviews

· Research, test and recommend new development tools and
methodologies, languages, upgrades and equipment as directed by team lead.

· Provide professional technical expertise to the DTMB AS PMO
Managers and client agency managers and supervisors in IT project
estimating, and budgeting.

· Represents DTMB as a technical resource at meeting.


*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Senior DevOps Engineer in Santa Clara Valley, CA *(Need Locals)*

2018-04-18 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for *Senior
DevOps Engineer*

at *Santa Clara Valley, 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*chaita...@r2techcorp.com* 



*Position: Senior DevOps Engineer*

*Location: Santa Clara Valley, CA*

*Duration: 6 Months+*

*Need Locals*

*Job Summary:*



· In depth knowledge of version control tools, knowledge of Git and
the GitHub flow.

· Understand the Maven project object model.

· Expert knowledge of Ansible and writing playbooks.

· Seasoned in Jenkins: setup automation jobs and workflows and
multi-node Master/Slave clusters.

· Proficient in using the Unix command line and light system
administration.

· Excellent communication skills and ability to work closely with
operations and development teams.



*Preferred:*



· Comfortable working with large-scale server deployments.

· Familiarity with pipeline as code and Jenkins files.

· Knowledge of Jenkins plugins.

· Used Gradle to build server and front-end applications.

· Exposure to SQL and NoSQL database deployment techniques in
CI/CD  context.

· Knowledge of additional programming languages and platforms:
shell scripting, Python, Java, Scala, Ruby, JavaScript.

· Hands-on with Docker and Kubernetes.

· Understanding the security aspects of CI/CD.

· Strong ability and enthusiasm to learn new technologies in a
short  time.



*Description:*



· You will be in charge of the continuous integration and delivery
pipeline.

· Foster self service and collaboration among the engineering team
members.

· Streamline and improve automation, build new features.

· Collaborate with other engineers on code reviews, internal
infrastructure, and process enhancements.

· Research and stay abreast of the latest threats, be advocate of
the best practices.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] UI with Adobe AEM

2018-04-20 Thread Chaitanya Puvvada
*Hi,*



* Hope you are doing great, Myself, Chaitanya from R2 Technologies, We have
a requirement for  UI with Adobe AEM  at  Dallas, Texas . 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 470-242-7345 Ex-302, Drop the
suitable profiles on chaita...@r2techcorp.com  *

*UI with Adobe AEM *

*Location: Dallas, Texas*

*Duration: 6months+*


*Description:*


   - HTML
   - CSS3
   - JavaScript
   - Adobe AEM
   - Good to Have ReactJS/ AngularJS
   - *Must Have 1 year of Adobe AEM Experience*



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Enterprise level Agile Coach

2018-04-23 Thread Chaitanya Puvvada
*Enterprise level Agile Coach *

*Location: Herndon, VA, Reston, VA, Arlington, VA & Washington, DC*



We have four needs for *Enterprise *level Agile Coaches, most need a
Technical bend to them.  The Job description is below. Prospective
candidates should have no gaps in resumes, have solid degrees, great
communications skills with 5-10+ years’ experience.



*Must have:*

   - We need Technical coaches found pairing with developers to help them
   apply test driven development, support developers in refactoring work, help
   improve the continuous integration system or other activities that are
   close to the code.
   - Technical coaches are experts in what they do, they aim to both
   transfer their knowledge and enthuse team members to try new approaches and
   techniques.
   - Superb Communication Skills  -  It’s a client facing position
   - Certified ScrumMaster (CSM) and SAFe Agilist (SA)
   - Need Behavior Driven Development (BDD), Test Driven Development (TDD)
   and/OR Acceptance Test Driven Development (ATDD) experience.
   - Continuous improvement experience.


*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Big data Consultant in Philadelphia, PA(F2F Interview)

2018-04-23 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya* from R2 Technologies, We have a requirement for *Big
data Consultant *at *Philadelphia, PA*. 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 *470-242-7345 Ex-302*, Drop the suitable profiles
on *chaita...@r2techcorp.com
*



*Position: Big data Consultant*

*Location: **Philadelphia, PA*

*Duration: 6 months+*

*F2F Interview*



*Need to provide passport number for submission*


*Expert In:*

· Object oriented programming in Python and/or Scala is a must have.

· Build Custom Data Pipelines in Python and Scala that Clean,
Transform and Aggregate data from many different sources

· Expert level working experience with Spark and related big data
technologies such as: MapReduce, Hadoop, HBase, Hive, Elastic Search

· Data Structures and Data Processing Algorithms and Frameworks

· Data Migration, high throughput Data Pipelines

· Massively Parallel Processing using Python Tools

· Big data modelling and ETL Processes

· Ability to analyze Performance Issues in Big Data Environment

· Data Modelling, Data Transfer and Storage, Partitioning, Indexing
and caching Techniques

· Analytical views and data visualization

· RDBMS, In-Memory, NoSQL, Columnar and Document Storage Systems

· Batch Processing with Petabyte Scale data sets

· Communication and Collaboration

*Well Experienced With:*

· Large Volumes of Data Processing and Developing Automated ETL
Processes

· High Throughput Low Latency Systems

· Large Scale Data Modelling from Big Data perspective

· Big Data Structures in Python

· PyData, Anaconda, NumPy, PyTables, DataFrames, RDDs, Jupyter
Notebook

· PyHive, PySpark

· JSON/Parquet Data formats

· Real time streaming with either Spark Streaming of Kafka

· Develop API's/Tools that help share data with Enterprise

· Debugging in Big Data environment

· Version control Systems: Git/github/BitBucket etc.

· DevOps Skills with Python, Shell Scripts, Ansible, Docker etc.

*Nice to have:*

· Familiarity with PyPi

· Workflow Management Tools such as Luigi, Apache Airflow,
Snowflow, Apache NiFi or similar

· Experience Developing Models that help Predictions

· Experience with Functional Programming is a Big Plus

*Non-Technical Experience:*

· Effective Collaborator and Team Player

· Quick Learner and Self-starter with excellent debugging skills

· Ability to foresee scalability issues and make judgements



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] MDM Consultant in Weston, MA

2018-04-23 Thread Chaitanya Puvvada
 *MDM Consultant*
*7**+ Month* *(Contract)*
*Weston**, MA*

*Please share profiles to hva...@r2techcorp.com .*

**Client PREFERS LOCAL candidates (MA, RI, NH, CT, NY, or NJ)**
*Candidate must be available to come on site for final interview***


*Job Description*
·   5+ Years of Master Data Management (MDM) experience is a MUST.
·   Understanding of SOA, Data integration, Data Quality, data
architecture and Master Data is MUST.
·   Experience with Informatica MDM 10.2 is REQUIRED.
·   MUST have experience with any MDM configurations, i.e. Data
modeling Data Mappings, Data validation methodology, Match and Merge rules
configuration, writing and customizing user exits.
·   Pharmaceutical experience and Veeva Network Certification
preferred.

*Best Wishes*

*Varma HD*
*Email:* *hva...@r2techcorp.com *
*R2 Technologies** | **www.r2techcorp.com* 

*6515Shi**loh Rd, Unit 110, Alpharetta, GA 30005*
*Desk:* *470-242-7345 x 303 *
*LinkedIn:* *https://www.linkedin.com/in/varma-h-112677133/


*
*G-Talk:* *harshith.recruite...@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/CACteqcNCv%2BbTX5gqUABbMYfKe%3Dgz4Tx_UxU%2BVjnDttusDutMvA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Jr.Project Manager in Dimondale, MI(Face to Face interview)

2018-04-24 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself, *Chaitu* from R2 Technologies, We have a requirement for *Jr.Project
Manager* at *Dimondale, MI*. 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*chaita...@r2techcorp.com
*



*Position: **Jr.Project Manager*

*Location: **Dimondale, MI*

*Duration: 6 months+*

*In Person Only*



*5+ years of experience *

*Need to provide passport number for submission*



*Experience Required*



· Information Technology Background

· Excellent communication and Project coordinating skills

· Expert skill level in using Microsoft products ( Word, Excel,
Powerpoint, etc.)

· Strong skills in project scheduling utilizing a project
scheduling and portfolio management tool such as



*Experience Preferred*



· MS Project, Changepoint etc.

· Degree in Computer Science, Information Systems, Engineering,
Business, Or Equivalent



*Job Description:*


Initially this position will be working as a Project Coordinator and shall
provide day-to-day coordination of project tasks. The project coordinator
maintains version control and provides administrative support for project
management information system. Ability to communicate at all levels of an
organization and third parties. Experience with similar scale roles and
organizations. The project coordinator is task focused. Works under the
direction of the project manager and reports to a project and program
manager.



As this position gains working knowledge of the area, small independent
projects will be given to this position to manage.



*Primary role and responsibility includes, but is not limited to:*



· Updates Project status, issues/risks, next steps, accomplishment,
budget etc. in Portfolio and Project Management tool on a weekly basis.

· Reviews required project documents and completes QA on those
documents and follows thru to remediate any QA findings.

· Prepares, maintain and update Project Schedule on a regular basis

· Schedule Project meetings and take Meeting Notes & Publish

· Create project artifacts in various capacities

· Works closely with Program manager and serves as a backup person
to the Sr. Project Manager/Program Manager, as needed

· Provide project management for project activities to ensure that
the project is completed on time, within budget and within scope.

· Define project scope, duration, resources and cost, as well as
the best course of action/approach to attain the project objectives.

· Provide project management for project scheduling, tracking,
issue management, risk management, change management, and status reporting.

· Follow the State Unified Information Technology Environment
(SUITE) Project Management Methodology (PMM) and System Engineering
Methodology (SEM), based on Industry standard PMI framework and SEI’sCMMI
framework.

· Utilize the State’s Project Portfolio Management (PPM) tool
(Changepoint) on all projects.

· Plans and coordinates work with teams.  Designs and implements
project plans.  Generally work with other IT managers and IT technical
teams.  Relies on experience and judgment to plan and accomplish goals.

· Self-directed and independent. Responsible for the coordination
and completion of projects. Oversees all aspects of projects. Sets
deadlines, assigns responsibilities, and monitors and summarizes progress
of project. Prepares reports and matrix for upper management regarding
status of project.

*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Senior DevOps Engineer with Chef in Atlanta, GA

2018-04-25 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for *Senior
DevOps Engineer *at  *Atlanta, GA.* 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*chaita...@r2techcorp.com* 



*Role: Senior DevOps Engineer with Chef*

*Location: Atlanta, GA*

*Job type: Contract*



*Need to provide passport number/I-94 for submission*



*Job Expectations:*

· Extensive Automation Experience with Build/deployment, Software
Configuration/Continuous Integration/Continuous Delivery/Release
Engineering.

· Looking for a DevOps Engineer with strong experience with Amazon
Web Services automation.

· Configuration management tools Chef, Ansible, Puppet or Salt

· Experience with the automation of cloud infrastructure using
Terraform, chef and ansible.

· Strong knowledge of AWS components including but not limited to
CodeBuild, CodePipeline, ECS, ECR, ELB, S3, ALB, CloudWatch, CloudTrail,
API Gateway, Lambda, IAM, VPC, Security Groups, etc

· Experience of DevOps with AWS CLI, Terraform, Chef, Ansible,
Jenkins, Maven

· Cloud migration experience (AWS).

· Experience in automating manual processes using Python, Ruby,
Unix Shell (bash, ksh), perl, etc.

· Experience in monitoring and setting up alerting for Cloud
components

· Strong experience in Design/Implementation
containers/applications in scalable HA/DR multi-tier cloud environments.

· Individual work closely in our engineering team to build our next
generation platform using cloud technologies. The ideal candidate is an
individual who thrives on new challenges, An in-depth knowledge of Linux
troubleshooting, including networking, file systems, security, and the
kernel.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Senior Java developer in Atlanta, GA (F2F Interview)

2018-04-26 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
We represent  *R2 Technologies*. We have a requirement for *Senior Java
developer* at *Atlanta,GA *. 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 *470-242-7345 Ex-303*,*302* Drop the suitable profiles on
*chaita...@r2techcorp.com* 



*Role: Senior Java developer*

*Location: Atlanta, GA*

*Duration: 6 months+*

*Need Locals (F2F Interview)*



*Job Description:*



•7+ years of Software development experience utilizing Java/JEE/Open
source technologies.

•5+ years of API development experience using RESTful standards.
Knowledge of API Gateway platform to manage/govern endpoints is a big plus,
preferably Kong.

•3+ years of experience using enterprise integration frameworks,
preferable Apache Camel (new development) or IBM cast iron.

•Strong experience using ORM tools like Hibernate or OpenJPA as well as
JDBC for database access.

•and RabbitMQ (AMQP).

•Strong experience using continuous integration and build tools
preferably Jenkins and Maven.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Sr .Net Developer at Owings Mills MD

2018-04-27 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
We represent  *R2 Technologies*. We have a requirement for *Sr .Net
Developer *at  *Owings Mills MD*. 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 *470-242-7345 Ex-302*, Drop the suitable profiles on
*chaita...@r2techcorp.com
*



*NOTE: Perl Scripting is must*



*Sr .Net Developer*

*Location: Owings Mills MD*

*Duration: 6 months*





Candidates for a software engineer position should have broad information
systems experience. They should be adept at working in a team environment
and possess excellent communication and problem-solving skills. Most jobs
require a minimum of a bachelor’s degree in computer science, electrical
engineering, computer engineering or a related discipline.

Several years’ experience in specific programming languages, such as
C#/C++, Java or Visual Basic .NET, depending on what the employer is using,
also is valuable. Typical duties include: Designing and creating
engineering specifications for software programs and applications Working
with quality assurance to develop software test plans Collaborating with
hardware engineers to assess and test hardware and software interaction
Implementing a specific development methodology Documenting software
specificationsR



*Required** :*
• Strong .NET (C# and VB.NET)
• Strong SQL (SQL Server)
• Experience in creating and consuming APIs (SOAP, JSON)
• Comfortable working with legacy code base (mostly .NET)
• Comfortable working in an Agile development environment
• Comfortable working with Team Foundation Server (TFS)

*Desired :*
• Experience with SSIS
• Experience with Perl
• Experience with AWS Step Functions
• Experience deploying to AWS (terraform, apigee)
• Experience with Git

*Nice To Have :*
• Experience with Sybase
• Experience with Charles River



Day-to-day Requirements: Mid to Sr. level resource, (5-10 member agile
teams; person will work closely with maybe 3 people at a given time)
responsible for light requirements gathering from other technologists; 10%
requirements, 90% code. Asset management experience is a nice to have,
however Charles River is preferred.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] PHP Developer in Mount Laurel NJ/Philadelphia PA

2018-04-30 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya* from R2 Technologies, We have a requirement for *PHP
Developer* at *Mount Laurel NJ/Philadelphia PA*. 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. Drop the suitable profiles on *chaita...@r2techcorp.com
*



*Position: PHP Developer*

*Location: Mount Laurel NJ/Philadelphia PA*

*Duration: 6 months+*


*Need to share passport number/I-94 copy for submission *



*Description:*



•Java, UI Development, Agile Development, PhPStorm/Chrome
Tools/Firebug/npm/grunt, HTML/CSS/JSX, Git/SVN/Perforce, MySQL

•Write well designed code.

•Produce detailed specifications.

•Maintain the core product software and databases.

•Contribute in all phases of development.

•Follow industry best practices.

•Develop and deploy new features.



*Requirements:*



•Direct experience in a PHP Development role

•Undergraduate degree in Computer Science, Engineering or a related
subject.

•Experience in PHP+.

•Understanding of open source projects.

•Web technologies including HTML, CSS, Javascript, AJAX etc.



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Email: c haita...@r2techcorp.com
*

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


[android-developers] Java Architect in Austin, Tx

2018-05-03 Thread Chaitanya Puvvada
Hi,

Hope you are doing great,
Myself,* Chaitanya *from R2 Technologies, We have a requirement for *Java
Architect *at *Austin, Tx.*IA 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. Drop
the suitable profiles on *chaita...@r2techcorp.com*




*Role: Java Architect *

*Location: Austin, Tx*

*Duration: Long term*



*Need to provide passport number for submission*



*Job Description:*



•Bachelor’s degree or relevant experience required

•10+ years of experience working in Java, and other Java based open
source technologies like   Apache foundation.

•Demonstrated experience in architecting and deploying high volume,
high transaction based, distributed and redundant web applications.

•Demonstrated ability to architect web on cloud platforms such as
AWS.

•Proven track record of leading technical teams in delivering web
technology architecture, design and implementation.

•Strong Understanding of Full stack modern technologies from UI
layer to middleware and DB layer in great detail.

•Good understanding of modern distributed architecture and
development frameworks (such as SOA, Lambda, Microservices) for scalable
and very fast applications

•Good grasp of modern and rich UI application architecture with
preferable coding experience in javascript frameworks and libraries (such
as Angular, Backbone), html and css.

•Excellent understanding of design patterns.

•Experience with Databases including, Oracle and MySQL, including
writing SQL Queries

•Experience writing shell scripts

•Hands on coding experience

•Continuous and persistent learner

•Experience working in Agile methodology

•Experience in Development, Support, Maintenance, and Enhancement
projects

Excellent Troubleshooting Skills



*Thanks & Regards,*

*Chaitu*

*Teachnical Recruiter **|**R2 Technologies*


*6515, Shiloh Rd Unit 110 Alpharetta, GA - 30005*

*Desk: *470-242-7345 EXT: 302*|**Email: c
haita...@r2techcorp.com *

*Gtalk: chaitu.recruit...@gmail.com *

*Linked-in: https://www.linkedin.com/in/chaitanya-chaitu-480003148/
<https://www.linkedin.com/in/chaitanya-chaitu-480003148/>*

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


  1   2   >