Filter
Exclude
Time range
-
Near
Day 2 of my JavaScript journey 🚀 Today I learned about Primitive Data Types in JavaScript: • String • Number • Boolean • Undefined • Null • BigInt • Symbol #JavaScript #WebDevelopment #CodingJourney #100DaysOfCode #LearnToCode #FrontendDevelopment
1
4
إذا كنت تبحث عن مشروع عملي لتطوير مهاراتك في تطوير الواجهات الأمامية (Front-End Development)، فإن بناء أداة لتحويل تنسيقات النصوص (Case Converter Tool) يعد خيارًا ممتازًا يجمع بين البساطة والفائدة العملية. في هذا الدليل العملي، ستتعلم كيفية إنشاء أداة متكاملة باستخدام HTML وCSS وJavaScript فقط، دون الحاجة إلى أي مكتبات أو أطر عمل خارجية. تسمح الأداة للمستخدمين بإدخال أي نص وتحويله فورًا إلى عدة صيغ شائعة مثل الأحرف الكبيرة (UPPERCASE)، الأحرف الصغيرة (lowercase)، صيغة العناوين (Title Case)، وصيغة الجمل (Sentence Case). ولا تقتصر الوظائف على تحويل النصوص فقط، بل تتضمن أيضًا عدادًا مباشرًا لعدد الأحرف، مما يمنح المستخدم معلومات فورية أثناء الكتابة أو التعديل. كما ستتعلم كيفية إضافة ميزة تصدير النص النهائي إلى ملفات PDF أو Word، وهي وظيفة عملية تُستخدم في العديد من التطبيقات الإنتاجية الحديثة. يبدأ المشروع بإنشاء هيكل الصفحة باستخدام HTML، ثم تصميم واجهة مستخدم جذابة ومتجاوبة عبر CSS. بعد ذلك يتم بناء المنطق البرمجي باستخدام JavaScript لمعالجة النصوص وتحويلها بين الصيغ المختلفة بطريقة ديناميكية وسريعة. وخلال المشروع ستتعرف على العديد من المفاهيم الأساسية المهمة، مثل التعامل مع السلاسل النصية (Strings)، استخدام الدوال (Functions)، الاستفادة من أساليب المصفوفات (Array Methods)، وإدارة أحداث المستخدم داخل المتصفح. كما ستكتسب خبرة عملية في تصميم أدوات ويب حقيقية يمكن إضافتها إلى معرض أعمالك (Portfolio)، خاصة أن مثل هذه الأدوات تُظهر قدرتك على تحويل الأفكار البسيطة إلى تطبيقات تفاعلية مفيدة. إذا كنت مبتدئًا في تطوير الويب أو ترغب في تعزيز فهمك لـ JavaScript من خلال مشروع تطبيقي واقعي، فإن هذا المشروع يمثل فرصة رائعة للتعلم والممارسة في آنٍ واحد. #برمجة #JavaScript #HTML #CSS #تطوير_الويب #FrontendDevelopment #مشاريع_برمجية freecodecamp.org/news/how-to…
79
Day 55/111 🚀 Started learning React today ⚛️ Today's topics: • React Basics • Vite Setup • JSX & Rendering • Components • Props & State • Event Handling & Forms Taking my first steps into modern frontend development 🔥 #ReactJS #JavaScript #FrontendDevelopment #WebDev
3
📚 Day 8 of Building a Microservices-Based Project After laying the foundation for authentication and starting the Admin Panel frontend, I moved on to building some of the core admin experiences. This phase focused on creating a more complete dashboard experience while learning how data-heavy interfaces are built in real-world applications. Some of the things I explored: 🔹 Building a dashboard layout with a collapsible sidebar and header navigation 🔹 Implementing logout functionality from the Admin UI 🔹 Displaying tenant-specific information based on the authenticated user 🔹 Creating a dashboard homepage with key metrics and recent activity sections 🔹 Building Users and Tenants management pages 🔹 Fetching and displaying server data using React Query 🔹 Implementing role-based UI experiences by showing or hiding navigation items 🔹 Designing filterable data tables for users and tenants 🔹 Building drawer-based forms for creating new users 🔹 Adding form validation for better user input handling 🔹 Integrating user creation workflows with automatic data refetching 🔹 Implementing server-side pagination for handling larger datasets efficiently 🔹 Improving the user experience with loading indicators and smoother page transitions One thing that stood out to me was how much thought goes into seemingly simple admin features. Tables, filters, forms, pagination, permissions, and loading states all work together to create an experience that feels intuitive to the end user. I'm still learning a lot about frontend architecture and building scalable interfaces, but working on these features has helped me better understand how modern admin dashboards are designed and implemented. @codersGyan #React #TypeScript #ReactQuery #AntDesign #FrontendDevelopment #Microservices #SoftwareEngineering #LearningInPublic #WebDevelopment
27
Week 5 with Genesys Upskill and we are finally getting into JavaScript 💻🔥 Yesterday we covered • Variables • Assignment operators • Data types the real fun begins now 👀 @genesystechhub @Bruce1Offordile #FrontendDevelopment #LearnInPublic #WomenInTech #GenesysUpskill
4
24
Most people quit because they're overwhelmed. You don't need to know everything. You just need to build consistently. What's one frontend skill you're currently learning? #FrontendDevelopment #WebDevelopment #JavaScript #ReactJS #100DaysOfCode #CodingJourney
1
10
29
Day 1 of my React journey Today I learned: Components JSX Props Import/Export Running a React app with Vite Built my first reusable Team Members page using React. Every expert was once a beginner. #React #JavaScript #FrontendDevelopment #WebDev #100DaysOfCode
16
📚 Day 7 of Building a Microservices-Based Project After spending the past few days working on backend services, I recently started building the Admin Panel frontend and exploring how authentication flows are implemented on the client side. Some of the things I explored: 🔹 Setting up a React Vite TypeScript project 🔹 Configuring routing with React Router 🔹 Setting up component testing with Vitest and React Testing Library 🔹 Building the login experience using Ant Design 🔹 Integrating authentication APIs using React Query 🔹 Managing authentication state with Zustand 🔹 Implementing protected routes for authenticated users 🔹 Persisting authentication state across page refreshes 🔹 Exploring automatic token refresh using Axios interceptors One thing that stood out to me was how much coordination is required between the frontend and backend to provide a seamless authentication experience. Features like protected routes, session persistence, and silent token refresh all work together behind the scenes to create a better user experience. I'm still learning a lot about frontend architecture and authentication patterns, but working on the Admin UI has helped me better understand how these pieces fit together in real-world applications. @codersGyan #React #TypeScript #Vite #ReactQuery #Zustand #Authentication #FrontendDevelopment #Microservices #SoftwareEngineering #LearningInPublic
1
1
5
140
Growth introduces complexity. Structured interface systems help products scale without sacrificing clarity, consistency, or usability as new features and workflows are introduced. #DesignSystems #FrontendDevelopment
Built Tenzies, a React dice game, and here's what I learned: - State management patterns - Component architecture best practices - Event handling & conditional rendering Play it: anik-hindu.github.io/tenzies Repo: github.com/anik-hindu/tenzie… #React #LearningInPublic #FrontendDevelopment

