Simon

👨‍💻 Full Stack Developer | 🎨 Web Designer | ✍️ Tech Blog Writer | Passionate about crafting immersive digital experiences through code and design. Sharing insights, tips, and tricks through engaging blog posts. Constantly learning and exploring new technologies. Let's connect and innovate together! #webdevelopment #design #technology

How Javascript Libraries Can Keep You Out of Trouble

518 Views -1-jQuery LoadingOverlay Shows a loading overlay on the whole page or over single DOM elements CDN-https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.6/dist/loadingoverlay.min.js Doc – https://gasparesganga.com/labs/jquery-loading-overlay/ 2-fullcalendar Full-sized drag & drop event calendar https://fullcalendar.io https://fullcalendar.io/ Source – https://github.com/fullcalendar/fullcalendar/releases/download/v4.2.0/fullcalendar-4.2.0.zip Doc –https://fullcalendar.io/docs/getting-started 3-leafletjs an open-source JavaScript library for mobile-friendly interactive maps https://leafletjs.com/ <link rel=”stylesheet” href=”https://unpkg.com/leaflet@1.5.1/dist/leaflet.css” integrity=”sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==” crossorigin=””/> <script src=”https://unpkg.com/leaflet@1.5.1/dist/leaflet.js” integrity=”sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og==” crossorigin=””></script>   …

How Laravel Packages saved your time and effort

443 Views -1-fzaninotto/Faker https://github.com/fzaninotto/Faker Faker is a PHP library that generates fake data for you. Whether you need to bootstrap your database, create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service, Faker is for you. Installation composer require fzaninotto/faker   2-PHPMailer/PHPMailer https://github.com/PHPMailer/PHPMailer Many PHP developers …