[android-developers] I cannot start my phone

2017-09-05 Thread SG Gayashan



i am try to install custom recovery to my* Huawei Y6 SCC-U21* phone (twrp 
recovery). but it was failed and it says boot image verification failed. 
and now i cant open (start) my phone. when i start my phone its come *huawei 
logo* and go to *fastboot and rescue mode*. but i cannot do anything. its 
my phone bricked? 

*Im trying these steps :- *

   - start from adding commands using adb and try to insatll recovery.img 
   but not work (any img cannot install now because device not found in cmd)
   - next i trying to install frimware update.app using sdcard with dload 
   folder (pressing volume up / down / power on buttons) its too faild
   

*Now the problem is,*

   1. Does not start phone
   2. not showing any recovery modes
   3. stuck on fastboot mode





please help me anyone to fix it

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


[android-developers] Why is no exception thrown when operating UI in a background thread in previous versions?

2017-09-05 Thread 戴桢桦
Hi all,

We released an android APP several years ago, and there's a 
View.setVisibility() method used in a sub thread. 
It has been no problem in these years until Android O Developer Preview 4.
When I test our APP on Android O Developer Preview 4, I found 
View.setVisibility() in a sub thread will throw a exception as follows:

*android.view.ViewRootImpl$CalledFromWrongThreadException: Only the 
original thread that created a view hierarchy can touch its views.*


I've moved this method to main thread and fixed this problem.

But my questions are:

1. Why is no exception thrown in previous versions (even in Android O 
Developer Preview 1)?

2. What change in Android O leads to this problem? We should explain it to 
our customer but we can't find the gist on Android developer's website.

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


[android-developers] Help with saving an ArrayList

2017-09-05 Thread Otavio Miguel
I have one doubt. Maybe it's simple, but I'm a beginner in android 
programming, so I'm so sorry if it's so trivial.

My app has an ArrayList, but it use an class as type.

ArrayList arrayList;



Here, users must to can add a new item using an fragment created to this. 
Then, in the principal screen, it must to show the list to the user.


My doubt is how can I save this list and recover when I need, read it and 
show to the users. Of course, I also need to change the list (deleting, 
editing or adding items in this list), and saving again when something 
change.

I don't know if it's info enough, but if you need more info to could help 
me, just ask and I can tell you what you need.

Thank you.

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


Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread 'Carmel Noe' via Android Developers


On Tue, 9/5/17, Larry D  wrote:

 Subject: Re: [android-developers] Re: Dynamically loading a .jar file at  
Runtime
 To: "Android Developers" 
 Cc: hack...@android.com
 Date: Tuesday, September 5, 2017, 10:54 PM
 
 Always the idiot who
 will not usefully reply to the question but instead offer
 unsolicited and related bull under false pretenses. Where
 are the moderators to block those imbeciles instead of
 moralizing and bullying the good people providing adequate
 support?
 
 On Thursday, March 19, 2009 at 4:03:09 AM UTC+1, Dianne
 Hackborn wrote:Also keep in mind that doing this
 kind of thing is completely insecure.  Any app can go and
 modify your files on the sd card to insert their own code
 into your app and run under your identity.  Then any
 malicious things they do with your app's permissions are
 the fault of your app.
 
 
 On Wed, Mar 18, 2009
 at 4:39 PM, fadden  wrote:
 
 
 
 On Mar 18, 7:29 am, Asif k  wrote:
 
 >   I am storing the required test.jar file in the
 /sdcard. I want to
 
 > load it dynamically at runtime and want to execute a
 function xyz()
 
 > resides in that. For this purpose
 
 >
 
 >   I had written following code ,
 
 
 
 This doesn't work -- in 1.0 you can't load
 jar/apk files that aren't
 
 part of your application.  The problem is that it wants to
 pull
 
 classes.dex out of the jar/apk and put it in
 /data/dalvik-cache, but
 
 it doesn't have permission to do so.
 
 
 
 The "cupcake" release is expected to include the
 DexClassLoader class,
 
 which allows you to specify a location other than
 /data/dalvik-cache
 
 for your output files.
 
 
 
 
 
 > But got ClassCastException :
 dalvik.system.PathClassLoader
 
 
 
 URLClassLoader systemLoader = (URLClassLoader)
 ClassLoader
 
             .getSystemClassLoader();
 
 
 
 Assuming that the system class loader is a
 URLClassLoader is unwise
 
 and unnecessary.  Just use ClassLoader.
 
 
 
 
 
 
 
 
 -- 
 Dianne Hackborn
 Android framework engineer
 hac...@android.com
 
 Note: please don't send private questions to me, as I
 don't have time to provide private support.  All such
 questions should be posted on public forums, where I and
 others can see and answer them.
 
 
 
 
 
 
 
 -- 
 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 
 To unsubscribe from this group and stop receiving emails
 from it, send an email to android-developers+unsubscr...@googlegroups.com.
 
 To post to this group, send email to android-developers@googlegroups.com.
 
 Visit this group at https://groups.google.com/group/android-developers.
 
 To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ed0961a7-5cb2-42db-9a65-1cb59374ee0c%40googlegroups.com.
 
 For more options, visit https://groups.google.com/d/optout.
 rturi sociale si a unor institutii se desfasura in conditiile in care  in 
sectorul

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


[android-developers] Urgent Requirement for the Position of NOC Resident Engineer (RE) at Los Angeles, CA

2017-09-05 Thread Sanjay Kumar
 

I am hiring a consultant for one of my client's requirement. Job 
Description for the same is written below. If you find yourself comfortable 
with the requirement please reply back with your updated resume. I would 
really appreciate if you can give me a call back at my contact # 
510-722-8503 Ext- 511.

 

*Job Title*

*NOC Resident Engineer (RE)*

*Location*

*Los Angeles CA*

*Duration*

*5 months /Contract*



*INTERVIEW MODE:-PHONE + SKYPE*
* VISA:- USC/GC Only*


*JOB DESCRIPTION*

*Describe the network environment and name the products that will be 
supported: *

   1. Large transport network utilizing OSPF/BGP/MPLS/RSVP/LDP.  Sempra’s 
   physical network covers most of the geography of southern California.  
   2. They have approximately 300 L3 hop locations connected via a 
   combination of Ethernet over Fiber, some copper, some microwave and a 
   relatively small amount of traditional TDM. 
   3. The network is 98% Juniper, consisting of M320s (2), MX960s, MX480s, 
   MX240s, SRX240s in packet mode, MX104s, ACXs, LN2600s.  
   4. There is a smattering of CTP utilized to provide Circuit Emulation 
   over the IP network. 
   5. MPLS with both LDP and (transitioning to) RSVP is utilized 
   everywhere.  Both L2 and L3 tunneling are employed. 
   6. VRFs are used at endpoints to segment traffic for transport across 
   the converged network.  
   7. QOS is heavily employed to protect critical services during 
   unexpected network load events. 
   8. More info in job description beloW 

*Contractor NOC Resident Engineer (RE)*
Juniper Networks is the leader in high-performance networking. We offer 
growth, training, and leadership opportunities for candidates with a 
passion for Networking and the Internet. We are constantly seeking talented 
technical professionals with all levels of networking and network security 
skills who are interested in a career working with customers both 
nationally and internationally.

This position requires contractor candidates desiring to become an employee.
*Job Description* 

Reporting to the Manager of Advanced Services, *Americas, (US Strategic 
Verticals)*, this is a highly technical role, providing post-sales on-site 
support of Junipers Network Products.

The Advanced Services Contract Resident Engineer will be required to 
develop and maintain an expertise on the products deployed within the 
Customers network. 
*Responsibilities* 

This is a 40 hour per week position, on-site, at the customer location and 
may require additional work hours and on-call support for critical issues 
which will be compensated for with Comp time.

   - To hold network information gathering workshops with the Customer to 
   understand the Customer’s existing network design and technical 
   requirements of new network designs. 
   - To understand the Customer’s organizational structure and become 
   familiar with the Customer’s network implementation and support processes 
   and procedures to help in supporting a network that is available and 
   sustainable. 
   - To carry out testing of new Designs, features, and functionality as 
   required by the Customer in a laboratory environment and to help develop 
   plans to implement and verify that they are operating correctly in the live 
   network 
   - To test patches and fixes to operating software and to ensure that 
   they are implemented and functioning correctly in the pre-production test 
   network and then live network as implementation plans dictate. 
   - To troubleshoot equipment and network problems and to open and track 
   JTAC cases through to problem resolution on pre and post production issues. 
   - To raise equipment Return Material Authorizations (RMA’s) and to track 
   these through to problem resolution 
   - To produce a written summary report of the status of Design projects, 
   equipment and network problems on a regular basis to the Customer 
   - To hold technology workshops with the Customer to discuss equipment 
   and network problems, and to provide case status updates, including the 
   reasons for any problems encountered and the workarounds and/or solutions 
   that are being tried 
   - To train the Customer’s design, implementation and support personnel 
   to configure and operate the Juniper Networks products 
   - To assist the Customer to develop Network Operating and Equipment 
   Operating Procedures 
   - Support production environment of Juniper products within the Customer 
   infrastructure 
   - Support ongoing efforts in defining best practice policies for Juniper 
   product applications used by Customer 
   - The Resident Engineer is expected to peer with other employees 
   performing similar resident engineering roles where lessons learned may 
   help minimize risk associated with major network upgrades or changes in the 
   network. 

