Skip to main content

Posts

Showing posts from 2021

Moodle 4.0

Moodle 4.0 Moodle 4.0 is going to be released soon expected in coming within 2 weeks likely. But still development is in progress... Under development, not for production use. Check out below links. find download here  & GitHub repo here . & Fixed issues here .   See changes and improvements... in progress(I'll update here)

Wir sind das Land von 🤶 Weihnachten 🎅

 Wir sind das Land von 🤶 Weihnachten 🎅 ...bleiben Sie dran :)   noch in Bearbeitung, danke an meinen Freund, der mir beim Schreiben geholfen hat Weihnachten ist die schönste Jahreszeit. So sagen wir hier.   Weihnachten beginnt mit dem 1.Advent Ende November oder Anfang Dezember. Es gibt 4 Advents-Sonntage.   Man macht es sich zu Hause gemütlich, lädt Freunde und Familie zum Kaffee und Stollen (Weihnachtsgebäck) ein. Und eigentlich geht man gemeinsam, sobald es dunkel wird, auf den Weihnachtsmarkt Menschen, die an Gott glauben, gehen jeden Sonntag in die Kirche zum Gottesdienst Es macht jede Familie etwas anders.  Direkt Rituale gibt es nicht.  Man hört viel Weihnachtsmusik, packt Plätzchen und trifft sich zu Hause oder auf dem Weihnachtsmarkt.  Geschenke gibt es am 24.12.  Meist isst man gemeinsam Weihnachtsgebäck ☕️ und trinkt Kaffee. Danach kommt der Weihnachtsmann. Kinder müssen dann ein Gedicht aufsagen und danach gibt es das Geschenk. ...

Competitor or Alternative of IDM (Internet Download Manager) 🤔

  Yes you heard right, a perfect competitor and alternative of IDM (Internet Download Manager) that helps you to get links from Torrent download, YouTube videos and many more. I was really fan of IDM (Internet Download Manager). I always use genuine products for my work and productivity but yes free applications as well 😉😄 mostly. But sometimes laziness and saving money a bit helps too. Problem started when I installed the crack version of IDM and it always prompted to buy/register the product. Although it was a valid reason from their side as well. ðŸ˜„😄 I started to search and got a free, powerful, best alternative named   EagleGet for Windows  You can download it from Softinic  or Filehippo   I found it very useful in many ways, some of them are faster downloads it can track links and starts downloading as soon you copy  works like a charm, it doesn't integrate videos after downloading finishes (like you can notice in IDM) I think yo...

Google Photos App's Locked Folder feature to non-Pixel devices.

  Want to lock your sensitive and private pictures? Google Photos app gets Locked Folder feature, those who don't have other android devices. Earlier it was only available for Pixel devices. I'm using stock Android smartphone and today Google updated Google Photos app, introducing new feature to lock your sensitive and private pictures and videos as well. Follow the steps: Update your Google Photos app from Google Play Store. You might have received a update notification recently in app Go to Library  Tap Utilities on the top There's a ORGANIZE YOUR LIBRARY option, under that you can find Locked Folder To access it you need to unlock your phone by Fingerprint or PIN Password                                                        Here you go   Move Items  to Locked Folder       ...

Reasons I like Microsoft Edge over any other Browsers

Following are the points: Latest Version installed  96.0.1054 (In progress, I'll post with detailed views ) Chromium Based open source  Sleeping Tabs Less memory usage Availability of options while selecting words in a webpage  Dev Tools Read Aloud: Different languages available with voice tones Sidebar search so smooth  Balanced Dark mode Inbuilt browser themes Collections: where you can add your links in separate naming space (like Sticky Notes)

New "CSS Overview" tab in Microsoft Edge Dev Tools

  CSS Overview tab in Microsoft Edge Dev Tools & Payload Tab under Network during HTTP API calls

npm update check failed

More Productive @Work, How?

          Want to be More Productive at Work without losing time. Below are the two links you can follow up.              Here's a website THE CHEATSHEET : 1.  Amazing work by  Rico's Cheatsheets Web Technologies like HTML, CSS, Bootstrap Frontend like Reactjs, Vuejs Databases like SQL, knex, PostgreSQL 2. A really appreciable post by Mahesh Patidar on DEV Community . 3. I personally use this Grepper . 4. for JavaScript  JavaScript Info 5. Tailwind CSS 6. Angular Material 7.  React Material 8.  JS Charts 9.  Google Search like a PRO 10.  React Motion 11. Free Tailwind CSS components  12.  web developer 13. syncfusion 14.  CSS color picker 15.  https://reactnavigation.org/ 16.  typescript hotexamples 17.  list-of-javascript-functions 18.  React Router cheatsheet 19. Discover popular threads on web 20.  svgrepo 21.  bootstrap 5 22....

How a Carousel works?

  Page Visibility Level 2 (w3.org) How it works: The carousel is a slideshow for cycling through a series of content, built with CSS 3D transforms and a bit of JavaScript. It works with a series of images, text, or custom markup. It also includes support for previous/next controls and indicators. In browsers where the  Page Visibility API  is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.). The animation effect of this component is dependent on the  prefers-reduced-motion  media query. See the  reduced motion section of our accessibility documentation . Please be aware that nested carousels are not supported, and carousels are generally not compliant with accessibility standards. const videoElement = document .getElementById( "videoElement" ); // Autoplay the video if application is visible if ( document .visibilityState === "visible"...

react-scripts start

 npm start > reactjquery@0.1.0 start F:\my pro\dt\reactjquery > react-scripts start There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally. The react-scripts package provided by Create React App requires a dependency:   "webpack": "4.44.2" Don't try to install it manually: your package manager does it automatically. However, a different version of webpack was detected higher up in the tree:   F:\my pro\dt\reactjquery\node_modules\webpack (version: 5.47.1) Manually installing incompatible versions is known to cause hard-to-debug issues. If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project. That will permanently disable this message but you might encounter other issues. To fix the dependency tree, try following the steps below in the exact order:   1. Delete package-lock.json (not package.json!) and/or yarn.lock in your pro...

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...