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_~
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_~
Google Docs
Internship Application 2024
The internship involves creating tools and technologies for Wiki This opportunity is open for computer science (UG and PG) students.
The main goal is to develop intelligent programs that utilize Artificial Intelligence, Machine Learning, Natural Languageβ¦
The main goal is to develop intelligent programs that utilize Artificial Intelligence, Machine Learning, Natural Languageβ¦
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.
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
### 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
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
Based on some Terms and conditions trust may also provide free laptop to students
Java Hyd Team
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β¦
Hey they are offering 500 on each successful referral
Gitlab is #hiring for Developer Advocate.
Requirements :
> Experience creating software or contributing to open source software
> At least 1 year of experience giving talks and developing demos, workshops, webinars, videos, and other technical content
> Meaningful social presence with engaged followers
> Ability to consistently generate engaging content and manage the fast-moving conference schedule with its CFP deadlines and show dates
Apply link : https://boards.greenhouse.io/gitlab/jobs/7419293002
Requirements :
> Experience creating software or contributing to open source software
> At least 1 year of experience giving talks and developing demos, workshops, webinars, videos, and other technical content
> Meaningful social presence with engaged followers
> Ability to consistently generate engaging content and manage the fast-moving conference schedule with its CFP deadlines and show dates
Apply link : https://boards.greenhouse.io/gitlab/jobs/7419293002