The RE will be expected to develop secondary skills in other products in 
the Juniper product portfolio.  
*Base Qualifications* 
  

[android-developers] Urgent Requirement for the Position of Informatica Administrator at OH-Ohio/Cincinnati FOR 6+ Months/contract

2017-09-05 Thread Sanjay Kumar
 

I am hiring a consultant for one of my client's requirement. Job 
Description for the same is written below. If you find yourself comfortable 
with the requirement please reply back with your updated resume. I would 
really appreciate if you can give me a call back at my contact # 
510-722-8503 Ext- 511.

 

*Job Title*

*Informatica Administrator*

*Location*

*OH-Ohio/Cincinnati*

*Duration*

*3+ months /Contract*

 

*INTERVIEW MODE:-PHONE + SKYPE*
* VISA:- USC/GC/TN/EAD*

 

**THEY DO NOT WANT SOMEONE WHO READS AS A DEVELOPER….WILL DECLINE RIGHT 
AWAY IF SO**

**NEED TO HAVE INFORMATICA GRID AND HAVE UPGRADED TO NEWER VERSIONS**


*Responsibilities: :*

Provide extensive administration support and technical leadership for all 
aspects of the Power Center, Test Data Management, Data Quality, B2B, DVO, 
and Big Data Management Informatica domains

   - Provide extensive administration support and technical leadership for 
   all aspects of the Power Center, Test Data Management, Data Quality, B2B, 
   DVO, and Big Data Management Informatica domains. 
   - Requirements Gathering and analyze the requirements. 
   - Analyze the impacts on existing modules for the new enhancements. 
   - Serve as part of a highly-skilled, high-performing team, providing 
   technical solutions to create valuable extensions and enhancements of our 
   Informatica service offering. 
   - Manage deployments of code through the non-production and 
   production/disaster recovery environments. 
   - Monitoring the stability of all environments including product 
   performance and infrastructure utilization. 
   - Continued growth as a technical expert in data integration 
   technologies and solutions. 
   - Ensures data integrity; recommends action to maintain data integrity; 
   establishes process / procedures for ongoing data cleanup. 
   - Manage all backup, restore, and disaster recovery processes and 
   procedures. This includes understanding how to execute all procedures and 
   meet all related SLA s and/or RTO s. 
   - Provide security administration support with respect to users and 
   privileges within all Informatica domains. 
   - ETL Coding and Job design implementation as per the Informatica ETL 
   standards. 
   - Maintaining, enhancing, configuring, and tuning all Informatica 
   domains. 
   - Analyze and apply patches, hot fixes, complete upgrades, and 
   Informatica product enhancements. 
   - Provide 24X7 on-call support when required on a rotating basis. 
   - Provide incident and problem management support for business groups 
   and operations. 
   - Provide off-hour release and change implementation support. 
   - Exhibits strong business knowledge and builds strong customer 
   relationships. 

*Qualifications: *


*  5 to 10+ years of experience with Informatica administration of the 
power center domain*.

   - 5 years of experience with *Informatica administration *of connectors, 
   proactive monitoring, *metadata manager*, and *Data Quality*. 
   - Solid understanding of* ETL/Database* best practices and leading 
   industry standards. 
   - Good understanding of *data warehouse* concepts and relational 
   databases. 
   - Experience on Informatica high availability and *Informatica Grid*. 
   - Experience on any* Data Quality* and Data Validation tools. 
   - Knowledge of *Data Integration* with *Hadoop* and *Informatica* is a 
   plus. 
   - Experience implementing automation capabilities and knowledge of 
   *DevOps* methodologies and best practices. 
   - Comfortable working with the *Red Hat* Enterprise *Linux *operating 
   system. 
   - Experience with scripting (*PowerShell, REST, and UC4*) for task 
   automation. 

*Skills*

   - Persistently drive projects to successful completion. 
   - Ability to handle multiple tasks and projects simultaneously. 
   - Ability to manage time and work independently with minimal supervision. 
   - Ability to working in stressful situations and meeting tight deadlines. 
   - Self-motivated with the ability to complete objectives without 
   requiring constant managerial oversight. 
   - Excellent analytical, problem solving, and troubleshooting skills. 
   - Strong verbal and written communication skills. 
   - Ability to work independently or collaboratively with other team 
   members, peer groups, or business partners. 

 

 

 

*Sanjay Kumar** |** Talent Anytime | Technical Resource Specialist*

41041 Trimboli Way Suite 1398 • Fremont, CA • 94538
Office: 510-722-8503 X511  • Direct: 510-722-8845
*sku...@talentanytime.com *
*www.talentanytime.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 

[android-developers] Urgent Requirement for the Position of Informatica Administrator at OH-Ohio/Cincinnati FOR 6+ Months/contract

2017-09-05 Thread Sanjay Kumar
 

I am hiring a consultant for one of my client's requirement. Job 
Description for the same is written below. If you find yourself comfortable 
with the requirement please reply back with your updated resume. I would 
really appreciate if you can give me a call back at my contact # 
510-722-8503 Ext- 511.

 

*Job Title*

*Informatica Administrator*

*Location*

*OH-Ohio/Cincinnati*

*Duration*

*3+ months /Contract*

 

*INTERVIEW MODE:-PHONE + SKYPE*
* VISA:- USC/GC/TN/EAD*

 

**THEY DO NOT WANT SOMEONE WHO READS AS A DEVELOPER….WILL DECLINE RIGHT 
AWAY IF SO**

**NEED TO HAVE INFORMATICA GRID AND HAVE UPGRADED TO NEWER VERSIONS**


*Responsibilities: :*

Provide extensive administration support and technical leadership for all 
aspects of the Power Center, Test Data Management, Data Quality, B2B, DVO, 
and Big Data Management Informatica domains

   - Provide extensive administration support and technical leadership for 
   all aspects of the Power Center, Test Data Management, Data Quality, B2B, 
   DVO, and Big Data Management Informatica domains. 
   - Requirements Gathering and analyze the requirements. 
   - Analyze the impacts on existing modules for the new enhancements. 
   - Serve as part of a highly-skilled, high-performing team, providing 
   technical solutions to create valuable extensions and enhancements of our 
   Informatica service offering. 
   - Manage deployments of code through the non-production and 
   production/disaster recovery environments. 
   - Monitoring the stability of all environments including product 
   performance and infrastructure utilization. 
   - Continued growth as a technical expert in data integration 
   technologies and solutions. 
   - Ensures data integrity; recommends action to maintain data integrity; 
   establishes process / procedures for ongoing data cleanup. 
   - Manage all backup, restore, and disaster recovery processes and 
   procedures. This includes understanding how to execute all procedures and 
   meet all related SLA s and/or RTO s. 
   - Provide security administration support with respect to users and 
   privileges within all Informatica domains. 
   - ETL Coding and Job design implementation as per the Informatica ETL 
   standards. 
   - Maintaining, enhancing, configuring, and tuning all Informatica 
   domains. 
   - Analyze and apply patches, hot fixes, complete upgrades, and 
   Informatica product enhancements. 
   - Provide 24X7 on-call support when required on a rotating basis. 
   - Provide incident and problem management support for business groups 
   and operations. 
   - Provide off-hour release and change implementation support. 
   - Exhibits strong business knowledge and builds strong customer 
   relationships. 

*Qualifications: *


*  5 to 10+ years of experience with Informatica administration of the 
power center domain*.

   - 5 years of experience with *Informatica administration *of connectors, 
   proactive monitoring, *metadata manager*, and *Data Quality*. 
   - Solid understanding of* ETL/Database* best practices and leading 
   industry standards. 
   - Good understanding of *data warehouse* concepts and relational 
   databases. 
   - Experience on Informatica high availability and *Informatica Grid*. 
   - Experience on any* Data Quality* and Data Validation tools. 
   - Knowledge of *Data Integration* with *Hadoop* and *Informatica* is a 
   plus. 
   - Experience implementing automation capabilities and knowledge of 
   *DevOps* methodologies and best practices. 
   - Comfortable working with the *Red Hat* Enterprise *Linux *operating 
   system. 
   - Experience with scripting (*PowerShell, REST, and UC4*) for task 
   automation. 