8
🚀 HTML Day 10: Input Types Learn Text, Password, Email, Number, Date, Checkbox, Radio, File Upload, Color Picker & Range Slider. 📺 Full tutorial on YouTube. #codeisha #codeishatrainingcentre #HTML #WebDevelopment #Coding #LearnHTML #FrontendDevelopment
17
Performance is no longer just a technical metric. Responsiveness, reliability, and consistency all influence how a product and the company behind it are perceived. #FrontendDevelopment #WebPerformance
Day 1 of React ⚛️ Created my first React app using Vite. Learned that: npm create: creates the project npm install: installs dependencies npm run dev: starts the app Small steps every day compound into big skills. #ReactJS #FrontendDevelopment #BuildInPublic #LearnToCode
9
1
14
278
That's not just a course completion - that's a transformation. New Horizons is where real learning actually happens. Structured. Mentored. Hands-on. Visit our website or send us a DM to start your own story today. #frontenddevelopment #webdevelopment #newhorizons
23
※ Fullscreen lightbox with smooth scale transition & keyboardFriendly prev/next. ※ Lazy loading across the entire grid for fast initial paint. ※ Hover state overlays visible only when you engage, never when you don't. #UIDesign #FrontendDevelopment
1
43
Day 3 of my HTML journey! Learned how to create links and add images to web pages. Seeing my pages become more interactive is motivating me to keep going. 🚀 #HTML #Coding #WebDev #100DaysOfCode #CodeNewbie #FrontendDevelopment #Programming
1
1
23