DevGuide ๐Ÿ‡ต๐Ÿ‡ธ
10.9K subscribers
2.51K photos
17 videos
127 files
3.52K links
Join our channel for top-notch programming hacks, epic discussions, and brilliant career moves. ๐Ÿš€

โšก๏ธ Stay connected with me: linktr.ee/AliSamir

๐Ÿ“ To advertise on the channel: https://telega.io/c/the_developer_guide
Download Telegram
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.
CSS Selectors for the N-th Element

#css
โค2๐Ÿ‘2
Software Developer (Fresh Graduate) - EJADA

https://career.ejada.com/jobs/details/63e2595258370c3ab24dbd8b
โค1๐Ÿ‘1
Summer Internship Program | Elsewedy Electric

https://itservices.elsewedy.com/HRINTERN/Internship.aspx
๐Ÿ‘1
& Frontend Developer ๐Ÿ˜ฅ
๐Ÿ˜8
ู…ุด ู‡ู‚ูˆู„ ุญุงุฌุฉ ุบูŠุฑ ุฅู† ุงู„ู„ูŠ ุนุงู…ู„ู‡ุง ู‡ูˆ 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
๐Ÿ‘2โค1
ูƒูˆุจุงูŠุฉ ุดุงูŠ ูˆุนูŠุด ู…ุน ุงู„ู…ู‚ุงู„ โ™ฅ๏ธ

A Complete Visual Guide to Understanding the Node.js Event Loop

https://link.medium.com/NY8EcTpyYzb
โค2๐Ÿ‘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.

<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