Blog

Single Scroll Slide Change

User $mainparent[0].addEventListener('wheel', function (e) { if (!isVisible) return; const delta = e.deltaY; if (delta > 0) { changeSlide('down'); } else if (delta < 0) { changeSlide('up'); } e.preventDefault(); }, { passive: false }); make above on single scroll it will change slide Assistant To ensure the slide changes **on every single scroll**, we need to […]

Wheel scroll slider fix

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; let isVisible = false; // Flag from intersection observer const updateSlider = ($item) => { const newBg = $item.data('bg'); $overlayslider.css('background-image', `url(${newBg})`); $item.find('.content, .description').addClass('active'); $item.siblings().find('.content, .description').removeClass('active'); }; let lastDirection = null; let […]

Oppo A17 Unlock Methods

User Oppo 17 lock password forget how to unlock Assistant If you've forgotten the lock password on your Oppo A17, there are several methods you can try to regain access to your device: — ### 🔓 Method 1: Use Dr.Fone – Screen Unlock (No Data Loss) Dr.Fone is a third-party tool that can remove screen […]

Slider Navigation Boundaries

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; // For tracking the selected item for keyboard navigation or scroll let xPos = 0; // Initialize xPos let yPos = 0; // Initialize yPos // Function to update background and […]

Scroll Nav Limit Fix

User if ($('.overlay-slider-grid').length) { const $overlaySliderGrid = $('.overlay-slider-grid'); const $overlayslider = $('.overlay-slider'); const $mainparent = $overlaySliderGrid.find('.content-overlayslider'); const $hoverItems = $mainparent.find('.hover-item'); let currentIndex = 0; // For tracking the selected item for keyboard navigation or scroll let xPos = 0; // Initialize xPos let yPos = 0; // Initialize yPos // Function to update background and […]

Clone MySQL Table via SSH

User clone database table ssh Assistant To clone (duplicate) a database table via SSH, follow these steps: — ## Step-by-Step Guide ### 1. SSH into your server ssh user@your-server-address ### 2. Access MySQL command-line: mysql -u your_mysql_user -p Enter your MySQL password when prompted. ### 3. Select your database: USE your_database_name; ### 4. Clone your […]

Archive Data Deletion Process

User Archive data before 1 january 2022 will remove following no of records from respected tables wp_posts- 170196 wp_postmeta- 148857325 I've moved the above archive records in respective archive tables Now I'll delete those records from main table correct above Assistant Here's a more polished and professional version of your message: — The archived data […]

Prioritize Through Thoughtfulness

User We must think before prioritize any thing many times Make above phrase more attractive Assistant Sure! Here's a more polished and attractive version of your phrase: **"Before setting priorities, we must take the time to think deeply and choose wisely."** Or if you want a shorter, punchier version: **"Think deeply before you prioritize — […]

Integrate Vuetify Plugin

User create src/plugins/vuetify.js and integrate in existing website Assistant To integrate Vuetify into your existing Vue 3 project by creating a `src/plugins/vuetify.js`, follow these steps: — ### ✅ 1. **Install Vuetify and dependencies** If not already installed: yarn add vuetify@next yarn add sass sass-loader@^13.0.0 -D — ### ✅ 2. **Create the plugin file** **`src/plugins/vuetify.js`**: // […]

Favicon for Openeratech

User Create image of favicon for website Openeratech- OT Assistant { "prompt": "A modern, professional website favicon logo for 'Openeratech' with the initials 'OT'. The design should be minimalist, tech-inspired, and fit well as a square icon. Use bold, clean typography with a sleek, dark background and high-contrast lettering. The logo should convey innovation and […]