Abduraimov Jur'atbek Gafur oglu was born on February 1, 1991 in the Shakhrisabz district of the Kashkadarya region. In 2016, he graduated from the Faculty of Informatics and Information Technologies of the Tashkent University of Information Technologies, majoring in Software Engineering, and in 2020, he graduated from the Tashkent University of Information Technologies, majoring in Software Engineering.
- 2012–2016 – Student of Tashkent University of Information Technologies
- 2016–2017 – Production training master at Qibray College of Finance and Economics, Qibray district, Tashkent region
- 2017–2018 – Teacher of Informatics and Information Technologies at Qibray College of Finance and Economics, Qibray district, Tashkent region
- 2018 – Acting Deputy Director for Production Training at Qibray College of Finance and Economics, Qibray district, Tashkent region
- 2019–2020 – Chief specialist at the Department of Training Workshops, Technical Regulations and Metrological Control under the Ministry of Higher and Secondary Specialized Education of the Republic of Uzbekistan
- 2020–2023 – Lecturer at Chirchiq State Pedagogical University
- 2023 – Present – Senior Lecturer at Chirchiq State Pedagogical University
Abduraimov J.G. Methods of forming electronic education and Internet resources for teachers // Bulletin of UzMU, 2024. No.1/7, pp. 45–47.
Abduraimov J.G. Conceptual model of ensuring teachers’ readiness to use electronic and Internet resources
in the educational process
// Efficiency of introducing digital technologies in the educational process, Republican scientific-practical conference, 2023. No.1, pp. 587–589.
Abduraimov J.G., Rayimova A.R Organization of using distance learning platforms in the educational process // Efficiency of introducing digital technologies in the educational process, Republican scientific-practical conference 2023. No.1, pp. 746–748.
Abduraimov J.G. Use of information technology in the field of education and culture to maintain the quality of education in modern society // European Science Methodical Journal, 2024. No.6, pp. 290–296.
Abduraimov J.G., Abduhalilova H.M Distance education for children with disabilities // Efficiency of introducing digital technologies in the educational process, Republican scientific-practical conference 2023. No.1, pp. 749–752.
Abduraimov J.G. Scheme for ensuring teachers’ readiness to use electronic learning resources and platforms // Inter education & global study, 2024. No. 5(3), pp. 37–48.
Senior Lecturer • Mathematics and Informatics
Department of Informatics and Information Technologies. Research field: “Methods for ensuring teachers’ readiness to use electronic learning resources and platforms.”
Faculty: Exact sciences • Department: Information technology and artificial intelligence
📘
“Electronic Learning Resources” Methodology
Digital pedagogy, LMS, OER, platform design & assessment
Biography
Senior Lecturer, Department of Informatics and Information Technologies. Research interests: electronic learning resources, LMS systems, OER, assessment methodology, digital didactics.
Faculty
Mathematics and Informatics
Department
Informatics and IT
Summary
In recent years, methodological approaches have been developed to improve the digital education infrastructure, assess and enhance teachers’ competence in using e-learning resources and platforms. Practical recommendations were created through courses, training seminars and applied projects.
- Practical guides on LMS (Moodle, Google Classroom)
- Creation of OER and resources on open platforms
- Digital methods of assessing student knowledge
IT Courses
Hurry up — 30% discount for CHDPU students.
Download CV
Database Systems
Lecture materials, lab assignments, assessment criteria.
Syllabus
Web Technologies
Practical tasks and guides on HTML/CSS/JS.
Resources
Pedagogical Technologies
E-learning platforms, rubrics and assessment tools.
Guide
Research
Dissertation topic, scholarly works, articles and theses.
Electronic Learning Resources
OER creation, quality criteria, reusability and licensing.
Use of Platforms
LMS integration, course design, user experience (UX).
Assessment Methodology
Analytic rubrics, automated assessment, learning analytics.
| Year | Title | Publication | Link |
| 2025 | Assessment of teachers’ readiness to use e-resources | — | PDF |
| 2024 | Effectiveness of course design based on LMS | — | DOI |
Teaching Activities
Courses taught, syllabi and class resources.
Download CV
Database Systems
Lecture notes, lab assignments, assessment criteria.
Syllabus
Web Technologies
Practical tasks and guides for HTML/CSS/JS.
Resources
Pedagogical Technologies
E-learning platforms, rubrics, assessment tools.
Guide
Blog
Short articles and updates.
22-Aug-2025
Automating Assessment in LMS
Five recommendations for effective use of rubrics and test banks.
Read →
10-Aug-2025
OER: Open Educational Resources
Licensing and reuse practices.
Read →
30-Jul-2025
Course Design: UX Principles
Student-centered design and microlearning.
Read →
Contact
You may send a message through the form below or contact directly.
Message
Send
Note: Replace the Formspree ID with your own.
© Abduraimov Jur'atbek. All rights reserved.
// Dark mode toggle const themeToggle = document.getElementById("themeToggle"); const themeToggleMobile = document.getElementById("themeToggleMobile"); const root = document.documentElement; // Update toggle text function updateToggleText(isDark) { if (themeToggle) themeToggle.textContent = isDark ? "☀️" : "🌙"; if (themeToggleMobile) themeToggleMobile.textContent = isDark ? "☀️ Mode" : "🌙 Mode"; } function setTheme(mode) { if (mode === "dark") document.documentElement.classList.add("dark"); else document.documentElement.classList.remove("dark"); localStorage.setItem("theme", mode); updateToggleText(mode === "dark"); } function initTheme() { const saved = localStorage.getItem("theme"); if (saved) { setTheme(saved); } else if (window.matchMedia("(prefers-color-scheme: dark)").matches) { setTheme("dark"); } } initTheme(); themeToggle?.addEventListener("click", () => { const isDark = document.documentElement.classList.toggle("dark"); updateToggleText(isDark); localStorage.setItem("theme", isDark ? "dark" : "light"); }); themeToggleMobile?.addEventListener("click", () => { const isDark = document.documentElement.classList.toggle("dark"); updateToggleText(isDark); localStorage.setItem("theme", isDark ? "dark" : "light"); }); // Mobile menu const menuBtn = document.getElementById("menuBtn"); const mobileMenu = document.getElementById("mobileMenu"); menuBtn?.addEventListener("click", () => { mobileMenu.classList.toggle("hidden"); }); // Year in footer document.getElementById("year").textContent = new Date().getFullYear();