*Skills*

   - Persistently drive projects to successful completion. 
   - Ability to handle multiple tasks and projects simultaneously. 
   - Ability to manage time and work independently with minimal supervision. 
   - Ability to working in stressful situations and meeting tight deadlines. 
   - Self-motivated with the ability to complete objectives without 
   requiring constant managerial oversight. 
   - Excellent analytical, problem solving, and troubleshooting skills. 
   - Strong verbal and written communication skills. 
   - Ability to work independently or collaboratively with other team 
   members, peer groups, or business partners. 

 

 

 

*Sanjay Kumar** |** Talent Anytime | Technical Resource Specialist*

41041 Trimboli Way Suite 1398 • Fremont, CA • 94538
Office: 510-722-8503 X511  • Direct: 510-722-8845
*sku...@talentanytime.com *
*www.talentanytime.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 

[android-developers] Data Modeler with FSLDM-Cincinnati, OH-5347789

2017-09-05 Thread Bhanu Pratap
Job Title: Data Modeler

Location: Cincinnati, OH

Position Type: Contract

*Job Roles and Responsibilities:*

· Must have Financial Services Logical Data Model (FSLDM)
experience.

· The Data Modeler will work with the Data Architecture team to
help implement Enterprise Data Platform using the financial data model.

· Develop the logical and Physical model.

· Create a mapping with source systems to Enterprise Data Platform.

· Data Migration Strategy from existing data platforms to
New/Enhanced data platform.

*Experience required:*

· Over all 10+ years of experience in Information Management and
Big Data technologies.

· 5+ years of experience that must include data modeling for
enterprise data warehouses.

· Experience in Bank industry is MUST.

· Knowledge of FSLDM or any other Banking Industry Model.

· Strong Data warehousing architecture experience.

· Strong skills in tools and technologies relevant to enterprise
data management including; conceptual and logical data modeling, physical
database design, data integration.

· Data Modeling (ERD's, Mapping, Metadata, dimensional) using a
modeling tool like ERwin.

· Experience in DB2, Oracle, and Hadoop.

· Experience in DataStage and Talend.

· Experience working with agile methodologies.
ᐧ

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


Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread Larry D
Always the idiot who will not usefully reply to the question but instead 
offer unsolicited and related bull under false pretenses. Where are the 
moderators to block those imbeciles instead of moralizing and bullying the 
good people providing adequate support?

On Thursday, March 19, 2009 at 4:03:09 AM UTC+1, Dianne Hackborn wrote:
>
> Also keep in mind that doing this kind of thing is completely insecure.  
> Any app can go and modify your files on the sd card to insert their own 
> code into your app and run under your identity.  Then any malicious things 
> they do with your app's permissions are the fault of your app.
>
> On Wed, Mar 18, 2009 at 4:39 PM, fadden  
> wrote:
>
>>
>> On Mar 18, 7:29 am, Asif k  wrote:
>> >   I am storing the required test.jar file in the /sdcard. I want to
>> > load it dynamically at runtime and want to execute a function xyz()
>> > resides in that. For this purpose
>> >
>> >   I had written following code ,
>>
>> This doesn't work -- in 1.0 you can't load jar/apk files that aren't
>> part of your application.  The problem is that it wants to pull
>> classes.dex out of the jar/apk and put it in /data/dalvik-cache, but
>> it doesn't have permission to do so.
>>
>> The "cupcake" release is expected to include the DexClassLoader class,
>> which allows you to specify a location other than /data/dalvik-cache
>> for your output files.
>>
>>
>> > But got ClassCastException : dalvik.system.PathClassLoader
>>
>> URLClassLoader systemLoader = (URLClassLoader) ClassLoader
>>.getSystemClassLoader();
>>
>> Assuming that the system class loader is a URLClassLoader is unwise
>> and unnecessary.  Just use ClassLoader.
>>
>>
>>
>
>
> -- 
> Dianne Hackborn
> Android framework engineer
> hac...@android.com 
>
> Note: please don't send private questions to me, as I don't have time to 
> provide private support.  All such questions should be posted on public 
> forums, where I and others can see and answer them.
>
>

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


[android-developers] Camera2 preview in portrait on Huawei P8 Lite

2017-09-05 Thread Vizgu ApS
I'm currently trying to make a Camera2 preview in an app, but I'm running 
into a problem of a skewed image on a Huawei P8 Lite, since it does not 
have any camera previewsizes, which corresponds well to the portrait size 
of the phone.

Have any of you run into this problem before, and made a good solution? 
I've tried scaling and cropping, but then the Bitmap I get from my 
textureView ignores the matrix set, when I want to actually capture the 
image.

I'm at my wits end, and I have no idea on how to fix this problem in a good 
way. It's obviously possible, since Huawei does it in their own camera app.

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


[android-developers] Hiring for MDM Developer with IBM infosphere in CHICAGO, IL |Phone then Skype

2017-09-05 Thread Neha Saral
Hi
Please lookup the below position and if you feel comfortable ,then please
send me your updated resume





Role :MDM Developer with IBM infosphere

Location: CHICAGO, IL

Interview :Phone then Skype

Duration: 6 Months





*Job Description:*
Please note that the job is actually for an IBM InfoSphere MDM Development
position. We will only accept resources who have 2-3 years at least in the
Advanced Edition (AE) version of the software.

*JOB DESCRIPTION:*
THIS IS NOT STRICTLY A DATA ADMINISTRATOR/DEVELOPER ROLE. THE IDEAL JOB
TITLE FOR THIS POSITION IS MDM DEVELOPER specializing in IBM MDM Advanced
Edition and has 3-5 years in development experience working with the IBM
MDM 9x or greater.

*JOB TASKS:*
- Develop customizations for the currently implemented MDM
- Work with team members to develop technical designs to meet business
requirements.
- Complete development activities for specialized projects using java and
sql based toolsets.

*TECHNOLOGY BACKGROUND:*
REQUIRED-Do not submit candidates who lack this background:
- Understanding of the MDM architecture and implementation experience.
- IBM MDM 8.5/MDM Server 9.01/MDM 11.3. MDM 11.3 experience preferred.
- Oracle 10g or greater experienced database experience. Development of
Oracle SQL (DDL, DML, triggers) statements.
- Java development background required.
- Weblogic Managed Server experience required.
- Experience with TFS or other similar source control tools for managing
migrations.
- Understanding of Data Quality and Governance issues around MDM
implementation
- UNIX scripting experience
- Understanding of the Oracle SOA information.
- Datastage/Quality Stage 8.5 ETL development background
- Experience with MQ 7
- Redhat Linux 5.5 experience
- Weblogic 10.3.2, Sun JDK 1.6
- MQ 7.01
- Control M
- MDM 11.3 experience











[image: cid:image001.jpg@01D2DA68.60080D00]



Neha Saral

VSG Business Solutions

221 Cornwell Dr Bear, DE

n...@vsgbusinesssolutions.com

Phone: 302-261-3207 Ext: 107

GTalk:neha@gmail.com

P Please consider the environment before printing this email

Important!  This message is intended only for the use of the individual or
entity to which it is addressed and may contain information that is
privileged, confidential, and exempt from disclosure under applicable law.
If the reader of this message is not the intended recipient, or the
employee or agent responsible to deliver it to the intended recipient, you
are hereby notified that reading, disseminating, distributing, or copying
this communication is strictly prohibited.  If you have received this
communication in error, please immediately notify us by telephone, and
discard the original message.  Thank you.

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


[android-developers] (NEED LOCALS) Full-Stack .NET Developer @ Addison, TX

2017-09-05 Thread ANUDEEP
*Title : Full-Stack .NET Developer*

*Duration : 6 +Months*




*Location: Addison, TXWPF, WCF Exp Needed in recent project *



*Need Locals As There Is An In-Person Interview *



Successful client is seeking a Full-Stack .NET Developer for a long-term
contract position in North Dallas!  The selected resource will be working
on backend, middle tier, and front-end requirements.



*Requirements include:*

· WPF / XAML applications.

· ADO.Net.

· C#, .Net Framework 4.0+.

· Debugging / troubleshooting / WCF tracing.

· Application performance, code & SQL.

· Enterprise Level Applications.

· LINQ.

· T-SQL, SQL Server 2008+.

· WCF.

· Window Services, batch processing.

· XML – Configuration.

· TFS – Code & SQL (dbpro / SSDT).



*Preferred / Nice to Have:*

· ASP.NET MVC and WebAPI.

· JavaScript.

· Visual Studio 2015 and ASP.NET 5.

· Entity Framework 4.0+.

· Globalization / International applications.

· SQL Service Broker or similar messaging technology.

· Team work – Dev, BA’s, WebMasters, Dba’s.

· Multithreaded.

· Angular JS.

· XSD / XSLT / XSL - FO.

· Package managers: NuGet.

· Deployment & Release Process.



*Thanks *

*Anudeep | Anblicks | www.anblicks.com *

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

*anudee...@anblicks.com *

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


[android-developers] Job Title: SAP BPC Location TX

2017-09-05 Thread Sasi Kala
 

*Job Title: SAP BPC*

*Location TX*

*Duration: 12 months *

 

Sasi,

COX IT Global Solutions LLC,

Ph: 913-210-4719  Fax:  816-518-0367,

*Gmail id : sasikalaco...@gmail.com, *

*Linkedin: *linkedin.com/in/sasi-kala-799375145 

1011 Osage St. Manhattan, Kansas 66502,

“ Certified Minority-owned Business Enterprise (MBE),

*www.coxitglobal.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/819cd409-8ed4-4252-aac3-7e51dba7aa6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Job Title: SAP BPC Location TX

2017-09-05 Thread Sasi Kala
 

 

*Job Title: SAP BPC*

*Location TX*

*Duration: 12 months *

 

Sasi,

COX IT Global Solutions LLC,

Ph: 913-210-4719  Fax:  816-518-0367,

*Gmail id : sasikalaco...@gmail.com, *

*Linkedin: *linkedin.com/in/sasi-kala-799375145 

1011 Osage St. Manhattan, Kansas 66502,

“ Certified Minority-owned Business Enterprise (MBE),

*www.coxitglobal.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/967a08a3-0c60-40ad-867b-a0e28599d47d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers]

