Intixel is looking for a highly skilled and motivated Mid-Level Computer Vision Software Engineer to join our team. As a key member of our computer vision team, you will be responsible for designing, developing, and implementing computer vision algorithms and systems for various applications. The ideal candidate should have a strong background in software engineering, computer vision, and machine learning, along with excellent programming and problem-solving skills.
Responsibilities:
- Design and develop computer vision algorithms and models to solve complex problems and meet project objectives.
- Implement and write software in Python and C++.
- Conduct research and stay updated with the latest advancements, and propose innovative solutions.
- Evaluate and analyze the performance of computer vision systems through testing, validation, and benchmarking.
- Debug and troubleshoot issues.
- Document and follow best code practices.
Qualifications:
- Bachelor's or Master's degree in Computer Science, Electrical Engineering, or a related field.
- Proven experience (1+ years) working as a Computer Vision Engineer, developing and implementing computer vision algorithms and models.
- Strong knowledge and understanding of computer vision techniques, including object detection, segmentation, and recognition.
- Proficiency in Python and C++ for development and implementation.
- Solid understanding of machine learning and deep learning concepts and frameworks, such as TensorFlow and PyTorch.
- Strong problem-solving and analytical skills, with the ability to develop creative and effective solutions to complex challenges.
- Excellent communication skills.
- Strong attention to detail, with the ability to work independently and deliver high-quality results within defined timelines.
We offer competitive compensation packages, opportunities for professional growth, and a collaborative work environment.
To apply, please submit your resume, cover letter, and any relevant portfolio or project work to
careers@intixel.com and mention the job title โAI Engineerโ in the subject.
Responsibilities:
- Design and develop computer vision algorithms and models to solve complex problems and meet project objectives.
- Implement and write software in Python and C++.
- Conduct research and stay updated with the latest advancements, and propose innovative solutions.
- Evaluate and analyze the performance of computer vision systems through testing, validation, and benchmarking.
- Debug and troubleshoot issues.
- Document and follow best code practices.
Qualifications:
- Bachelor's or Master's degree in Computer Science, Electrical Engineering, or a related field.
- Proven experience (1+ years) working as a Computer Vision Engineer, developing and implementing computer vision algorithms and models.
- Strong knowledge and understanding of computer vision techniques, including object detection, segmentation, and recognition.
- Proficiency in Python and C++ for development and implementation.
- Solid understanding of machine learning and deep learning concepts and frameworks, such as TensorFlow and PyTorch.
- Strong problem-solving and analytical skills, with the ability to develop creative and effective solutions to complex challenges.
- Excellent communication skills.
- Strong attention to detail, with the ability to work independently and deliver high-quality results within defined timelines.
We offer competitive compensation packages, opportunities for professional growth, and a collaborative work environment.
To apply, please submit your resume, cover letter, and any relevant portfolio or project work to
careers@intixel.com and mention the job title โAI Engineerโ in the subject.
ChatGPT ุงูุฏููู ุงูุดุงู
ู ููุฐูุงุก ุงูุงุตุทูุงุนู ู
https://www.udemy.com/course/chatgpt-q
https://www.udemy.com/course/chatgpt-q
Udemy
ChatGPT ุงูุฏููู ุงูุดุงู
ู ููุฐูุงุก ุงูุงุตุทูุงุนู ู
ูู ู
ุง ุชุญุชุงุฌ ุงู ุชุนุฑูู ุนู ุดุงุช ุฌู ุจู ุชู ู ูู ู
ุง ูู ุฌุฏูุฏ ูู ู
ุฌุงู ุงูุฐูุงุก ุงูุงุตุทูุงุนู (ู
ุชุฌุฏุฏ ุจุงุณุชู
ุฑุงุฑ)
Software Developer (Fresh Graduate) - EJADA
https://career.ejada.com/jobs/details/63e2595258370c3ab24dbd8b
https://career.ejada.com/jobs/details/63e2595258370c3ab24dbd8b
โค1๐1
Summer Internship Program | Elsewedy Electric
https://itservices.elsewedy.com/HRINTERN/Internship.aspx
https://itservices.elsewedy.com/HRINTERN/Internship.aspx
๐1
ู
ุด ูููู ุญุงุฌุฉ ุบูุฑ ุฅู ุงููู ุนุงู
ููุง ูู Dave Gray ๐
Web Dev Roadmap for Beginners
- The Web Dev Roadmap for Beginners is a guide to help you learn all of the fundamental skills you'll need to begin a career in web development! This course contains over 63 hours of free video instruction!
https://courses.davegray.codes/view/courses/web-dev-roadmap-for-beginners
Web Dev Roadmap for Beginners
- The Web Dev Roadmap for Beginners is a guide to help you learn all of the fundamental skills you'll need to begin a career in web development! This course contains over 63 hours of free video instruction!
https://courses.davegray.codes/view/courses/web-dev-roadmap-for-beginners
๐2โค1
ููุจุงูุฉ ุดุงู ูุนูุด ู
ุน ุงูู
ูุงู โฅ๏ธ
A Complete Visual Guide to Understanding the Node.js Event Loop
https://link.medium.com/NY8EcTpyYzb
A Complete Visual Guide to Understanding the Node.js Event Loop
https://link.medium.com/NY8EcTpyYzb
โค2๐1
Flutter - Animations from Zero to Hero
https://www.udemy.com/course/flutter-animations-from-zero-to-hero/?couponCode=MAYFREE
https://www.udemy.com/course/flutter-animations-from-zero-to-hero/?couponCode=MAYFREE
Udemy
Flutter - Animations from Zero to Hero
Learn Animations in Flutter for Beginners
โค2
Etisalat by e& Egypt Summer Internship
http://www.etisalat.eg/etisalat/notification/hr-internship/#/form
http://www.etisalat.eg/etisalat/notification/hr-internship/#/form
โค1
defer & async in JavaScript
โก๏ธ In the context of the <script> tag in HTML, the "defer" and "async" attributes are used to control how scripts are loaded and executed on a web page.
๐ defer:
When the defer attribute is added to the <script> tag, it indicates that the script should be executed after the HTML document has been parsed. While the script is being downloaded, the HTML parsing is not blocked, and the script is executed only when the HTML parsing is complete. Multiple scripts with the defer attribute maintain their order of execution relative to each other. If multiple defer scripts are present, they will be executed in the order they appear in the HTML document. The defer attribute is typically used for scripts that rely on the DOM structure or interact with other elements on the page.
๐ async:
When the async attribute is added to the <script> tag, it indicates that the script should be executed asynchronously as soon as it is downloaded. The HTML parsing does not wait for the script to be fetched, and the script is executed as soon as it is available, even if the HTML parsing is not complete. Multiple scripts with the async attribute may load and execute in an arbitrary order. If the order of execution is crucial or if the script relies on the DOM structure, the async attribute should not be used.
โก๏ธ In the context of the <script> tag in HTML, the "defer" and "async" attributes are used to control how scripts are loaded and executed on a web page.
๐ defer:
When the defer attribute is added to the <script> tag, it indicates that the script should be executed after the HTML document has been parsed. While the script is being downloaded, the HTML parsing is not blocked, and the script is executed only when the HTML parsing is complete. Multiple scripts with the defer attribute maintain their order of execution relative to each other. If multiple defer scripts are present, they will be executed in the order they appear in the HTML document. The defer attribute is typically used for scripts that rely on the DOM structure or interact with other elements on the page.
<script src="script.js" defer></script>โโโโ
๐ async:
When the async attribute is added to the <script> tag, it indicates that the script should be executed asynchronously as soon as it is downloaded. The HTML parsing does not wait for the script to be fetched, and the script is executed as soon as it is available, even if the HTML parsing is not complete. Multiple scripts with the async attribute may load and execute in an arbitrary order. If the order of execution is crucial or if the script relies on the DOM structure, the async attribute should not be used.
<script src="script.js" async></script>
CSS Reference
- An extensive CSS reference with all the important properties and info to learn CSS from the basics
https://tympanus.net/codrops/css_reference
- An extensive CSS reference with all the important properties and info to learn CSS from the basics
https://tympanus.net/codrops/css_reference
Codrops
CSS Entries | Codrops
This is the archive page for CSS Entries.