Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website 😊
Still working on it 😊
Download Telegram
Drop your resumes and send message in comments
Message for link
Hi,

We have the below positions in the USA with our clients on W2.

Please email me for any information, instead of messages. Sometimes I may not reply to your messages quickly.

===========================

Please call me or email me for any other details. send profile to "

manu@pioneeritsystems.com β€œ

Need 10+ years of experience profiles for the below requirements.

===========================

Position 1: β€”β€”β€”-> Lead SAP - Business Analyst - Hybrid - Inver Grove Heights, MN- W2

Need 10+ years of IT experience

Skills:
* Document cost center mapping from old to new cost centers
* Knowledge in Map cost centers to profit centers and SAP plants
* Knowledge in mapping table to enable the restatement of spending in the Retail Ag & Distribution business
* Document the allocation methodologies for all financial allocations.
* Prepare the finance allocation tables for all business allocation to be executed in SAP.
* Support headcount movements from old to new cost centers
* Creation of upload files for all new cost centers and allocations
* Validate all cost centers and hierarchies as they are imported into SAP cloud planning, understand SAP Financial Master data and structures, cost center, profit center, plant and company code. They need to be proficient in excel and comfortable managing large volumes of data. They need to be a self starter with the ability to work with multiple business partners and have a strong attention to detail

===========================

Position 2: β€”β€”β€”-> React Js Developer - Hybrid - Bethsford. MD. - W2

Long term project.

Pay rate - $40 per hour on W2.

Need 5+ years of IT experience

Even CPT / OPT accepted - will sponsor H1 B this year, if get selected.

Should have strong coding experience in React with Integration/Continuous Deployment (CI/CD)

Skills : CI/CD pipelines, React, Next.js, Redux, Test cases, Knowledge of Jenkins and SonarQube

===========================

Please call me or email me for any other details. send profile to "

manu@pioneeritsystems.com β€œ

===========================

Thanks,
Manu
PiLog Group is hiring MERN STACK Developer, with experience of 2+ years, interested candidates can share their resumes at Irfan.Sadulla@piloggroup.com.
#Hiring - Freshers
Looking for candidates who can join immediately.
Job Title: Software Tester #ManualTesting
location: #Remote
Salary: Permanent
Experience: Only #Freshers
- We are only looking for fresher who has a good communication skill and who can handle client.

Interested candidates please send your updated resume through or nandhini.durai@taramsys.com

#Note: I am not a hiring person. Just sharing the details to help others.
πŸ‘1
Company Name: Accenture

Job Title: Application Development Associate

Eligilibility: All streams/branches of B.E/B.Tech/M.E/M.Tech, MCA, and M.Sc. (CSE, IT only) from 2023 & 2024 year of pass outs with full-time education only (Part-time and distance educations are not considered)

Apply Here: https://indiacampus.accenture.com/myzone/accenture/1/jobs/25377/job-details

POC Reference Email ID s.seshagiri@accenture.com |
Anyone here who is UIUX DESIGNER?
Anonymous Poll
69%
Yes
31%
No
Do msg me on @stockkida
Java Hyd Team
Anyone here who is UIUX DESIGNER?
Message me @stockkida one freelance requirement we have for development
IndicWiki Internship Program - 2024 


Join the IndicWiki Summer Internship Program and Influence the Future of Knowledge [Virtual/Remote]


About the IndicWiki Project:


The IndicWiki project, initiated by the International Institute of Information Technology (IIIT) Hyderabad, aims to bridge the gap in wiki content across Indian languages. For more details, visit https://indicwiki.iiit.ac.in.


Internship Scope:


To develop intelligent programs that utilize Artificial Intelligence, Machine Learning, Natural Language toolkits, and openly accessible structured data sources to generate content..  

Contribute to develop the features and fixes as per Wikipedia Community Wishlist

Refer to the Introduction to the Wikimedia Technical Ecosystem for insights into Wikimedia technology and opportunities for developer contributions.