2017-09-05 Thread lavanya prorsumtech
NameSkill

Sai bharath revur Devops Engineer

Nikil Kumar Ganjai   Android devloper

Usha Dot Net Developer

Rishitha  Dot Net Developer

kavyaDot Net Developer

Ashok   Dot Net Developer

Goutham Alluri Devops Engineer

srikanthDevops Engineer

Dileep   AWS

Nikhitha   AWS

Tanuja  AWS

Ravi teja   sr.java devloper

Raviservice now

Prasanth  networking eng

Hemanth networking eng

SatishHadoop Developer

Naveen Kuntla  Data storage(ETL Lead/Developer )




-- 

*Lavanya *
*Bench sales recruiter*
*E-mail:lava...@prorsum-tech.com* 
*Direct:+1 832-702-7492*
*gtalk:lavanyaprorsumt...@gmail.com
 *

*[image: para]*

*Prorsum Technologies,Inc.*

*2002 Timberloch Place Suite 200*

*The Woodlands, Texas 77380*


www.prorsum-tech.com

 | gtalk:lavanyaprorsumt...@gmail.com
 |
LinkedIN: https://www.linkedin.com/in/lavanya-b-446a8a148/


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


[android-developers] .Net developer in Chicago, IL !

2017-09-05 Thread Abhishek ojha
*.Net developer *

*Chicago, IL*

*6 Months Contract to hire*



*Need GC and US citizen*



You will be joining a high-performing, motivated team of five technologists
with a variety of skillsets developing & managing our proprietary
front-office research platforms used by Portfolio Managers, Analysts,
Quantitative Strategists and other members of the Institutional Investment
Management division. The job will afford the opportunity to interact
closely with business partners and gain insight into our proprietary
research, analytics & portfolio management processes that largely represent
our competitive advantage. The suite of applications is one of our core
platforms that is mission critical and represents a significant business
investment in leading-edge technology.



*JOB SUMMARY & RESPONSIBILITIES:*

· Actively engage in and contribute to front-end and back-end
development & support activities.

· Contribute to architecture & technical design of our UI, services
and data platforms in our core technology stack of AngularJS, C#/Web API
and SQL Server.

· Interact with business partners, stakeholders, project managers
and senior management to understand requirements & business processes to
facilitate the development of innovative and efficient systems to meet
complex, changing needs.

· Collaborate with teammates on helping define & incorporate best
practices, standards & paradigms and improving operational aspects of the
system.

· Produce clean, maintainable code artifacts and work well within a
team of developers.



*QUALIFICATIONS:*

· Financial industry experience, preferably in asset management.

· Experience with *R and Data Science.*

· *Experience with Microsoft Azure Cloud Computing platform.*

· Experience with Agile Scrum.

· Strong application development background with experience
designing & building enterprise-grade web applications.

· Expertise in AngularJS framework, core JavaScript and interface
design.

· *Expertise with core C#/.NET, Web API and REST-based services.*

*· **Experience with SQL Server & database design.*

· Expertise in OO architecture and design patterns.

· Experience building large scale, multi-platform, responsive, web
applications.

· Excellent communication & collaborative skills must be able to
work as part of a team and collaborate effectively with your peers.





*Thanks & Regards,*

*Abhishek Ojha*

*732- 837- 2138*

*ao...@sagetl.com *

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


[android-developers] Hot -List

2017-09-05 Thread rajesh m
Hello Partner,

I hope you are doing well.

Please go through the below HOT-LIST and send me the suitable requirements
to raje...@cnet-global.com  (or) reach me at
972-895-5005.

Please add my email to your Distribution List and send your daily contract
positions.



*Name*

*   Title*

*Current Location*

*Relocation*

*Experience*

*Visa*

SO

Senior .Net Developer

Austin, TX

TX/FL/NC/EST

8+ Yrs

H1B

AK

Senior .Net Developer

Austin, TX

Austin, TX

9+ Yrs

H1B

LP

Senior Automation/Selenium Tester

Durham, NC

Anywhere in NC and nearby states

11+ Yrs

E3

SRK

Selenium Tester

Irving, TX

Yes

8+ Yrs

H1B

NM

Selenium Tester

Dallas, TX

DFW, TX

8 Yrs

H4 EAD

SB

Selenium Tester

New York City, NY

NY/NJ/PA

8 Yrs

H4 EAD

CBK

Lead Selenium Tester

Dallas, TX

Yes

11 Yrs

H1B

AKP

ETL Test Lead/Manager

St Paul, MN

Yes

11+ Yrs

H1B

SSB

Salesforce Administrator/Business Analyst

Arlington, TX

Yes

8 Yrs

H4 EAD

PN

Salesforce Developer

Monroeville, PA

Yes

7+ Yrs

H1B

JJ

SQL BI Developer

Irving, TX

DFW, TX

8+ Yrs

H1B

SKN

SQL Server Architect

Addison, TX

DFW, TX

19+ Yrs

H1B

SVR

Talend Developer

Plano, TX

Yes

7 Yrs

H1B

UR

Java Lead

Windsor, CT

AZ

10+ Yrs

H1B

SB

Senior Informatica Developer

Madison, WI

Yes

8+ Yrs

H1B



Thanks & Regards,

*Rajesh Mudragada*

*Technical Recruiter*

*CNET Global Solutions, Inc* 

*Certified Minority Business Enterprise (MBE)*
800 E. Campbell Road, Suite # 345
Richardson, Texas 75081
Phone: 972-895-5005

Fax: 972-692-8828
Email: raje...@cnet-global.com 

*IM:* rajesh.cnet

*Gtalk:* rajesh.cnet22



*“Texas HUB Certified Business”*



*We are Leaders, We are CNETians*

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

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

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


[android-developers] CHI E' IL CRININALE MICHELE NISTA

2017-09-05 Thread ASSOCIAZIONE VITTIME DELLO STALKER MICHELE NISTA
Chi è Michele Nista
Michele Nista è il criminale che da circa 8 anni commette l'attività delittuosa 
di cyber stalking internazionale, cercando di diffamare in internet centinaia 
(forse migliaia) di persone prevalentemente operanti nel campo della finanza, 
dell'economia, della politica e del giornalismo o liberi professionisti.  
Milanese di origine, nullatenente, sopra i 50 anni di età,  da diversi anni 
vive all'estero, in quanto, secondo le testimonianze raccolte, è stato  
costretto ad abbandonare l'Italia a causa delle numerose truffe perpetrate  
quando era ivi residente. Secondo fonti investigative, attualmente,  vive di 
espedienti e si sposta tra la Gran Bretagna, il Portogallo, la Spagna e 
l'Olanda, con qualche tappa in Sud America: motivo per il quale le indagini,  
almeno fino a qualche mese fa, sono andate a rilento.

Le vittime dello stalker
La sua intensa attività criminale, che riguarda centinaia se non migliaia di 
persone, è rivolta ad offendere principalmente soggetti che svolgono con 
successo professioni nel campo della finanza e che godono di visibilità e 
rispetto. L'odio del Nista verso questi soggetti, probabilmente, nasce dalla 
sua profonda  frustrazione derivante dagli insuccessi ottenuti in campo 
finanziario quando egli risiedeva in Italia: professione che, tra l'altro, 
svolgeva presumibilmente in maniera abusiva. Tuttavia, tra le vittime dello 
stalker vi sono anche ragazze e donne che hanno rifiutato le "attenzioni del 
Nista", insegnanti, medici, persone di culto e addirittura i figli (aggettivati 
con termini irripetibili e all'epoca minorenni) di un suo ex amico entrato 
ormai tra i peggiori nemici. La quasi totalità delle vittime non hanno mai 
conosciuto di persona il Nista e  hanno avuto  la sola sfortuna  che il loro 
nome finisse all'attenzione dello stalker, dando così inizio alle persecuzioni.

