[rtc-linux] [PATCH AUTOSEL 4.14 067/127] rtc: ds1374: fix possible race condition

2020-09-17 Thread Sasha Levin
From: Alexandre Belloni 

[ Upstream commit c11af8131a4e7ba1960faed731ee7e84c2c13c94 ]

The RTC IRQ is requested before the struct rtc_device is allocated,
this may lead to a NULL pointer dereference in the IRQ handler.

To fix this issue, allocating the rtc_device struct before requesting
the RTC IRQ using devm_rtc_allocate_device, and use rtc_register_device
to register the RTC device.

Link: 
https://lore.kernel.org/r/20200306073404.56921-1-alexandre.bell...@bootlin.com
Signed-off-by: Alexandre Belloni 
Signed-off-by: Sasha Levin 
---
 drivers/rtc/rtc-ds1374.c | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
index 38a2e9e684df4..77a106e90124b 100644
--- a/drivers/rtc/rtc-ds1374.c
+++ b/drivers/rtc/rtc-ds1374.c
@@ -620,6 +620,10 @@ static int ds1374_probe(struct i2c_client *client,
if (!ds1374)
return -ENOMEM;
 
+   ds1374->rtc = devm_rtc_allocate_device(>dev);
+   if (IS_ERR(ds1374->rtc))
+   return PTR_ERR(ds1374->rtc);
+
ds1374->client = client;
i2c_set_clientdata(client, ds1374);
 
@@ -641,12 +645,11 @@ static int ds1374_probe(struct i2c_client *client,
device_set_wakeup_capable(>dev, 1);
}
 
-   ds1374->rtc = devm_rtc_device_register(>dev, client->name,
-   _rtc_ops, THIS_MODULE);
-   if (IS_ERR(ds1374->rtc)) {
-   dev_err(>dev, "unable to register the class device\n");
-   return PTR_ERR(ds1374->rtc);
-   }
+   ds1374->rtc->ops = _rtc_ops;
+
+   ret = rtc_register_device(ds1374->rtc);
+   if (ret)
+   return ret;
 
 #ifdef CONFIG_RTC_DRV_DS1374_WDT
save_client = client;
-- 
2.25.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/20200918021220.2066485-67-sashal%40kernel.org.


[rtc-linux] [PATCH AUTOSEL 4.19 110/206] rtc: sa1100: fix possible race condition

2020-09-17 Thread Sasha Levin
From: Alexandre Belloni 

[ Upstream commit f2997775b111c6d660c32a18d5d44d37cb7361b1 ]

Both RTC IRQs are requested before the struct rtc_device is allocated,
this may lead to a NULL pointer dereference in the IRQ handler.

To fix this issue, allocating the rtc_device struct before requesting
the IRQs using devm_rtc_allocate_device, and use rtc_register_device
to register the RTC device.

Link: 
https://lore.kernel.org/r/20200306010146.39762-1-alexandre.bell...@bootlin.com
Signed-off-by: Alexandre Belloni 
Signed-off-by: Sasha Levin 
---
 drivers/rtc/rtc-sa1100.c | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/drivers/rtc/rtc-sa1100.c b/drivers/rtc/rtc-sa1100.c
index 304d905cb23fd..56f625371735f 100644
--- a/drivers/rtc/rtc-sa1100.c
+++ b/drivers/rtc/rtc-sa1100.c
@@ -186,7 +186,6 @@ static const struct rtc_class_ops sa1100_rtc_ops = {
 
 int sa1100_rtc_init(struct platform_device *pdev, struct sa1100_rtc *info)
 {
-   struct rtc_device *rtc;
int ret;
 
spin_lock_init(>lock);
@@ -215,15 +214,14 @@ int sa1100_rtc_init(struct platform_device *pdev, struct 
sa1100_rtc *info)
writel_relaxed(0, info->rcnr);
}
 
-   rtc = devm_rtc_device_register(>dev, pdev->name, _rtc_ops,
-   THIS_MODULE);
-   if (IS_ERR(rtc)) {
+   info->rtc->ops = _rtc_ops;
+   info->rtc->max_user_freq = RTC_FREQ;
+
+   ret = rtc_register_device(info->rtc);
+   if (ret) {
clk_disable_unprepare(info->clk);
-   return PTR_ERR(rtc);
+   return ret;
}
-   info->rtc = rtc;
-
-   rtc->max_user_freq = RTC_FREQ;
 
/* Fix for a nasty initialization problem the in SA11xx RTSR register.
 * See also the comments in sa1100_rtc_interrupt().
@@ -272,6 +270,10 @@ static int sa1100_rtc_probe(struct platform_device *pdev)
info->irq_1hz = irq_1hz;
info->irq_alarm = irq_alarm;
 
+   info->rtc = devm_rtc_allocate_device(>dev);
+   if (IS_ERR(info->rtc))
+   return PTR_ERR(info->rtc);
+
ret = devm_request_irq(>dev, irq_1hz, sa1100_rtc_interrupt, 0,
   "rtc 1Hz", >dev);
if (ret) {
-- 
2.25.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/20200918020802.2065198-110-sashal%40kernel.org.


[rtc-linux] [PATCH AUTOSEL 4.19 111/206] rtc: ds1374: fix possible race condition

2020-09-17 Thread Sasha Levin
From: Alexandre Belloni 

[ Upstream commit c11af8131a4e7ba1960faed731ee7e84c2c13c94 ]

The RTC IRQ is requested before the struct rtc_device is allocated,
this may lead to a NULL pointer dereference in the IRQ handler.

To fix this issue, allocating the rtc_device struct before requesting
the RTC IRQ using devm_rtc_allocate_device, and use rtc_register_device
to register the RTC device.

Link: 
https://lore.kernel.org/r/20200306073404.56921-1-alexandre.bell...@bootlin.com
Signed-off-by: Alexandre Belloni 
Signed-off-by: Sasha Levin 
---
 drivers/rtc/rtc-ds1374.c | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
index 38a2e9e684df4..77a106e90124b 100644
--- a/drivers/rtc/rtc-ds1374.c
+++ b/drivers/rtc/rtc-ds1374.c
@@ -620,6 +620,10 @@ static int ds1374_probe(struct i2c_client *client,
if (!ds1374)
return -ENOMEM;
 
+   ds1374->rtc = devm_rtc_allocate_device(>dev);
+   if (IS_ERR(ds1374->rtc))
+   return PTR_ERR(ds1374->rtc);
+
ds1374->client = client;
i2c_set_clientdata(client, ds1374);
 
@@ -641,12 +645,11 @@ static int ds1374_probe(struct i2c_client *client,
device_set_wakeup_capable(>dev, 1);
}
 
-   ds1374->rtc = devm_rtc_device_register(>dev, client->name,
-   _rtc_ops, THIS_MODULE);
-   if (IS_ERR(ds1374->rtc)) {
-   dev_err(>dev, "unable to register the class device\n");
-   return PTR_ERR(ds1374->rtc);
-   }
+   ds1374->rtc->ops = _rtc_ops;
+
+   ret = rtc_register_device(ds1374->rtc);
+   if (ret)
+   return ret;
 
 #ifdef CONFIG_RTC_DRV_DS1374_WDT
save_client = client;
-- 
2.25.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/20200918020802.2065198-111-sashal%40kernel.org.


[rtc-linux] [PATCH AUTOSEL 5.4 176/330] rtc: ds1374: fix possible race condition

2020-09-17 Thread Sasha Levin
From: Alexandre Belloni 

[ Upstream commit c11af8131a4e7ba1960faed731ee7e84c2c13c94 ]

The RTC IRQ is requested before the struct rtc_device is allocated,
this may lead to a NULL pointer dereference in the IRQ handler.

To fix this issue, allocating the rtc_device struct before requesting
the RTC IRQ using devm_rtc_allocate_device, and use rtc_register_device
to register the RTC device.

Link: 
https://lore.kernel.org/r/20200306073404.56921-1-alexandre.bell...@bootlin.com
Signed-off-by: Alexandre Belloni 
Signed-off-by: Sasha Levin 
---
 drivers/rtc/rtc-ds1374.c | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
index 367497914c100..28eb96cbaf98b 100644
--- a/drivers/rtc/rtc-ds1374.c
+++ b/drivers/rtc/rtc-ds1374.c
@@ -620,6 +620,10 @@ static int ds1374_probe(struct i2c_client *client,
if (!ds1374)
return -ENOMEM;
 
+   ds1374->rtc = devm_rtc_allocate_device(>dev);
+   if (IS_ERR(ds1374->rtc))
+   return PTR_ERR(ds1374->rtc);
+
ds1374->client = client;
i2c_set_clientdata(client, ds1374);
 
@@ -641,12 +645,11 @@ static int ds1374_probe(struct i2c_client *client,
device_set_wakeup_capable(>dev, 1);
}
 
-   ds1374->rtc = devm_rtc_device_register(>dev, client->name,
-   _rtc_ops, THIS_MODULE);
-   if (IS_ERR(ds1374->rtc)) {
-   dev_err(>dev, "unable to register the class device\n");
-   return PTR_ERR(ds1374->rtc);
-   }
+   ds1374->rtc->ops = _rtc_ops;
+
+   ret = rtc_register_device(ds1374->rtc);
+   if (ret)
+   return ret;
 
 #ifdef CONFIG_RTC_DRV_DS1374_WDT
save_client = client;
-- 
2.25.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/20200918020110.2063155-176-sashal%40kernel.org.


[rtc-linux] [PATCH AUTOSEL 5.4 175/330] rtc: sa1100: fix possible race condition

2020-09-17 Thread Sasha Levin
From: Alexandre Belloni 

[ Upstream commit f2997775b111c6d660c32a18d5d44d37cb7361b1 ]

Both RTC IRQs are requested before the struct rtc_device is allocated,
this may lead to a NULL pointer dereference in the IRQ handler.

To fix this issue, allocating the rtc_device struct before requesting
the IRQs using devm_rtc_allocate_device, and use rtc_register_device
to register the RTC device.

Link: 
https://lore.kernel.org/r/20200306010146.39762-1-alexandre.bell...@bootlin.com
Signed-off-by: Alexandre Belloni 
Signed-off-by: Sasha Levin 
---
 drivers/rtc/rtc-sa1100.c | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/drivers/rtc/rtc-sa1100.c b/drivers/rtc/rtc-sa1100.c
index 86fa723b3b762..795273269d58e 100644
--- a/drivers/rtc/rtc-sa1100.c
+++ b/drivers/rtc/rtc-sa1100.c
@@ -182,7 +182,6 @@ static const struct rtc_class_ops sa1100_rtc_ops = {
 
 int sa1100_rtc_init(struct platform_device *pdev, struct sa1100_rtc *info)
 {
-   struct rtc_device *rtc;
int ret;
 
spin_lock_init(>lock);
@@ -211,15 +210,14 @@ int sa1100_rtc_init(struct platform_device *pdev, struct 
sa1100_rtc *info)
writel_relaxed(0, info->rcnr);
}
 
-   rtc = devm_rtc_device_register(>dev, pdev->name, _rtc_ops,
-   THIS_MODULE);
-   if (IS_ERR(rtc)) {
+   info->rtc->ops = _rtc_ops;
+   info->rtc->max_user_freq = RTC_FREQ;
+
+   ret = rtc_register_device(info->rtc);
+   if (ret) {
clk_disable_unprepare(info->clk);
-   return PTR_ERR(rtc);
+   return ret;
}
-   info->rtc = rtc;
-
-   rtc->max_user_freq = RTC_FREQ;
 
/* Fix for a nasty initialization problem the in SA11xx RTSR register.
 * See also the comments in sa1100_rtc_interrupt().
@@ -268,6 +266,10 @@ static int sa1100_rtc_probe(struct platform_device *pdev)
info->irq_1hz = irq_1hz;
info->irq_alarm = irq_alarm;
 
+   info->rtc = devm_rtc_allocate_device(>dev);
+   if (IS_ERR(info->rtc))
+   return PTR_ERR(info->rtc);
+
ret = devm_request_irq(>dev, irq_1hz, sa1100_rtc_interrupt, 0,
   "rtc 1Hz", >dev);
if (ret) {
-- 
2.25.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/20200918020110.2063155-175-sashal%40kernel.org.


[rtc-linux] Only USC / GC / EAD - CTH Roles - SFDC ARCHITECT Opportunities

2020-09-17 Thread Rufus Recruiter1
*Please send RESUMES only to rufu...@groupninellc.com
*


*URGENT NEEDS*

*2 Conract-To-Hire opportunities*

*Need USC / GC / GC EAD / L2 EAD / H4 EAD*

*No H1B *

*Should be Ready to Go PERM after 3 months*



*REMOTE till Covid – later ONSITE*



*Max Possible Rate is $75/hr on C2C*








*POSITION 1:*

*Implementation Partner - BirlaSoft*

*Strong Salesforce Technical Architect (with Heroku platform)*

*NJ*

*6 months Contract-To-Hire (Need those who can convert to PERM after
contract without Sponsorship)*

*Rate: As low as possible*

*Remote till COVID*



*Description*

Looking for strong Salesforce Technical Architect who has working
experience with Heroku platform

4+ years minimum as a Salesforce Architecting enterprise Force.com and
custom lightning application with exposure to 2+ global implementations

Strong communication skills

Proven capability in architecting Salesforce solutions independently and
designing software on the Force.com platform, with hands-on participation.

Strong functional/ systems design experience with enterprise level systems
and ability to balance the long-term and short-term implications of
individual design decisions.

Good understanding of data modeling/ security

Deep understanding of RDBMS concepts and structures, knowledge of SQL,
structured system analysis and design methods, Sandbox architecture, agile
delivery methodologies, data integration and migration, etc.

Advanced knowledge of Apex, VisualForce, Lightning, Chatter API, Metadata
API, Rest API, SOAP API, Bulk API etc.

Experience with the JavaScript frameworks, design patterns, etc.

Provides mentoring and guidance to other team members, including new hires.





*POSITION 2:*

*Implementation Partner - BirlaSoft*

*Role: *“*Salesforce Solution Architect”*

*Location: LA, CA (REMOTE During COVID)*

*Duration: 3-6 months contract to hire (Need those who can convert to PERM
after contract without Sponsorship)*

*Rate: As low as possible*



*Description*

   - Strong expeirence in development and support project related working
   experience in SFDC.
   - Hands on with SFDC as an Salesforce Technical Lead
   - Should have strong working experience in SFDC as technical Lead
   - Should have 4+ hands on experience in SFDC (Apex, VF, Webservices,
   Integration).
   - Should have 2+ hands on experience in SFDC lightning.
   - Able to translate the customer requirement and gap analysis in to
   comprehensive technical design.
   - Should have expertise in SFDC design patterns and implementation of
   the same.
   - Strong communication skills and client interaction skills.
   - Good understanding of SFDC classic and lightning platform, standard
   features and standard object structures.



*Essential Skill:*

SFDC, CRM, Force.com, Lightning, Java Script, CSS

Client facing and good communication skills

Certifications: PD I, PD II.

Salesforce Designer certificate desirable.



*Additional Skill:*

Webservices (SOAP, REST), Integration

Sales Cloud, Service Cloud



*Roles & Responsibilities:*

   - Should be able to work as developer and lead the team as well.
   - Should be able to handle team and manage work assignment and tracking.
   - Able to translate the customer requirement and gap analysis in to
   comprehensive technical design.
   - Should have expertise in SFDC design patterns and implementation of
   the same.
   - Able to manage resolution and response SLAs for production support
   tickets.
   - Strong communication skills and client interaction skills.
   - Good understanding of SFDC classic and lightning platform, standard
   features and standard object structures.







Thanks & Regards,

*Rufus Christopher*

Senior IT Recruiter
Desk: *734-610-8001*
Email: *rufu...@groupninellc.com *

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAOhqQiM%2BHjo-SU7HrJFTgPGXV4sFnWoUtR5OB6Pe16WWp8FU-g%40mail.gmail.com.


[rtc-linux] REQ :: Sr. Java Lead/ Developer(AWS) _ Eden Praire, MN _12+ Months

2020-09-17 Thread Sam Thomas
*9+ Years Experience  & Need to take video Interview Tomorrow*



*Requirement details:*



*Job title: **Sr. Java Lead/Developer(AWS)*

*Location: Eden Prairie, MN*

*Duration: 12+ months*



*Job Description:*



*Primary Skill Set   *

● 9+ years of experience as a software developer, lead and architect

● Strong verbal, presentation and written communications skills

● ● Deep experience of micro-service-based architectures and building
performing, scalable and durable solutions in cloud environments

● AWS cloud experience (IAM, Cognito, ECS, Fargate, Lambda, RDS, SQS, S3)

● Experience acting as technical liaison between Product Management,
Development, and Operations

● Experience with event-driven architecture and messaging systems
(ActiveMQ/Kafka)

● Proficient in NoSQL (MongoDB, Amazon DynamoDB, Redis) and Relational
Databases (Oracle, MySQL and PostgreSQL)

● Expert-level experience with Java, Spring Boot Framework required

● Ability to create analysis and quick prototypes for different
implementation alternatives.

● Expert knowledge of technical architecture best practices

● Developed architectures in multiple diverse domains and application stacks

● Expertise with modern, Agile-based application development methodologies
such as microservices, API management, web-scale architectures,
container-based delivery, cloud automation, TDD, BDD, continuous
integration (CI), and CD.



*Secondary Skill Set  *

*● *Experience in Groovy



*Roles and Responsibilities*

● Lead software architecture implementation throughout the product life
cycle for one or more application domains.

● Define software application architecture solution proposals and
alternatives with the team, including schedule, resource & costing.

● Lead and participate in software architecture and code reviews.

● Work with the team of internal and external software engineers to
prototype and implement the applications.

● Owns the Domain Roadmap and works closely with business, architects and
engineering heads to set priority, deliver on-time, within budget and of
high quality.

● This architect will lead engineering teams to develop innovative
solutions that meet market needs with respect to functionality,
performance, scalability, reliability, implementation schedules, and
adherence to develop goals and principles

● Drive and understand use cases for current and future architectural
requirements across multiple domains. Drive the evolution of Client’s
technology stack, to maintain and enhance Client’s leadership role.

● Act as a role model and mentor for the entire technology organization.
Lead one or more application domains to achieve architectural initiatives.

● Will be part of the Architectural Committee consisting of the team of
architects to achieve enterprise-wide architectural alignment, work towards
devising architectural solutions, and chairing architectural design reviews.

-- 
*Thanks & Regards,*
Sam Thomas

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHpqF_ZOUQdYxKKbaQiTvBYABu%2BGoaCjvoHPh3rDYzpgSmqz2w%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Senior JAVA Developer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread xperttech niranjan
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi,*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*





*Title: Senior JAVA Developer*

*Location: Philadelphia PA (Till COVID19- remote)*

*Duration: 12+ Months Contract*



*Java 8 Experience is Must.*



*Telecom experience is Must.*



*Responsibilities:*

· Lead and drive architecture and design of platforms and services

· Produce technical design and specification documentation for
platforms and services

· Architect, Design and Develop Rest and messaging based software
infrastructure and build back-end systems

· and APIs

· Architect, Design and develop low latency/high throughput server
infrastructure components to handle large volume of transactions

· Analyze requirements, design and develop code, unit test code and
test tools, as necessary

· Present and defend architectural, design, and technical choices
to internal and external audiences.

· Provide direction and support to multiple software development
teams to ensure best of breed technical

· principles are implemented

· Guides implementation of Software Reliability Engineering
principles throughout lifecycle

· Comfortable with collaboration, open communication and reaching
across Development, QA, Ops and other cross functional teams

· Designs new software and web applications, supports applications
under development and customizes

· current applications.

· Conduct code and implement reviews to enforce and adopt best
practices

· Develop strong and trusting relationships with engineering teams
and senior leadership

· Consistent exercise of independent judgment and discretion in
matters of significance

· Mentors and develops fellow software engineers



*Qualifications:*

   - Java 8, Spring boot, REST, Cassandra, Janusgraph
   - Jenkins, Gradle, Maven, Puppet, Ansible
   - AWS (EC2, SQS, SNS, S3), ActiveMQ
   - Freemarker Templates
   - Linux, Git
   - Basic understanding of networking will be good.
   - Agile project execution using Jira.
   - Splunk, Consul.



*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CABu3Qevg5AW6yUZBpWLaxg%3DP_s0rGsUPwRad2gfXHysPqPHUbA%40mail.gmail.com.


[rtc-linux] REQ:: Salesforce Lead (Marketing Cloud or Health Cloud) _ Austin, TX _ 12 Months

2020-09-17 Thread Sam Thomas
*10+ Years Experience Mandatory*

*Requirement Details:*



*Position: **Salesforce Lead (Marketing Cloud or Health Cloud**)*

*Location: Austin, TX*

*Duration: 12+ Months*



*Job Description:*

Should have overall 10 – 12 years of experience in Salesforce ecosystem

Should have working experience in Marketing Cloud

Should have in depth understanding in Health Cloud

Should have implemented at least 1 or more AppExchange Product Development
and expected to have end to product development knowledge

Should be able to code reviews and be an expert to review the AppExchange
security vulnerabilities

Should have minimum 7 to 8 years of experience in Custom Development Apex,
Visualforce, Lightning and Lightning Web Components.

Having JavaScript knowledge is must and any familiarity with the frameworks
like Angualr is preferable.

Should have in depth knowledge on the Salesforce platform and it’s
different offerings and solutions

Having certification is an advantage and the certifications on Health
Cloud, Marketing Cloud and PD2 will have a great advantage.


-- 
*Thanks & Regards,*
Sam Thomas

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHpqF_aGfcfg68HDAJ%3DCG1qj9ojc4GPbndD_PP66h1Rwr-amyQ%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Senior JAVA Developer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread niranjan kumar
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi,*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*





*Title: Senior JAVA Developer*

*Location: Philadelphia PA (Till COVID19- remote)*

*Duration: 12+ Months Contract*



*Java 8 Experience is Must.*



*Telecom experience is Must.*



*Responsibilities:*

· Lead and drive architecture and design of platforms and services

· Produce technical design and specification documentation for
platforms and services

· Architect, Design and Develop Rest and messaging based software
infrastructure and build back-end systems

· and APIs

· Architect, Design and develop low latency/high throughput server
infrastructure components to handle large volume of transactions

· Analyze requirements, design and develop code, unit test code and
test tools, as necessary

· Present and defend architectural, design, and technical choices
to internal and external audiences.

· Provide direction and support to multiple software development
teams to ensure best of breed technical

· principles are implemented

· Guides implementation of Software Reliability Engineering
principles throughout lifecycle

· Comfortable with collaboration, open communication and reaching
across Development, QA, Ops and other cross functional teams

· Designs new software and web applications, supports applications
under development and customizes

· current applications.

· Conduct code and implement reviews to enforce and adopt best
practices

· Develop strong and trusting relationships with engineering teams
and senior leadership

· Consistent exercise of independent judgment and discretion in
matters of significance

· Mentors and develops fellow software engineers



*Qualifications:*

   - Java 8, Spring boot, REST, Cassandra, Janusgraph
   - Jenkins, Gradle, Maven, Puppet, Ansible
   - AWS (EC2, SQS, SNS, S3), ActiveMQ
   - Freemarker Templates
   - Linux, Git
   - Basic understanding of networking will be good.
   - Agile project execution using Jira.
   - Splunk, Consul.



*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHP7M5QwuBFSTNHKgPpxSO8jQXwspHKCM-ZpijWAt2acAXOYtg%40mail.gmail.com.


[rtc-linux] SAP ABAP Developer----Omaha, NB------6 Months

2020-09-17 Thread kiran Toj
Hi ,



Hope you are doing great,



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




*Job Title: SAP ABAP Developer Location: Omaha, NB*

*Duration: 6 Months *

*Rate: $55-60/ hr on C2C*

*Passport Number & LinkedIn ID is Mandatory for Submission*



*Skills Required:*

   - SAP Advanced Business Application Programming (ABAP) for non-HANA



*Thanks & Regards,*

*Sai Kiran*

*Email:  **sai.ki...@itechus.net *

*Mobile: 501-434-2322*

 Fax: 802.383.1501

iTech US, Inc. | Texas/Vermont/NJ/India |www.iTechUS.com
 |

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAGquW%2BJzM9W009dSrN-0aRkG3ZC5kDLR2E2%3DwnGtv4ZkSTUTXg%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Docsis Test Engineer; Lawrenceville GA; 12+ Months Contract

2020-09-17 Thread xperttech niranjan
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*





*Title: **DOCSIS* *Test Engineer*

*Location: Lawrenceville GA*

*Duration: 12+ Months Contract *



Years of Experience: 6 to 8 years



Docsis Experience is must



· Expert in validation of Cable and Fiber Gateway products

· Router gateway features

· Wi-Fi features

· Expert in DOCSIS protocols , LAN WAN technologies , L2,L3, L4
networking protocols

· Good to have exposure to automation development using Python
/TCL/ Perl / Selenium automation

· Hands on experience on various Networking features DHCP, DNS,
VLAN, PPP, ICMP, ARP, NAT, QoS, TCP/UDP etc.

· Knowledge of Service specific protocols TR-069,  IGMP, SIP/RTP,
802.1x, Application hosting, DMZ, Firewall, Security etc





*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CABu3Qeu20aVvxk%2BNUFDTh3FwJQ8%3DohN%3DCfS4W%3Dv73HSvuyGFDQ%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Docsis Test Engineer; Lawrenceville GA; 12+ Months Contract

2020-09-17 Thread niranjan kumar
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*





*Title: **DOCSIS* *Test Engineer*

*Location: Lawrenceville GA*

*Duration: 12+ Months Contract *



Years of Experience: 6 to 8 years



Docsis Experience is must



· Expert in validation of Cable and Fiber Gateway products

· Router gateway features

· Wi-Fi features

· Expert in DOCSIS protocols , LAN WAN technologies , L2,L3, L4
networking protocols

· Good to have exposure to automation development using Python
/TCL/ Perl / Selenium automation

· Hands on experience on various Networking features DHCP, DNS,
VLAN, PPP, ICMP, ARP, NAT, QoS, TCP/UDP etc.

· Knowledge of Service specific protocols TR-069,  IGMP, SIP/RTP,
802.1x, Application hosting, DMZ, Firewall, Security etc





*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHP7M5QUoYK9aFP%2BpKbchgm3m8vQY5-6dEAV8f%3D88iqY6gBVuA%40mail.gmail.com.


[rtc-linux] EDIFECS Consultant//Dayton, OH (Initial remote and then need to relocate)

2020-09-17 Thread Mohammed Ifthekhar
Hello *Associate*,

Hope you are doing well
We have below requirement open. Please send me your genuine candidate on my
email ID  *ifthek...@canopyone.com *




*Position: EDIFECS ConsultantLocation: Dayton, OH (Initial remote and then
need to relocate)Type: Contract*

*Key Skills*: EDIFECS, Specbuilder, EDI*.*

Must have experience on:  • Specbuilder  • Xengine  • XEServer  •
Transaction Manager • Groovy  • JavaScript  • SQL Server.
Required Qualifications:

   - Minimum of 5 years of experience, which must include Edifecs Healthcare
   suite.
   - Excellent understanding of technical and business challenges relating
   to EDI product upgrades.
   - Able to configure the Edifecs tools, and understand systems
   integration, application, technical behavior, and business / technical
   requirements.
   - Experience with *Edifecs** Healthcare suite, 8.3x, 9.x, and Healthcare
   Payer systems*.
   - Experience with XEngine, XEngine Server, EAM, TM.
   - Detailed understanding of EDI Healthcare transaction sets, e.g.
   270/271, 834, 837 I/P/D, 835.
   - Knowledge of software development / implementation processes.
   - Able to explain technical solutions and fixes to stakeholders.


*Thanks & Regards*

*Mohammed Ifthekharuddin*

 Tel: 703-831-8282 Ext 223 Cell: 323-825-5662
  Email: ifthek...@canopyone.com  Web: www.canopyone.com


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHa9xHBBkYU7Kod4B9UozfH-9d0%2B7nyxojfzv8XjhsbdF5Rv5w%40mail.gmail.com.


[rtc-linux] Salesforce Engineer @ Jersey City, NJ @ NEED 10+ YEARS

2020-09-17 Thread Vikritha Canopyone
HI ,

Hope you are doing great!!!





*Position: Salesforce Engineer Location: Jersey City, NJ Duration: 12
Months Contract*



*Note: Need candidates with 10+ years for experience.*

*Description:*


Strong understanding of the Salesforce Sales, Service and Financial Service
Clouds
Strong understanding of both how to enhance the platform using
configuration and code (Apex & Lightning Components)
Experience working on larger enterprise Salesforce implementations in a
multi org structure
Advanced knowledge of architecture, design and business processes
Proficiency in modern programming languages Java, Python, C++, Apex
Expertise in application, data and infrastructure architecture disciplines
Ability to work collaboratively in teams and develop meaningful
relationships to achieve common goals
Extensive Software Engineering work experience in an Agile / SDLC
environment and solid software design, coding, testing, maintenance and
debugging skills in the Salesforce CRM platform
Strong experience with Salesforce and hands on experience with the Apex
programming language, building Salesforce Lightning UI, Salesforce
Lightning Connect to call external API, and development of REST APIs
Good understanding of OAUTH2, Caching, Future calls, outlook integration,
open CTI and salesforce features
Ability to develop reports, dashboards, and processes to continuously
monitor data quality and integrity
Ability to interpret system / business requirements and prepare
specification and design document
Understanding of the sales process to better align changes to the CRM
platform
Familiarity with modern technology and architecture (cloud, virtualization,
object stores, etc.)
Platform Developer I and Platform Developer II Certification highly
desired. System and Application Architect Certification preferred.





-- 

*Thanks & Regards,*



*Thanks & Regards,*

*Vikritha Mustyala*

  Tel: 703-831-8282 Ext. 253 <703-831-8282>9 .Fax: 7034392550
<703-867-7172>
  Email: m.vikri...@canopyone.com  Web: www.canopyone.com


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAMUQ6vqu93ChqY3SV4eOhcB32gaPtJYgN8s%3D%2BqQerNO9guwZ7A%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Big Data Engineer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread xperttech niranjan
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*



*Title: Big Data Engineer*

*Location: Philadelphia PA*

*Duration: 12+ Months Contract*



*Telecom Domain Experience is Must*



Responsibilities:

· Development of Big Data Analytics services for Client set top and
broadband premise equipment. This involves dealing with collection of large
quantity of metrics/real time data that needs to be persisted and analyzed.

· Monitoring and Administration of cloud-based infrastructure and
services

· Deployment of web applications and services.

· Configuring Linux/Unix systems, including performance tuning and
system administration.



Required Skills:

· *10* years’ experience in application development using *Java/python
based technologies*

· Experience in *Apache Spark with pyspark or java*

· Experience with the deployment and performance tuning of *Spark
applications*

· Deploying and managing Spark application in *AWS EMR .*

· Database experience with SQL based databases like *MySQL, SQL,
and Oracle etc.*



Desired Skills:

· Advanced knowledge with Big Data Tools like Hadoop, Elastic
Search.

· Experience with Open stack and/or Amazon Cloud services

· Extensive Linux (Ubuntu preferred) experience

· Advanced knowledge of configuring Linux/Unix systems, including
performance tuning and system administration







*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]



-- 
You received this message because you are subscribed to the Google Groups
"Online Oracle Soa Training in usa" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to online-oracle-soa-training-in-usa+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/online-oracle-soa-training-in-usa/CAHP7M5SDGLSvQWSYxJOgrfRSLmdZp9y8ekpq-yjyP4qa1xhcuw%40mail.gmail.com

.

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CABu3Qevkw9k7wjOVpN8ZJOZ%3Dp0t8_Dyp4dhYqhZC1dkW2hKp4w%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Big Data Engineer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread niranjan kumar
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*



*Title: Big Data Engineer*

*Location: Philadelphia PA*

*Duration: 12+ Months Contract*



*Telecom Domain Experience is Must*



Responsibilities:

· Development of Big Data Analytics services for Client set top and
broadband premise equipment. This involves dealing with collection of large
quantity of metrics/real time data that needs to be persisted and analyzed.

· Monitoring and Administration of cloud-based infrastructure and
services

· Deployment of web applications and services.

· Configuring Linux/Unix systems, including performance tuning and
system administration.



Required Skills:

· *10* years’ experience in application development using *Java/python
based technologies*

· Experience in *Apache Spark with pyspark or java*

· Experience with the deployment and performance tuning of *Spark
applications*

· Deploying and managing Spark application in *AWS EMR .*

· Database experience with SQL based databases like *MySQL, SQL,
and Oracle etc.*



Desired Skills:

· Advanced knowledge with Big Data Tools like Hadoop, Elastic
Search.

· Experience with Open stack and/or Amazon Cloud services

· Extensive Linux (Ubuntu preferred) experience

· Advanced knowledge of configuring Linux/Unix systems, including
performance tuning and system administration







*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHP7M5SDGLSvQWSYxJOgrfRSLmdZp9y8ekpq-yjyP4qa1xhcuw%40mail.gmail.com.


[rtc-linux] Data Engineer

2020-09-17 Thread ankit gautam
Hi All,

Hope everyone having a good time!
I have an exciting job opportunity with my direct client

*Role: Data Engineer*

*Location: Phoenix AZ*

*Type: Contract*



*Only USC and GC*



*Corp to Corp (Immediate requirement)*





• Data Engineer with expertise in Python and Big data technologies like
Spark, Hive, Presto etc.

• Experience with AWS services – S3, EC2, EMR, Lambda Functions and Step
Functions.

• Experience with both SQL and NoSql DB

• Proficient writing Spark jobs in Python and Scala

• Developing Hive UDF and Hive jobs

• Proven hands-on Software Development experience

• Exposure to CI/CD processes using Maven and Jenkins, familiarity with GIT.

• Exposure to Scrum Agile framework

• Preferred experience in core Java technologies ( Java 1.8, Spring Boot,
Spring MVC, Java EE fundamentals, Hibernate/any Object relation mappers,
Oracle/MySQL etc )

*Soft Skills:*

• Good communication and collaborative skills with internal and external
teams

• Flexibility and ability to work in onshore/offshore model involving
multiple agile teams

• Strong analytical and problem-solving skills.




Kindly share me your resume at *ankit.gau...@nlbservices.com*


Phone: +1 (904) 267-1615

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAK4CDMtDT%3DHNRNtB1SqzLmB8Mzq61uXT5_21_Df_Pv%2Bws-ub1w%40mail.gmail.com.


[rtc-linux] OMS Business Analyst : Duluth, GA

2020-09-17 Thread Mohammed Ifthekhar
Hello *Associate*,

Hope you are doing well
We have below requirement open. Please send me your genuine candidate on my
email ID  *ifthek...@canopyone.com *


*Position: **OMS Business Analyst : Duluth, GA*

*Type of hire: Contract to hire (Visa Independent list)*

*Project Duration : Long Term*

*Must Have Skills: Retail Order Management functional/domain experience *




*Job Roles / Responsibilities:  *

*Role: OMS Business Analyst*

   - *Over 6+ years of experience with at least 3+ years of experience in
   the Ecommerce space / retail industry*
   - *Must of have prior experience of at least 1 year in implementing any
   retail order management solution as a business analyst or product owner*
   - *Must have ability to deep dive into order management capabilities and
   features for a custom order management system*
   - *Must have prior experience of working as product owner for at least
   one an agile development project*
   - This role requires managing business requirements and essentially
   become the bridge between the end users / business users and the technical
   teams.
   - Will be responsible for preparing business process mapping/designs,
   manage requirements throughout the life cycle of the project, assist the
   program in planning for end user / user acceptance testing, collaborate
   with QE team for various testing activities
   - Being a bridge between SME from Business side, and developers from
   System Integrator side
   - Demonstrated customer-facing skills, with the ability to communicate
   effectively to business and technical audiences


*Thanks & Regards*

*Mohammed Ifthekharuddin*

 Tel: 703-831-8282 Ext 223 Cell: 323-825-5662
  Email: ifthek...@canopyone.com  Web: www.canopyone.com


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHa9xHDzMUFTrGUemZ0%3D%2BD5BnM2fnpMQBKrPXvXXAomE1GprNw%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Big Data Engineer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread xperttech niranjan
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*



*Title: Big Data Engineer*

*Location: Philadelphia PA*

*Duration: 12+ Months Contract*



*Telecom Domain Experience is Must*



Responsibilities:

· Development of Big Data Analytics services for Client set top and
broadband premise equipment. This involves dealing with collection of large
quantity of metrics/real time data that needs to be persisted and analyzed.

· Monitoring and Administration of cloud-based infrastructure and
services

· Deployment of web applications and services.

· Configuring Linux/Unix systems, including performance tuning and
system administration.



Required Skills:

· *10* years’ experience in application development using *Java/python
based technologies*

· Experience in *Apache Spark with pyspark or java*

· Experience with the deployment and performance tuning of *Spark
applications*

· Deploying and managing Spark application in *AWS EMR .*

· Database experience with SQL based databases like *MySQL, SQL,
and Oracle etc.*



Desired Skills:

· Advanced knowledge with Big Data Tools like Hadoop, Elastic
Search.

· Experience with Open stack and/or Amazon Cloud services

· Extensive Linux (Ubuntu preferred) experience

· Advanced knowledge of configuring Linux/Unix systems, including
performance tuning and system administration







*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CABu3QeutKU%2BUYrBftPdodeFY3OsQdutv-RCVs1iKO3F21gu9-g%40mail.gmail.com.


[rtc-linux] Urgent Client Need: Big Data Engineer; Philadelphia PA; 12+ Months Contract

2020-09-17 Thread niranjan kumar
*Please send your resumes at niran...@bioinfosystems.com
*



*Hi*



*This is Niranjan from BioinfoSystems; hope you are doing well.*

*Please go through below description and reply with your resume, contact
details and current location, if you feel comfortable*



*Title: Big Data Engineer*

*Location: Philadelphia PA*

*Duration: 12+ Months Contract*



*Telecom Domain Experience is Must*



Responsibilities:

· Development of Big Data Analytics services for Client set top and
broadband premise equipment. This involves dealing with collection of large
quantity of metrics/real time data that needs to be persisted and analyzed.

· Monitoring and Administration of cloud-based infrastructure and
services

· Deployment of web applications and services.

· Configuring Linux/Unix systems, including performance tuning and
system administration.



Required Skills:

· *10* years’ experience in application development using *Java/python
based technologies*

· Experience in *Apache Spark with pyspark or java*

· Experience with the deployment and performance tuning of *Spark
applications*

· Deploying and managing Spark application in *AWS EMR .*

· Database experience with SQL based databases like *MySQL, SQL,
and Oracle etc.*



Desired Skills:

· Advanced knowledge with Big Data Tools like Hadoop, Elastic
Search.

· Experience with Open stack and/or Amazon Cloud services

· Extensive Linux (Ubuntu preferred) experience

· Advanced knowledge of configuring Linux/Unix systems, including
performance tuning and system administration







*Please do follow on our LinkedIn page:-
https://www.linkedin.com/company/bioinfo-systems-llc/
 *



*Thanks & Regards*

*Niranjan Kumar *

*Sr. Technical Recruiter*

Desk: 860-207-9466|Fax: 860-722-9692

Email: niran...@bioinfosystems.com

[image: Description: Description: Description: logo]

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHP7M5QbYJXg5dUJdLBt7uJgggtLYiWOagKftjRL_ZKSp9gc9w%40mail.gmail.com.


[rtc-linux] Archer Consultant at Tampa (FL, USA) / Raleigh (NC, USA)

2020-09-17 Thread Qamar Bilal
*bi...@tekishub.com* 

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

*Looking for Archer Consultant at Tampa (FL, USA) / Raleigh (NC, USA)*



Hello

Hope you are doing well,

Our client is really very eager to fill this position ASAP If you're
interested, please call me at your earliest convenience. If not available
to take up this position, I will be grateful if you could forward this
email to your friends who may be interested.



*Job Title: Archer Consultant*

*Location: Tampa (FL, USA) / Raleigh (NC, USA)*

*Duration: 9 months+ contract *

*Visa: ALL (NO OPT, CPT & Transfers)*



*Top 3 Required Skills:*

Archer Access model

Activity Data feeds and Data imports

Packaging/Installation/Mapping

Workflows



*Top 3 Nice to Have Skills:*

Six Sigma and Process Automation

Proposing innovative technologies



Primary Function: Technical SME

Archer Development

Work on tasks and scope of activities as assigned by PwC

Communicate task and deliverable status to PwC stakeholders







Thanks & Regards

Mohammed Bilal Shah?

Technical Recruiter

[image: cid:image001.jpg@01D5E048.145AF4B0]

TekisHub Consulting Services

1000 N West Street, Suite 1200, Wilmington, DE, 19801

:* bi...@tekishub.com

*(**: *302 613 2500 Ext 245

*Hangouts*: bilal.recruite...@gmail.com

*LinkedIn*: linkedin.com/in/qamar-bilal-561bba117

Website: www.Tekishub.com

[image: E-Verify - Employment Eligibility Verification banner with E-Verify
logo.]   An E- Verified Company

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAOyCV4FEUUC4gNUEKifUOjSydPrMiAZ7WO_c4mEe6hCNRGehnA%40mail.gmail.com.


[rtc-linux] GCP Security Architect

2020-09-17 Thread ankit gautam
Hi All,

Hope everyone having a good time!
I have an exciting job opportunity with my direct client


GCP Security Architect
Contract
New York
H1B, GC-EAD, GC, USC


Primary Skill - Only 'Google Cloud Platform' experienced Resources
- GCP Cloud Security Architect,
- Cyber Security 8-10 Years/Expertise in GCP Security/SIEM + GCP
- Strong Knowledge of Splunk and GCP SIEM Solution Google Command Centre

(Candidate has to be Splunk and SIEM Solution expert – who implemented it
on GCP)


Kindly share me your resume at ankit.gau...@nlbservices.com

Phone: +1 (904) 267-1615

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAK4CDMu7M6RZMTBjOofYun9NOWejGagKvVEDLPW82mTX6xAnfA%40mail.gmail.com.


[rtc-linux] RE: DIRECT CLIENT REQ : SAP CRM Consultant - Maple Grove, Minnesota

2020-09-17 Thread Harry John
HI,

Hope you are doing great!

This is Harry from Dynamic Enterprise Solutions. We have urgent requirement
with one of our client's, please review below job description and let me
know your interest.

 

Title: SAP CRM Consultant 

Location: Maple Grove, Minnesota

Duration: 12 Months+

 

BA specializing in SAP-CRM installed base management

 

Local Preferred 

 

USC & GC Preferred , consultant must be on our W2

 

No C2C at this Time

 

Description & Required Skills:

. 10+ years of demonstrated hands on experience in business
application design, implementation or production support for SAP CRM module.


. SAP CRM Implementation experience highly desirable

* Experience in managing SAP projects in Pharma environment with
exposure to SAP PP-PI, SAP WM, SAP QM or SAP MM/IM 

* Good written communication skills to run workshops, document the
business process, manage project resources, review and approve project
documents like Functional Specs, Technical Specs

* Understanding of SDLC in Pharma/ Medical devices industry and
quality regulations 

 

 

Description:

. Experience in business process definition, requirements
definition, solution architecture

. Experience with writing Functional Specs for RICEFW

. Strong interpersonal, oral, presentation, and written
communication skills.

. 8+ years of SAP experience with a Bachelor's Degree

 

Individual Accountabilities:

. Strong results orientation (driving to deadlines, project goals,
etc.).

. Document clear and complete requirements for solutions of any
scope and complexity.

. Provide functional knowledge of SAP systems and data.

. Implement necessary configuration within SAP CRM to meet business
requirements

. Ensure proper documentation is created for all projects/changes.

 

Required SKILLS:

. SAP CRM Service Experience 

. Web UI, Fiori / UI5

. Business Process knowledge:

oService Contracts, Service Orders, Returns, Repairs

 

Thanks & RegardS

Harry John
Dynamic Enterprise Solutions Inc
1801 Hicks Rd, unit A
Rolling Meadows, IL -60008
(847) 719-7902 / (847) 874-7274
C 224-635-0898
Email:   ha...@dynamic-enterprise.net
URL: http//   www.dynamic-enterprise.net

 

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/009e01d68cfd%24e724c710%24b56e5530%24%40dynamic-enterprise.net.


[rtc-linux] REQ: UI Developer/support Engineer _ Tempe, AZ _ 12 Months

2020-09-17 Thread Sam Thomas
*No CPT’s Please & Need PP number and 1 timesheet or ID card for submission*


*Requirement details:*



*Job title: UI Developer/Support Engineer*

*Location: **Tempe, AZ*

*Duration: 12+ months*

*Rate:$50/hr All Incl on C2C*

*Job Description:*

7+ years supporting mission-critical enterprise software systems,
applications and/or services including UI, APIs and REST services with deep
understanding of server-side and middle-tier technologies.



*Primary Skill Set   *

5+ years supporting mission-critical enterprise software systems,
applications and/or services including UI, APIs and REST services with deep
understanding of server-side and middle-tier technologies.

2+ years developing support collateral to provide system configuration,
trouble-shooting guidance to stakeholders

2+ years debugging resolving systems and connectivity issues in
transactional systems

2+ years using and interpreting critical system metrics (logging, graphs
(e.g.: Splunk), etc.) to diagnose (root-cause) systems and/or connectivity
issues.

2+ years developing and running utilities and tools to help solve end-user
issues (Java, Python, Jscript, etc…)

Excellent problem-solving and software debug skills

Excellent communication (written and verbal), analytical and leadership
skill



*Secondary Skill Set  *

Experience with algorithms and shipping services for eCommerce systems and
services

Experience isolating software system issues from network connectivity
issues.

Experience producing customer-consumable documentation ( FAQs,
Trouble-shooting Guides, End-User Training)



*Roles and Responsibilities*

Support and debug of critical transactions in the Shutterfly order
processing flow.

Work with stakeholders (system users) across multiple business and
companies’ teams, to diagnose issues with software services and
applications, identify sources of the problem and offer solutions

Work with Product Managers, Software Architects and Developers to
understand Uses Cases, Features and algorithms to provide consistent
communication, guidance to end-users.

Document issues and solutions to generate collateral (FAQs, Troubleshooting
guides), root-cause analysis, and document bug and drive inputs to future
designs and features.

Establish metrics and generate technical reports focusing on customer
complaints and resolutions.

Make written recommendations to improve technical support tools and
processes

Monitor key system metrics and alerts to proactively ensure seamless
performance of the system


-- 
*Thanks & Regards,*
Sam Thomas

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHpqF_ZgQTCOxET8rNQoGH7B5RohoR6LG_kumwspGB%3D1VOdp4Q%40mail.gmail.com.


[rtc-linux] 10+ years Sr SAP S/4 HANA SD Consultant//Dallas, TX

2020-09-17 Thread Mohammed Ifthekhar
Hello *Associate*,

Hope you are doing well
We have below requirement open. Please send me your genuine candidate on my
email ID  *ifthek...@canopyone.com *


*Role: Sr SAP S/4 HANA SD Consultant*

*Duration: 6+ Months*

*Location: Dallas, TX*


   - Minimum 10+ years of experience in SAP SD.
   - Minimum 3+ years of experience of S4 HANA.
   - Knowledge on SAP AFS would be an Advantage.
   - Hands on experience in Order To Cash (OTC) , Returns Process, Outbound
   Delivery Processing.
   - Hands on experience in Pricing, Third Party Sales and Consignment
   Orders.
   - Good Knowledge on EDOC-CFDI process specific to Mexico legal
   requirement.
   - Good knowledge of Integration with FI-CO-MM
   - Experienced in interface with EDI process
   - Good Exposure on Support Project and related activities.
   - Retail Industry experience with AFS/S4 Fashion knowledge would be an
   Advantage.
   - Good communication skills both written and verbal to be able to
   communicate to global user community.
   - Demonstrate strong ability to understand challenges in business
   scenarios.
   - Ability to Recommend /Develop solutions to meet business requirement,
   create functional specification and test cases
   - Ability to independently handle a production support and interact with
   business for any new requirement.

*Thanks & Regards*

*Mohammed Ifthekharuddin*

 Tel: 703-831-8282 Ext 223 Cell: 323-825-5662
  Email: ifthek...@canopyone.com  Web: www.canopyone.com


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAHa9xHAK%3Dnqi56o%2BiEAx%2BXVuSX2SKUKUbzPQPtbV9yu%2BPZ46xw%40mail.gmail.com.


[rtc-linux] US Citizens and Green Card Only----Requirement for Scrum Master/Project Manager with RPA experience @ Minneapolis, MN

2020-09-17 Thread 'Deependra Kumar' via rtc-linux
Hello Professionals,

Hope you are doing well.

 

Role: Scrum Master/Project Manager with RPA Experience

Location: Minneapolis, MN

Long Term Contract

 

Visa Required: US Citizens and Green Card Only

 

 

JD for Scrum Master / Senior Project Manager

. Facilitates daily stand-up, iteration planning, sprint review, and
iteration retrospective Manage the RPA development projects and facilitates
sprint releases

. Demonstrable expertise of agile methodology and frameworks like Scrum,
Kanban, etc.

. Expert coach on implementation of agile scrum to various teams

. Deep understanding of agile metrics (tasks, backlog tracking, burndown
metrics, velocity, user stories etc.) to analyze and improve sprint planning

. Ability to understand and represent both the business and technology

. Create or analyze business requirements, Solution Design documents and
project timelines

. Guides team in time estimating practices and facilitates team
estimates

. Drive team iteration execution, communicates with management and
stakeholders, protects the team from uncontrolled injection of work (changes
are evaluated/intentional)

. Manage project conflicts, challenges and dynamic business requirements
to keep operations running at a high performance

. Work with the team to resolve project roadblocks

. Able to do post mortem and root cause analysis to help teams
continuously improve their practices to ensure maximum productivity

. Leads team effort in relentless improvement, define and implement
improvement stories to increase the velocity and quality of the program

. Implement and support principles, rules and processes

. Proactively identify and eliminate impediments and facilitate flow

. Maintain team data in project management software (i.e. VersionOne ,
etc.) to support estimates and execution

. Presents high level project readouts for senior management

. Able to pick up Automation Anywhere requirement/ capabilities and work
independently during Feasibility/Suitability phase. 

. Excellent communicator in person, over the phone and through email, 

. Self-motivated, organized.

 

 


  Description: Description: Description:
Description: Description: cid:image001.png@01D55BED.58225740


Deependra Kumar | Senior Technical Recruiter


IDC Technologies Inc.

Email:   deependr...@idctechnologies.com

Phone: 408-882-6922

Website:   idctechnologies.com 

 

 

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/5f636abc.1c69fb81.98179.ae77SMTPIN_ADDED_BROKEN%40gmr-mx.google.com.


[rtc-linux] Requirement for Sr. Full Stack Lead Developer @ Sr. Full Stack Lead Developer

2020-09-17 Thread 'Deependra Kumar' via rtc-linux
Hello Professionals,

Hope you are doing well.

 

Role: Sr. Full Stack Lead Developer

Location: Sr. Full Stack Lead Developer

Long Term Contract

 

Must: any experience in Supply chain/Warehouse/Transportation domain


As a full stack architect; you will:
. Be responsible for delivery of end-to-end application technology solutions
. Own the technical development environment and work with the Enterprise
team
. Lead multiple small or few large projects and facilitate large teams
. Provide guidance to the delivery teams to detail out the Solution
Architecture into implementable Technical Designs
. Understand a client's needs and collaborate with the client to develop
technical approaches based on business imperatives
. Build sound business and technical relationships with customers
. Become part of a set of professionals that assist clients in
o Creating/acquiring new business processes
o Integrating IT with business operations
o Enhancing performance via structured analysis techniques
o Improving IT management and controls
o Process re-engineering
o Resolving conflict through workshops and facilitated sessions
o Development of metrics and key performance indicators
. Work in an entrepreneurial environment with a strong "do it yourself"
ethic
. Maintain active relationships with Product Owner to understand business
requirements; lead requirements gathering meetings and review designs with
the product owner
. Lead efforts with Integration/User Interfaces
. Own the backlog and coordinate with other teams as necessary for backlog
grooming
. Perform technical design reviews and code reviews
. Ensure unit test is completed and meets the test plan requirements; system
testing is completed; and system is implemented according to plan

Requirements:
. 7+ years programing with supporting/interfacing with business stakeholders
experience; multi-platform experience; and expert level experience with
business and technical applications; or any combination of education and
experience; which would provide an equivalent background.
. 2+ years of experience working as architect (or an equivalent role) and 2+
years of experience in architecting full stack solutions
. Strong implementation experience with "API first" approach
. 4+ years of experience in developing with Java (including Spring Boot) and
JavaScript (including ES6)/Node.js/Typescript
. 4+ years of experience in RESTful API design and implementation;
including:
o API documentation (Swagger/OAI; RAML) & API versioning
o Data formats (JSON; XML) and data serialization (Protobuf; Thrift)
. 2+ years of experience in monolith application decomposition and
microservices architectures including:
o Domain Driven Design (DDD)
o Design patterns; such as Bulk Heading; Circuit Breaking; Back Pressure /
Throttling; Fail-Fast; Non-Blocking; Separation of Concerns
o Polyglot persistency; emphasis on NoSQL (e.g. Cassandra; MongoDB; HBase;
etc.) and persistency patterns such as Event Sourcing and CQRS
o Modern fast data streaming architectures and frameworks - such as Apache
Spark/Streaming; Kafka/Streams; Flink; Beam
. 2+ years of experience in modern web and mobile SPA programming
o Angular2/NativeScript and React/React-Native
o User experience (UX) and user interface (UI) design; including Responsive
design and grid frameworks (e.g. Bootstrap)
o HTML5/CSS; and Knowledge of what works in specific browsers
. 2+ years of experience in modern DevOps workflows including:
o Tools such as Git; Jira; Jenkins; Maven/Gradle
o Containers; PaaS and CaaS - Docker; OpenShift; Kubernetes;
Mesosphere/DCOS; Docker Datacenter
. 2+ years of experience in agile methodologies desired; including:
o SCRUM; Kanban; etc.
o Agile delivery and testing - ATDD/BDD/TDD; Continuous Integration;
continuous testing; pairing; automated testing

 

 


  Description: Description: Description:
Description: Description: cid:image001.png@01D55BED.58225740


Deependra Kumar | Senior Technical Recruiter


IDC Technologies Inc.

Email:   deependr...@idctechnologies.com

Phone: 408-882-6922

Website:   idctechnologies.com 



 

 

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/5f6369ab.1c69fb81.44875.9adcSMTPIN_ADDED_BROKEN%40gmr-mx.google.com.


[rtc-linux] Immediate position for Lead Software Engineer - Full Stack

2020-09-17 Thread Ergadindla Venkatesh
Title: Oorwin Email






   
   








Hello

 

Ergadindla Venkatesh has found a good job that you would like to see.

 

Here are some of the details of that job and rest can be found through the link below.

Please go through it once and share your feedback.

 

Job Title: Lead Software Engineer - Full Stack (Passport number is a must)

Job Type: Contractual

Location: Milpitas, CA

Duration: 12+ Months

Apply Here: Apply Now

Note: OPT, CPT & Transfer's will not work

 

REQUIRED

·10+ years’ experience in IT with at least 6 as a Solution Architect or Tech Lead for Java based systems with Spring boot, Angular, Oracle DB

·4+ years’ experience as a team or technical lead

·Strong understanding of the design and operational environment of n-tiered architecture applications as well as micro services architecture. Strong understanding of cloud native principles

·Extensive Experience with web services standards and related technologies (HTTP(s), REST, JSON, WS*)

·Extensive experience in API design and in system and component design

·Provide technical direction and leadership to project teams while being the interface to the customer

·Experience building quick Proof of Concepts and presenting to business stakeholders and other Architectural Reviews

·Excellent communicator

·Applicants must be willing to work flexible hours as needed

PREFERRED

Experience with Snowflake is a plus 

 

 


  









  




Ergadindla Venkatesh 


P :  4693275558 M :  +1 (469) 327-5558





W :  www.tachyontech.com E :  venkates...@tachyontech.com
























   


 










   
   





Copyright © 2020 | Powered By     



 
  
  To stop receiving these emails please click here to unsubscribe.

 






   







-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rtc-linux/20200917133801.1.B9AC033FC3815FF9%40notify.tachyontech.com.


[rtc-linux] Network Test Engineer at Lake Forest CA 92630

2020-09-17 Thread Qamar Bilal
*bi...@tekishub.com* 

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

*Looking for Network Test Engineer at Lake Forest CA 92630*



Hello

Hope you are doing well,

Our client is really very eager to fill this position ASAP If you're
interested, please call me at your earliest convenience. If not available
to take up this position, I will be grateful if you could forward this
email to your friends who may be interested.



*Job Title: Network Test Engineer*

*Location: Lake Forest CA 92630*

*Duration: 6 months+ contract *

*Visa: ALL (NO OPT, CPT & Transfers)*



*Must Have Skills:*

• Embedded software and Networking protocols

• CC++ Python GO programming

• SDN



*Detailed Job Description*

• Good Linux or embedded software experience in networking protocols

• Good experience in OS internals such as device drivers, networking
interfaces, and the TCPIP stack

• Excellent CC Python GO Bash coding and debugging skills Linux or BSD
driver and kernel development

• 2 years Networking driver development Linux or BSD,

• 1 years Good Experience of Software Defined Networking concepts and
implementation

• Experience optimizing embedded software for memory a

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





Thanks & Regards

Mohammed Bilal Shah?

Technical Recruiter

[image: cid:image001.jpg@01D5E048.145AF4B0]

TekisHub Consulting Services

1000 N West Street, Suite 1200, Wilmington, DE, 19801

:* bi...@tekishub.com

*(**: *302 613 2500 Ext 245

*Hangouts*: bilal.recruite...@gmail.com

*LinkedIn*: linkedin.com/in/qamar-bilal-561bba117

Website: www.Tekishub.com

[image: E-Verify - Employment Eligibility Verification banner with E-Verify
logo.]   An E- Verified Company

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAOyCV4E67b0sCfUhG55%3D0xuOBy8zv_Z_nV32bhznyw-QmrSSHA%40mail.gmail.com.


[rtc-linux] Mobile Automationtester @ TX

2020-09-17 Thread Vikritha Canopyone
Hi ,

Hope you are doing great



*Position :  Mobile Automation tester*

*Location : Austin, Texas*

*Duration : Contract*



*Job description:*

*Required Skills (must have):* Mobile Automation experience. Understanding
of APIs, SQL. Leading with less supervision.

# of years of Experience required: More than 1-3 years in multiple project
and team management.

*Detailed Job Description:* Able to lead a team with less and no
supervision.

Worked in Agile environment. Ability to handle / report multiple project
reports to all stake holders.

Hands on experience in automation/selenium/API/Mobile Automation
specifically.

-- 

*Thanks & Regards,*



*Thanks & Regards,*

*Vikritha Mustyala*

  Tel: 703-831-8282 Ext. 253 <703-831-8282>9 .Fax: 7034392550
<703-867-7172>
  Email: m.vikri...@canopyone.com  Web: www.canopyone.com


-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CAMUQ6vp8ujS3pZcpP1sFofOJpZPN6oKJupGYiQO8EKb-%2BB5XNw%40mail.gmail.com.


[rtc-linux] Hot List

2020-09-17 Thread Ramesh recruiter
*Hot List*



*Consultant Name*

*Technology*

*Experience*

*Relocation*

Peri

Sr Oracle DBA

20 Years

Yes





Thanks

Ramesh

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups 
"rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rtc-linux+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rtc-linux/CABWaCvBFGtwKRZ6H%3DCKWmftKMAx%2B_P%2Byk_hpHFjoJSpo20nWdw%40mail.gmail.com.