Explore various areas and opportunities within the Wikimedia Developer Portal to engage with the technical ecosystem and community.


About the Program:


Duration: May 13th - June 30th, 2024

Format: Virtual/Remote

Commitment: 15-20 hours per week

Stipend: While this internship does not offer a stipend, it provides invaluable real-world experience, collaboration with the Wiki tech community, and mentorship from experienced professionals.

Full Scholarship to Wikimedia Technology Summit 2024: Successful interns will receive a full scholarship to attend this prestigious event at IIIT Hyderabad, providing further learning and networking opportunities.


Who Can Apply:


We invite applications from Computer Science/Information Technology Engineering students (UG/PG/MTech/MS/MCA).


Prerequisites:


Proficiency in Gujarati/Odia/Telugu languages (reading and writing skills are essential)

Programming skills in Python/PHP

Data interpretation skills


Internship Application Link:  https://forms.gle/xNdjJsFV57QyaVez8 

Application Deadline: 30 April 2024




Cordially
IndicWiki Project @IIIT-H

~_53_~
Currently we are hiring for Data Analyst profile. Any reference will be appreciated. Interested candidates can share their resume at nidhi@nomadcredit.com

Coming from Edtech company will be a plus point.

Job Type: Full time(Work From Home)
Experience: min 1 year

We are seeking a highly motivated and detail-oriented individual to join our team as a Data Analyst. In this role, you will be responsible for interpreting data, analyzing results, and providing actionable insights to support business decision-making.

Key Responsibilities:
Data Interpretation: Review and analyze data to identify trends, patterns, and correlations
Report Generation: Prepare reports and presentations summarizing key findings and insights derived from data analysis
Stakeholder Communication: Collaborate with various teams to understand their data needs and effectively communicate findings to non-technical stakeholders
Process Improvement: Identify opportunities to streamline data collection and analysis processes to enhance efficiency and effectiveness
Strategic Support: Assist in developing strategies and recommendations based on data-driven insights to support organizational goals and objectives
Continuous Learning: Stay updated on industry trends and best practices in data analysis to enhance skills and knowledge.
# Java Assignment

### Task

Create a Spring Boot application that provides RESTful endpoints to manage a book library. The application should support CRUD operations for books, authors, and book rentals.

### Requirements

1. Data Models:
- `Book`: Contains fields like `id`, `title`, `author`, `isbn`, and `publicationYear`.
- `Author`: Contains fields like `id`, `name`, and `biography`.
- `Rental`: Represents a book rental, with fields `id`, `bookId`, `renterName`, `rentalDate`, and `returnDate`.
2. RESTful Endpoints:
- CRUD operations for `Book`.
- CRUD operations for `Author`.
- Create and retrieve `Rental` records.
- Endpoints to retrieve books by author, books available for rent, and books currently rented.
3. Business Logic:
- When renting a book, ensure the book is not already rented.
- When returning a book, mark it as available.
- Implement a method to check for overdue rentals (rental periods exceeding a set time, e.g., 14 days).
4. Testing:
- Write basic unit tests to verify core business logic and RESTful endpoints.
- Consider integration tests to ensure endpoints work as expected with the database.
5. Error Handling and Validation:
- Implement proper error handling for invalid requests.
- Validate inputs to ensure required fields are provided, and values are in the correct format (e.g., ISBN, dates).
6. Documentation:
- Provide a README file with setup instructions, how to run the application, and sample requests to test the endpoints.
- Include any additional documentation explaining design decisions or assumptions made during development.

### Tech:

Spring Boot, Any Database
πŸ‘1
Anyone here with experience in UIUX DESIGNER ROLE
Today we tied up with one organisation regarding Java Full stack or python full-stack course at just rupees 2500 and rest will paid and taken care by one of our known trust and along with this 100% assured internship on live project with java 17 and spring boot 3 spring security 6+ jwt and many more in curriculum intrested people do join ASAP as we have 100 slots available that is getting sponsered by trust
Message us @stockkida