L'attività criminale del Nista
 
L'attività criminale esercitata dallo stalker, nel corso degli anni, si è 
sempre più intensificata fino ad indurlo a pubblicare migliaia  di posts 
diffamatori e deliranti al giorno, su migliaia di siti sparsi per il mondo, 
gruppi google, forum, Facebook, Twitter, Linkedin, Blogger e in altri spazi 
virtuali.
L'attività delittuosa è talmente intensa e violenta che il Nista, al fine di 
produrre il maggior danno possibile, posta i suoi deliri su siti "fantasma", 
non più utilizzati, in modo da rendere difficoltoso (se non impossibile) 
rintracciare gli amministratori del sito/blog per chiedere la rimozione del 
materiale postato dallo stalker. Il più delle volte, addirittura, scrive le sue 
farneticazioni su blog in lingua straniera (portoghese, spagnolo, russo, 
tedesco), anche in questo caso al fine di renderne difficoltosa la rimozione.

Per comprendere quanto sia intensa l'attività criminale posta in essere, si 
pensi che una delle sue vittime più eccellenti, Ennio Doris di Banca 
Mediolanum, solo nei gruppi Google ha collezionato quasi 20.000 posts 
diffamatori, ai quali si aggiungono le decine di migliaia di scritti pubblicati 
come commenti su altri siti. L'intensa attività criminale viene svolta 
utilizzando centinaia di nomi diversi, sottratti ad altrettante persone che, 
anch'esse, operano in prevalenza in ambito finanziario. Per cui, oltre agli 
altri reati, ricorre anche quello di furto di identità altrui.

Le farneticazioni del Nista
Il contenuto dei posts e delle diffamazioni sono un coacervo di odio, volgari 
insulti, farneticazioni, deliri e falsità. Un concentrato di volgari 
affermazioni, violenze,  immagini raccapriccianti quasi sempre a  sfondo 
pornografico o pedopornografico. Per il Nista le sue vittime sono tutte 
pedofili, assassini, massoni, nazisti, mandanti di omicidi e riciclatori di 
denaro sporco e denaro mafioso. In altri posts, prodotti sempre ricorrendo 
all'utilizzo di identità altrui, si assiste all'autocelebrazione di Michele 
Nista. Si definisce "RE MIDA, GENIO, EROE CIVILE". Scrive che (citiamo 
testualmente) "AZZECCA IN AZIONI E MATERIE PRIME, SEMPRE. SU TUTTO. OGNI 
GIORNO. IN OGNI ANGOLO DEL PIANETA TERRA. SIA A LIVELLO DI AZIONARIO, CHE DI 
MATERIE PRIME. GENIO IN INVESTIMENTI MOBILIARI, MA PURE UN EROE" perché sta 
liberando l'Italia da Berlusconi, dalla mafia e dalla Lega Nord. Il tutto, 
ovviamente, avviene utilizzando identità di persone terze, come ad offrire al 
lettore la percezione che gli scritti che celebrano il Nista "eroe"  giungano 
da persone che si sono realmente avvalse dei suoi servizi (quali?). Altre 
volte, invece, costruisce dei veri e propri dialoghi tra le sue diverse 
identità (cioè sempre appropriandosi di identità altrui), in modo che il 
lettore possa essere tentato di valutare attendibili le farneticazioni scritte.
Si tratta di un concentrato di follia e pazzia che disegna un profilo 
psichiatrico di un soggetto gravemente malato ma, al tempo stesso, estremamente 
 pericoloso. Pericolo che si avverte non solo dal contenuto dei suoi scritti 
pubblici ma anche dalle 

[android-developers] NEED: CQ/AEM consultant @ Irvine, CA --- Contract

2017-09-05 Thread Martin Zeller
Hi,

This Is *Martin from visionisys Inc,*

This is Reference for Following Position



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



*Job Title:  CQ/AEM consultant*

*Location:*  Irvine, CA

*Duration:*  6+ Months

*Interview Type: * Phone+ Skype



*Primary Skills: CQ/AEM (Components, Templates, Widgets, EXTJS, OSGI, JCR,
External Integrations (with DB, Web services and other WCMs & DMS),
Workflows, Packages)*



*Job Description:*



Ø  *3+ years development in CQ/AEM (Components, Templates, Widgets, EXTJS,
OSGI, JCR, External Integrations (with DB, Web services and other WCMs &
DMS), Workflows, Packages)*

Ø  Strong development experience in developing Multilingual, Multisite and
Multifocal applications using Adobe CQ/AEM.

Ø  Adobe CQ/AEM instance deployments, 3+ years of experience in development
using Java/J2EE technologies.

Ø  Should have strong development experience in front end technologies like
JSP, HTML, HTML5, CSS3, JavaScript and JQuery.

Ø  Strong experience in OOAD, MVC. Should have good understanding of OOPS.



Thanks & Regards,



*Martin*

*Visionisys Inc*

901-203-2875

mar...@visionisys.com

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


[android-developers] Functional Data Analyst , Miramar, FL

2017-09-05 Thread US Recruiter
Hello All,

Please go through with the below requirement and reply me with suitable
resume.

Job Tittle: Functional Data Analyst

Location: Miramar, FL Strongly Preferred from East coast

Duration: 12 month contract

Visa tYpe: H1B, EAD, GC, US

Interview Mode: phone + F2F/Skype





*Functional Data Analyst*

The Functional Data Analyst will be part of a team that is responsible to
build, manage and maintain a test lab environment for a large enterprise.

MUST HAVE:

• 6+ years’ experience minimum with data analysis of multiple
systems

• Experience with development of data flow diagrams (DFDs)
between various systems

• Experience creating quality documentation including metrics
and service requests reporting

• Installation of vendor commercial off the shelf products

• VMWare environment experience

• Strong server management (ITIL framework) experience

• Experience with SQL and Oracle databases



NICE TO HAVE:

• ITIL Certification with over 5 years of service management
experience

• Automation scripting experience

• Understanding of multiple data types

• DevOps expertise (Automation through Puppet, Ansible or Chef)

• Full working experience of digital environments preferably
with Mobile applications and AWS cloud

• Ability to coordinate with multiple teams while gathering and
documenting the system flows

• Exposure in developing logical and contextual diagrams.



*Thanks & Regards*

*Mounika*

*Sr. Recruiter*

*Fusion Software Solutions LLC*

*8 Hanover Lane, South Windsor, CT, 06074-1374*

*Tel : 860-730-2979*

*Email-id: moun...@fusionss.com *

*http://www.fusionss.com/ *



Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered as "spam" as long as we include contact information
and a remove link for removal from our mailing list. In order to not be in
the recipients-list for this mail, please revert to us with "REMOVE" either
in the subject or in the mail body. Please include all pertinent email
addresses. Our apologies for any inconveniences caused by this mail.

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


[android-developers] Active Directory Architect/Network Engineer , Austin, Texas

2017-09-05 Thread US Recruiter
Hello,

Please go through with the below requirement and reply me with the suitable
resume.

*Job Tittle: Active Directory Architect/Network Engineer*

*Location: Austin, Texas*

*Duration: 9 month contract*

*Interview Mode: phone + Skype*



*Active Directory Architect/Network Engineer*

Selected candidate will manage and maintain current IDM, Linux and AD
infrastructure, assist the server team with day to day operations
(ForgeRock, AD, Outlook 365, etc.), make recommendations for improving the
current server configuration and infrastructure, and evaluate and provide
recommendations for migrating 2008 Servers to 2016 Servers.



*Must Have:*

5+ years’ experience with:

Active Directory architect

Windows Server Administration 2008 and 2008

Power Shell scripting

RedHat Linux administration

Outlook 365 administration

3+ years’ experience with:

Forge Rock Identity Access Management

Open IDM

Nice to have:

· 5+ years’ experience with Linux Shell scripting

· 3+ years’ experience with managing multiple AD domains (3 or more)

· 2+ years’ experience with:

o   Windows Server 2016 administration/architect

o   PKI design and implementation

o   RHEL v6 to v7 conversion and integrations with AD





*Thanks & Regards*

*Mounika*

*Sr. Recruiter*

*Fusion Software Solutions LLC*

*8 Hanover Lane, South Windsor, CT, 06074-1374*

*Tel : 860-730-2979*

*Email-id: moun...@fusionss.com *

*http://www.fusionss.com/ *



Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered as "spam" as long as we include contact information
and a remove link for removal from our mailing list. In order to not be in
the recipients-list for this mail, please revert to us with "REMOVE" either
in the subject or in the mail body. Please include all pertinent email
addresses. Our apologies for any inconveniences caused by this mail.

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


[android-developers] SalesForce Developer-Frisco TX

2017-09-05 Thread Bhanu Pratap
Job Title: SalesForce Developer *(8 to 10+ Years)*

Location: Frisco TX

Duration: 5 Months

*Description:*

· Work directly with Business POCs and independently perform
development, testing, implementation and documentation relates to the
SalesForce.com development.

· Develop and maintain visual force, AppExchange, Force.com pages
and integration to other third party solutions.

· Maintain multiple user roles, security, profiles, workflow rules,
etc.

· Support train new end users on the salesforce.com application.

· Participate in cross-functional teams that address strategic
business issues involving CRM and sales operations.

· Effectively communicate technical issues and resolve problems at
all levels.

· Identify SFDC usage problems and craft technical/communication
plans to IT/business teams.

· Primary point of contact for SFDC related work for Business Unit.

· Create technical specifications and process flows for new or
modified systems and processes based on Business needs.

· Recommend changes to ensure continuous business process
optimization.

· Support day to day application incident and Support requests.

*REQUIRED SKILLS:*

· 4+Years of SFDC Experience with focus on Apex, Triggers and
VF Development
with two full cycle SFDC implementations.

· 2+years of Java development experience including solid experience
in HTML, JavaScript, jQuery and CSS.

· Strong Expertise in Sales and Service Cloud.

· Pushes self for results on commitments/deadlines.

· Maintains open, transparent dialogue.

· Proficiency in SFDC development environment including Force.com
IDE, Migration Tools, SOSL, SOQL and Web Services.

· Strong Expertise in Custom Objects, Fields, Validation Rules,
Workflows Approvals, Reports and Dashboard.

· Experience in designing and developing Integration Solution using
Web Service APIs, REST API and data load using Bulk APIs.

· Knowledge of architecting integration Solution between SFDC and
External Systems.

· Salesforce App Builder, SFDC Developer II Certification.

· Lighting Enablement and Aura framework Awareness.

· Exposure to Wave Analytics.

· Knowledge of Agile methodology and sprint based project delivery.

· Functional knowledge of ITSM and ITIL support framework.

· Exposure or familiarity with Conga, eDocuSign and Forseva
AppExchange solutions.
ᐧ

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


[android-developers] Hiring for Salesforce Developer in Boston, MA |Phone the F2F

2017-09-05 Thread Neha Saral
Hi
Please lookup the below position and if you feel comfortable ,then please
send me your updated resume



*Role :Salesforce Developer *

*Duration: 6 month contract *

*Location  :Boston, MA*

*Interview :Phone the F2F*



They are looking for a Marketing Cloud Developer with strong ExactTarget
experience.











[image: cid:image001.jpg@01D2DA68.60080D00]



Neha Saral

VSG Business Solutions

221 Cornwell Dr Bear, DE

n...@vsgbusinesssolutions.com

Phone: 302-261-3207 Ext: 107

GTalk:neha@gmail.com

P Please consider the environment before printing this email

Important!  This message is intended only for the use of the individual or
entity to which it is addressed and may contain information that is
privileged, confidential, and exempt from disclosure under applicable law.
If the reader of this message is not the intended recipient, or the
employee or agent responsible to deliver it to the intended recipient, you
are hereby notified that reading, disseminating, distributing, or copying
this communication is strictly prohibited.  If you have received this
communication in error, please immediately notify us by telephone, and
discard the original message.  Thank you.

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


[android-developers] SAP ABAP Consultant with WebDynpro, Workflow, ODATA and Fiori

2017-09-05 Thread Bhanu Pratap
*Experience with WebDynpro, Workflow, ODATA and Fiori is must.*



Job ID: 5316899

Job Title: SAP ABAP Consultant

Location: San Diego CA

Duration: 4+ Months Contract

*Description:*

· Experience required: 4 to 6 years with SAP ABAP.

· Code Review, Development Tracking, Client Interactions.

· ABAP Development, Core ABAP, WebDynpro, Workflow, ODATA and Fiori.
ᐧ

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


Re: [android-developers] Dot Net Developer with Websphere MQ || Irving, TX

2017-09-05 Thread dinesh ramprasad
HI,

I am enclosing my consultant’s details in response to your job requirement.
Please go through the details and let me know if you would like to take
this further for submission.

Please confirm the Rate and End Client details and Project Location,
through email before submitting our consultant to the End Client.


On Tue, Sep 5, 2017 at 7:29 PM, swamil singh 
wrote:

> Hi,
>
>
>
> Hope you are Doing well...!!!
>
>
>
> I have urgent requirement for below position. Please go through the job
> description and if you are interested kindly let me know. Please revert me
> on *swam...@sysmind.com *
>
>
>
> *Role:: *Dot Net Developer with Websphere MQ
>
> *Location:: *Irving, TX
>
> *Duration*:: Contract (long term)
>
>
>
> *Job Details:  *
>
> Must Have Skills (Top 3 technical skills only) * 1. C#, SQL Server 2008,
> ASP .Net, IIS 2. WCF, MFT, Reporting Services, REST,TFS 3. Websphere MQ
> 7.x, AWS, DevOps platform
>
>
>
> *to have skills (Top 2 only)*
>
> 1. Exposure to Websphere MQ 7.x
>
> 2. AWS
>
>
>
> *Detailed Job Description:*
>
> Required C, SQL Server 2008, ASP .Net Framework 4.5, WCF, MFT, Reporting
> Services, REST,TFS, Visual Studio 2008  2013,  IIS,Good to have Exposure
> to Websphere MQ 7.x, AWS, DevOps platform
>
>
>
> *Top 3 responsibilities you would expect the Subcon to shoulder and
> execute*:*
>
> 1. Development
>
> 2. Offshore coordination
>
> 3. stakeholder management
>
> Will the candidate be client facing and/or working with business users?
>
> Yes
>
>
>
>
> --
>
>
> --
>
> *Thanks & Regards*
>
> *Swamil Singh* | SYSMIND, LLC
>
> Phone: 609-897-9670 x 5121
>
> Email: swam...@sysmind.com
>
> Hangout: swamil.sysm...@gmail.com
>
> Website: www.sysmind.com
>
> Address: 38 Washington Road, Princeton Junction, NJ 08550
>
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/CAP_aUSx15kjX6YiacgGkDudY1jp2Z5c3t
> JxUvukWG%3D9%3D4Qpk1Q%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 

*Thanks & Regards*



Dinesh Ramprasad

*E-mail : dinesh.prorsumt...@gmail.com *

Desk no:+832-702-7584  X-106

2002 Timberloch Place Suite 200

The Woodlands Texas 77380

*Gtalk: **dinesh.prorsumt...@gmail.com *

https://www.linkedin.com/in/dinesh-ram-prasad-3206a2b9/

Prorsum Technologies,Inc

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


Kavya resume.docx
Description: MS-Word 2007 document


[android-developers] IMMEDIATE CLOSURE JAVA RESUME - LOOKING FOR NEW OPPORTUNITIES IN TEXAS

2017-09-05 Thread Adam Smith
Hello Partner,

Hope you’re doing great.



Please find attach resume of my consultant “SINDHU" for *ONLY LOCAL *Java
Developer positions in DALLAS, PLANO, RICHARDSON CITIES ONLY.



Please review resume and advice.



Waiting for your response.



---

Thanks & Regards,
Adam Smith – Senior Resource specialist

PRIMASOFT INC
Desk: 281-940-2800 X 307 | Direct: 281-940-2807
10701 Corporate Drive | Suite 132 | Stafford, TX
a...@primasoftus.com | adam.primas...@gmail.com | www.primasoftus.com


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


Sindhu Sr Java Developer.docx
Description: MS-Word 2007 document


[android-developers] Java Developer@Seattle, WA

2017-09-05 Thread Santosh kumar Nityo
*Rate **at $36/hr on C2C(All Incl.) .*

Hi,

Hope you are doing Great!!

I was going through your profile with reference to the job opening that I
have with my client at Location* “**Seattle, WA**”*. This is an urgent fill
and the client is looking for *“**Java Developer**”.* I appreciate your
quick response.



*Role: Java Developer*

*Location: **Seattle, WA*

*Work Duration:** Long Term*


*Job Description: Must Have Skills *
1. JAVA
2. REST SERVICE
3. SPRING BOOT

Detailed Job Description:
Developer with experience in Java 8, Spring Boot, Rest Service, JPA,
Hibernate, Maven, Docker. Experience in DevOps project with Cost analysis,
Design , Coding, Testing and Implementation.



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





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



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

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

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


--

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

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

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

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


[android-developers] Dot Net Developer with Websphere MQ || Irving, TX

2017-09-05 Thread swamil singh
Hi,



Hope you are Doing well...!!!



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



*Role:: *Dot Net Developer with Websphere MQ

*Location:: *Irving, TX

*Duration*:: Contract (long term)



*Job Details:  *

Must Have Skills (Top 3 technical skills only) * 1. C#, SQL Server 2008,
ASP .Net, IIS 2. WCF, MFT, Reporting Services, REST,TFS 3. Websphere MQ
7.x, AWS, DevOps platform



*to have skills (Top 2 only)*

1. Exposure to Websphere MQ 7.x

2. AWS



*Detailed Job Description:*

Required C, SQL Server 2008, ASP .Net Framework 4.5, WCF, MFT, Reporting
Services, REST,TFS, Visual Studio 2008  2013,  IIS,Good to have Exposure to
Websphere MQ 7.x, AWS, DevOps platform



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

1. Development

2. Offshore coordination

3. stakeholder management

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

Yes




-- 


-- 

*Thanks & Regards*

*Swamil Singh* | SYSMIND, LLC

Phone: 609-897-9670 x 5121

Email: swam...@sysmind.com

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

Website: www.sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Hot List

2017-09-05 Thread raju bakrewar
Hi Friends,

Greetings for the day,

Please find the list of skilled R2Technologies consultants who are actively
looking for new role and please share your requirements to
ra...@r2techcorp.com



CANDIDATE SKILL SET EXPERIENCE  LOCATION RELOCATION
Syed  .Net Developer 8+ Plano,TX YES
Sushma  Salesforce Administrator 5 Atlanta,GA Yes
Venu  UI Developer 5+ Chicago, IL Yes
Krishna UI Developer 6 Orlando, FL  Yes
Rehana QA/BA  12 Dallas,TX No
Bharadwaj UI Developer 6 Atlanta,GA Yes
Sriram UI Developer 5 Atlanta,GA Yes
Sandeep Hadoop Admin 8+ Atlanta,GA Yes
Sandeep .Net developer 10 New York, NY Yes
Rohit UI Developer with Quickview 5+ Atlanta, GA Yes
Abdul  Java Developer 5+ Nyc,NY Yes
Varun Network Engineer 4+ SanJose,CA Yes
Raviteja SQL/MSBI developer 5+ Atlanta,GA Yes
Sairam DB2 UDB Developer 8 Phoenix,AZ Yes
Prasana  WMBIIB Developer 8+ Tenesse,NV Yes
Satvik Hadoop Developer 5+ Atlanta,GA Yes
Kiran  SOA Developer 9+ Altlanta,GA YES
Sandip Business Analyst 8+ Atlanta,GA YES
Adarsh Hadoop developer 7 Atlanta,GA YES
Raghu UI Developer 6 Farmington,MI Yes
Rajendra Babu Lead/Sr. JAVA_J2EE Developer 10 Chicago, IL YES
Chetan Bigdata Architect 12+ VA YES
Shiva Prasad AWS Architect 9+ Atlanta,GA YES
Spoorthy IOS Application Developer 6 Dallas,TX YES
Padma Oracle DBA 10 New York, NY YES




*Thanks & Regards,*

*Raju | Recruiter *

*Email: ra...@r2techcorp.com 470-242-7345 EXT 305 *

*R2 Technologies GA LLC*
*6515 Shiloh Rd, Unit 110, **Alpharetta, GA 30005*

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


[android-developers] **HOTLIST OF TECHNOCRAFT**

2017-09-05 Thread Mohd Muzeeb
Hello Partners,

Hope you are doing great!



This email is to explore the possibility of interacting with your company
in providing you software consultants in the areas of your requirement.
Please find below the available list of candidates for project nationwide
unless specified below. Your help and support is highly appreciated.



Please add muz...@technocraftsol.com to your Corp 2 Corp distribution list.

You can reach me at 614-664-7636



Also you can send Instant Messages in Google Hangout at
muzeebtechnocr...@gmail.com





Looking forward to work with you.



*S. No*

*Name*

*Technology*

*Total Exp*

*LOCATION*

*Re-Location*

1

T M

Sr. Hadoop Developer

9+

New York

CT, MA

2

S C

Sr. Hadoop Developer

8+

Boston, MA

Open

3

R C

Sr. Business Analyst

8+

Dallas, TX

Open

4

R R

Business Analyst

8+

Harrisburg, PA

Open

5

B M

Business Analyst

8+

Topeka, KS

Open

6

V J

Java / J2EE Developer

8+

Columbus, OH

Open

7

J J

Java / J2EE Developer

8+

Atlanta, GA

Open

8

S J

Java / J2EE Developer

8+

Dallas, TX

Open

9

S T

Java / J2EE Developer

8+

Chicago, IL

Open

10

S S

Java Architect

10+

Highlands Ranch, CO

Open

11

A T

Teradata Developer

8+

Plano, TX

Open

12

V I

IOS Developer

7+

Seattle, WA

Open

13

R O

Oracle DBA

8+

Dallas TX

Open

14

M P

QA

7+

San Francisco, CA

Open

15

R Q

QA

8+

Dallas , TX

Open

16

V P

UI Developer

7+

Northfield Township, IL

Open

17

S U

UI Developer

8+

IL-Chicago

Open

18

R A

AWS DevOps

8+

Wilsonville, OR

Open

19

N T

Tibco Developer

8+

Atlanta, GA

Open

20

V N

Tibco Developer

8+

DALLAS, TEXAS

Open





Please get in touch with me for further information. I look forward to hear
from you at the earliest.





*Thanks & Regards,*



*MUZEEB*



*BUSINESS DEVELOPMENT MANAGER*

[image: Description: Description: download]

*Contact No.:* *614-664-7636*

*Office ID: **muz...@technocraftsol.com* 

*Yahoo ID: **muzeebtechnocraft*

*Gmail ID: **muzeebtechnocr...@gmail.com* 

*7000 parkwood Blvd, Ste#200G*

*Frisco,TX,75034*

*www.technocraftsol.com* 

*www.xdimensiontech.com* 

*Partner with X Dimension Technology*

*Fax: 866-360-3962*

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


[android-developers] Mongo DB Admin @Sunnyvale, CA

2017-09-05 Thread Santosh kumar Nityo
Hi,

Hope you are doing Great!!

I was going through your profile with reference to the job opening that I
have with my client at Location* “**Sunnyvale, CA**”*. This is an urgent
fill and the client is looking for *“**Mongo DB Admin**”* I appreciate your
quick response.



*Role: Mongo DB Admin *

*Location: **Sunnyvale, CA*

*Work Duration:** Long Term*


*Job Description: Must Have Skills *
1. creating MongoDB clusters, replica sets, shards , monitoring, backup
2. Good knowledge and experience with MMS , OPS manager and automation
3. Experience with MongoDB on cloud

Nice to have skills

1. Experience as developer, and as Oracle DBA are plus

Detailed Job Description:

provide onsite Mongo Data base administration.



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





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



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

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

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


--

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

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

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

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


[android-developers] HotList of R2 technologies

2017-09-05 Thread Chaitanya Puvvada
 Hello Friends,


 Please find the below availability list of our consultants.

 Please send your direct client requirements to
*cha...@r2techcorp.com* 


Consultant  Name Skill Current Location Experience

Ravi Teja SQL, SSIS, SSRS Fort Lauderdale, FL 5+

Adarsh Hadoop admin Atlanta, GA 7+

Surya Teja UI developer TX 4+

Lakshmi MSBI, SQL Atlanta, GA 6

Bharatwaj UI developer Atlanta, GA 5+

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


[android-developers] MicroStrategy Developer in Washington DC !

2017-09-05 Thread Abhishek ojha
*MicroStrategy Developer Washington DC 6 Months Contract*

 *Process – phone interview, then F2F in Jersey City*



*Functions:*

· Collaborate with Informatics stakeholders to develop functional
requirements.

· Design and build complex internal reporting suites using
MicroStrategy platform tools.

· Lead testing and deployment of the solution to ensure it meets
business requirements.

· Take ownership of cross team issues and delivery issues including
pro-actively communicating across teams to coordinate activities.



*Qualifications*
In order to be successful in this role, we expect that qualified candidates
will bring the following skills, experience, and attributes to the job:

· 5+ years of MicroStrategy Platform experience, including:
Advanced Analytics Reports, Visual Insight Dashboards and Report Services
Document creation

· Fluent in SQL and able to read and write complex queries, views
and stored procedures

· Experience in core Business Intelligence/ Data warehousing
technology: RDBMS, Web, Client/ Server, OLAP, etc

· Experience with big data environments (Hadoop, Spark, Cassandra,
etc.)

· Experience working with capturing reporting on Current and
Historical Data

· Experience working with Transformations, Complex reports, Report
Services Documents (Dashboards),  Rolling Metrics, Nested Metrics,
Relationship Filters, VLDB Properties (multi-pass sql, hints, etc)

· Strong technical and non-technical problem solving skills



*Thanks & Regards,*

*Abhishek Ojha*

*732- 837- 2138*

*ao...@sagetl.com *

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


[android-developers] Java Developer in Jersey City, NJ !

2017-09-05 Thread Abhishek ojha
*Java Developer*

*Jersey City, NJ*

*6+ months*



*Process – phone interview, then F2F in Jersey City*

*Working on the Core Trading Platform, must have good communication skills
– facing off against business and technology teams. Must have Spring Boot
and Spring Framework (back end services) experience, Multi-threading, In
Memory Caching, Front Office / Trading experience.*





*Job Duties & Responsibilities: *

· Perform product analysis and development tasks of varying
complexity nature which may require research and analysis under supervision
of the technical lead

· Work independently with direct supervision in the design,
development, testing, of maintenance items for systems of moderate
size/complexity with emphasis on fast turn-around.

· provide detailed analysis of problems/requirements, recommend
solutions for various business units across the organization and develop
tools and report to support these requirements.

· Apply innovation, creativity and improvement to the development
process and problem-solving, keeping abreast of new technologies

· Participate in the creation of detailed design documents for
major applications.

· Able to work on multiple projects at the same time and with
off-shore team members.

· Provide high-quality support for various applications and be
proactive in keeping applications stable and reliable.

· 4 year degree in Computer Science is MUST

· 8-12 years of total IT  Experience.

· Able to interpret business requirements and develop high
performance scaled applications using JAVA technologies - Spring batch and
spring boot services, In Memory caching and Messaging Queue.

· Intimate knowledge of object-oriented design principles and
common design patterns

· Excellent verbal/written communication skills.

· Ability to work with others in a team environment

· Ability to work on aggressive schedules. May require work beyond
normal hours (weekends or evenings).

· JAVA - Spring, Front/Middle OFFICE, MULTI-THREADING, In Memory
Caching, Messaging, SDLC;

· ELECTRONIC TRADING – EQ/MF/Optional/Complex Options.



*Development/Computing Environment:*

· Proven/hands on spring boot and spring technologies experience.

· skills and knowledge.

· Experience of a front office trading environment.

· Ability to design and develop scalable solutions which are easy
to maintain and support

· Firm understanding of java memory model and multi-threading
development

· Knowledge of SDLC and prior experience working on large software
development projects. Ability to see "big picture" to consider system
dependencies, corner cases and change impacts in providing robust solutions

· Strong problem solving and analytical skills. Strong
interpersonal skills. Ability to work as part of an enterprise team



*Advantageous Skills & Experience:*

· Previous experience developing large scale Electronic Trading
systems.

· Knowledge of Equity, Mutual Fund and Options trading and their
trading lifecycle

· Understanding of block trade and allocations is plus.

· Prior experience working at a large scale trading, especially a
Front Office and Middle office (Trading) Environment

· Proficiency in SQL and experience working with SQL Server and/or
Oracle

· Prior experience of Order Management / Trading Services (Trades
validation, STP, RFQ, TIBCO EMS)





*Thanks & Regards,*

*Abhishek Ojha*

*732- 837- 2138*

*ao...@sagetl.com *

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


[android-developers] Hiring for C# .NET Developer at Homewood, IL || Local Only with Positive Train Control Experience or someone from the transportation industry

2017-09-05 Thread USIT Recruiter
*Hi ,*



*Please lookup the below position and if you are comfortable then share
your updated resume.*

*Position:  C# .NET Developer*

*Location:  Homewood, IL*

*Duration : 6+Months*

*Interview Mode : Phone then F2F *



*I need someone with Positive Train Control Experience or someone from the
transportation industry*



This role combines strong technical expertise, a solid understanding of
core software development practices, a broad and deep knowledge of software
products/platforms full stack from middleware to custom application as
opposed to commercial off the shelf.

•  The Senior Software Developer role requires on the ground
proven practitioner expertise in performing and  delivering complex
software & hardware development and integration of products with a strong
3rd party solutions in a multi-release-project execution landscape within
Extremely demanding timelines.

•  Proven expertise in implementing a development methodology
framework while maintaining in-flight project execution within vital
deadlines with multiple parallel development paths requiring merging and
packing

•  Leadership style attribute required: creative
results-oriented& problem solving, pace setter

•  Strong communication, collaboration and influencing skills.

•  BS in Computer Science, Applied Mathematics or equivalent
degrees / work experience



Reporting to the Lead Software Engineer, you will be part of System
Integration team that focuses on integrating technology solutions for
Positive Train Control systems for CN. You may have to  be working  on the
vendor premises that use agile application development techniques to
deliver timely solutions that directly impact the mission critical
objective. Although you may not develop, you will have to team up with 3rd
party development teams to ensure solution implementation within vital
timelines and quality.



The qualified candidate must demonstrate advanced engineering practices and
a proficiency in multiple enterprise technologies
(C++/Java/.NET/JavaScript). & EXTENSIVE expertise in VB.NET. The ability to
acquire new concepts quickly is critical whilst knowledge railways systems
is a plus, the ideal candidate will have deep knowledge of code branching
and merging technics. An ability to work in a fast-paced environment and to
be adaptable to shifting priorities is a key attribute. This is a great
opportunity to work on highly visible and critical technologies with a
highly talented team.

•  Have expert level experience developing large-scale software
solutions using VB.NET, C++,Java, JavaScript Microsoft .NET C#

•  You have expertise in architecture and solution
specification techniques and tools such as enterprise architect as well as
source control management systems

•  You have experience in Release Management practices

•  You have experience in CI/CD practises for continuous
integration and automated deployment/rollback practises

•  You have extensive experience of working closely with a
number of architecture teams, internal business stakeholders and 3rd party
service providers to recommend and deliver solutions to complex problems

•  You have experience with agile delivery principles and
practices, preferably Scrum-based, and on agile engineering development
practises.

•  You have extensive exposure to V-Model testing techniques
and practices.

•  You can quickly adapt to a dynamic business environment.

•  You have a passion for continued learning, and will
continually learn about new rail technology trends

•  You have been exposed to high availability custom
application development, messaging protocols, embedded software development.

•  You are knowledgeable  of CMMI requirements and have been
involved and demonstrated experience level 3 and above

•  Ideally DOD security clearance

•  Ability to run code reviews , understand code coverage and
test coverage

•  Knowledge and demonstrated use of tools to meet efficiency &
quality code metrics while implementing continuous improvements

•  Ability to solve problems quickly and completely.

•  Ability to navigate code branching and merging techniques.

•  Possess excellent communication skills, with an emphasis on
verbal and written communication.

•  Ability to multi-task and stay organized in a dynamic work
environment.

•  Possess a positive attitude.

•  Ability to "think outside the box".

•  Prepare reports and analyses setting forth progress, adverse
trends and appropriate recommendations or conclusions.

•  Experience and ability to teach or instruct vendor
co-workers.

•  Providing advice, training and technical support for various
projects.

•  

[android-developers] Free business card design | Fifty Percent Print

2017-09-05 Thread dileep k




*About Us*

 Fifty Percent Print  presents 
the premier Online Printing Platform for obtaining personal, promotional, 
commercial, and informational print products at the lowest prices!

Why waste the time visiting your printer when online help is at hand? Fifty 
Percent Print brings you the one-stop shop for all your printing needs and 
more.

- Large range of popular products for creating Business Card, Envelope, 
Letterhead, Greeting Card, Postcard, Flyer, Poster, Brochure and many more.

- Thousands of pre-loaded templates and customizable products. Let our 
professional experts create custom print products for you.

- Enjoy freedom from hassles of constant designing, redesigning and 
proofing.

- Pick your own style, design, quantity, shipping and payment mode and 
leave the rest to Fifty Percent Print.

- Get your order printed on superior quality paper and card stocks using 
the modern offset printing technology.

- Get your order delivered quickly at your doorstep.

Fifty Percent Print  helps you 
capitalize on the advantages afforded by the digital age. We assure 
affordability, flexibility and profitability like no other online print 
shop.

Just about anybody can use Fifty Percent Print services - artists, 
freelance designers, small and medium businesses, or anyone that needs 
print materials in small or bulk quantities.




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


[android-developers] RenderScript headers and libs

2017-09-05 Thread Yair Ko
Hello,

I'm having hard time compiling RenderScript code. Currently the single big 
issue is : RenderScript.h not found.
Where can I find the RS headers and libraries ?

Thank you

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