Accès réservé...
Log Pwd
Pour s'inscrire ?

« Aout 2023 »

  • Lu | Ma | Me | Je | Ve | Sa | Di |


Webriche: les veilleurs ne dorment jamais...

Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).

La veille     Haut de page     Lendemain


Vendredi 18 Aout 2023 (128)

1: Week 11 of Coding: Training Modules Screen

https://donia-librehealth-gsoc-23.hashnode.dev/week-11-of-coding-training-modules-screen

Hashnode - Flutter (Flutter)

Introduction Welcome to another exciting update on my journey as part of the Google Summer of Code (GSoC) program. In this progress report, I am thrilled to share the remarkable strides I've made in enhancing the Mobile Helping Babies Survive (mHBS) ...


2: FINAL FANTASY ZET && TIC

https://blog.lesieur.name/final-fantasy-zet-et-tic/

Quelques #id et beaucoup de .class (Javascript)

Je vais créer une série de billets où je souhaite mélanger trois de mes passions : FINAL FANTASY, la Zététique et les Technologies de l'Information et de la Communication : on y parlera d'IA (Intelligence Artificiel) avec notamment de l'OCR (Optical Character Recognition) permettant de reconnaitre des images, des plateformes comme DeepL fournissant des traductions ou encore de Ch [...]


3: Turbocharge Your React App: useMemo Hook for Lightning-Fast Performance '

https://amandevblog.hashnode.dev/turbocharge-your-react-app-usememo-hook-for-lightning-fast-performance

Hashnode - javascript (Javascript)

In order to make react app fast, let's first understand this amazing phenomenon... Memoization It is an optimization technique, in which any function is invoked with some set of arguments, its result is cached and when it is invoked again with the sa...


4: Python for Beginners Part-2

https://vineetsnegi.hashnode.dev/python-for-beginners-part-2

Hashnode - python (python)

In my previous blog, you learned some basics about Python. So now let's cover some more important topics. 1) Working With List Lists are used to store multiple items in a single variable. Lists are one of 4 built-in data types in Python used to stor...


5: Microsoft Special Event on September 21, Possibly for New Surface Devices

https://www.webpronews.com/microsoft-special-event-on-september-21-possibly-for-new-surface-devices/

WebProNews SEO (Développement)

WebProNews Microsoft Special Event on September 21, Possibly for New Surface Devices Microsoft will hold a special event on September 21, 2023, with new Surface devices the likely outcome. Microsoft Special Event on September 21, Possibly for New Surface Devices Staff


6: Mastering React Hooks: Simplifying State and Effects in Your Applications

https://presleytieman.hashnode.dev/mastering-react-hooks-simplifying-state-and-effects-in-your-applications

Hashnode - javascript (Javascript)

The Core Concepts of React Hooks At the heart of React Hooks are two fundamental concepts: state and effects. State represents the data that a component needs to keep track of, while effects handle operations that occur as a result of changes in the ...


7: Weather App using only HTML CSS and JavaScript

https://amanmishra.hashnode.dev/weather-app-using-only-html-css-and-javascript

Hashnode - javascript (Javascript)

Here's how you can create a weather app just by using HTML CSS and Javascript:In the modern digital age, convenience and information are at our fingertips. Weather is no exception ' imagine being able to access real-time weather forecasts right from ...


8: IPG Mediabrands tells clients to temporarily pause Google Performance Max campaigns

https://searchengineland.com/ipg-mediabrands-pause-google-pmax-campaigns-430937

Search engine land (Référencement)

The company reportedly issued a "privacy alert" email in response to claims YouTube ads may have led to the online tracking of children. The post IPG Mediabrands tells clients to temporarily pause Google Performance Max campaigns appeared first on Search Engine Land.


9: Closures: Your Pathway to JavaScript Mastery

https://snehilchhabria.hashnode.dev/closures-your-pathway-to-javascript-mastery

Hashnode - javascript (Javascript)

What are Closures' Closures are a fascinating and powerful concept in JavaScript that allow functions to remember and access their lexical (or surrounding) environment even after they have finished executing. In simpler terms, a closure is formed wh...


10 / 128

10: DeepDive Node.js: Asynchronous Non-Blocking I/O

https://pau1tuck.hashnode.dev/deepdive-nodejs-asynchronous-non-blocking-io

Hashnode - javascript (Javascript)

Asynchronous non-blocking I/O is a defining characteristic of Node.js. It enables it to handle numerous operations simultaneously without compromising performance. This article provides deeper insight into the concept and illustrates how this specifi...


11: Exploring Component Lifecycle Methods in React

https://the2minengineer.hashnode.dev/exploring-component-lifecycle-methods-in-react

Hashnode - javascript (Javascript)

In React Development, React components operate in distinct phases, guided by unique functions known as Component Lifecycle Methods. Introduction to Component Lifecycle Methods What are Component Lifecycle Methods' Component Lifecycle Methods are spe...


12: Mastering Control Flow: Conditionals and Loops in JavaScript JS004

https://bibhas.hashnode.dev/javascript-loops-and-conditionals-explained

Hashnode - javascript (Javascript)

Control flow is the heartbeat of programming, enabling you to create dynamic and responsive applications by making decisions and repeating actions. In JavaScript, a versatile and widely-used programming language, understanding conditionals and loop i...


13: Integrate with Lambda & API Gateway by using 'boto3' Python Library!

https://vaibhav08.hashnode.dev/integrate-with-lambda-api-gateway-by-using-boto3-python-library

Hashnode - python (python)

Certainly! Integrating AWS Lambda with API Gateway using boto3 involves creating an API Gateway REST API, creating a Lambda function, and then setting up the integration between them. Let's break down the process step by step: Step 1: Import the boto...


14: Writing GitHub Actions in Python

https://imsadra.me/writing-github-actions-in-python

Hashnode - python (python)

GitHub offers the maintainers and developers, three ways of developing and maintaining Custom GitHub Actions. Docker-based Actions Javascript Actions Composite Actions As you can see, GitHub's runners officially support shell-based and Javascrip...


15: How does Nodejs enable developers to build web applications outside of the browser'

https://ashcode98.com/how-does-nodejs-enable-developers-to-build-web-applications-outside-of-the-browser

Hashnode - javascript (Javascript)

Nodejs is not a programming language, but it allows developers to use Javascript which is a programming language. Nodejs is a Javascript Runtime Environment. Nodejs allows you to run JavaScript code on the server side. Nodejs enables you to build ...


16: From Zero to Bundled: Harnessing the Magic of Parcel.js

https://snegicodes.hashnode.dev/parcel-js

Hashnode - javascript (Javascript)

In the ever-evolving landscape of web development, tools that streamline the development process and enhance productivity are invaluable. One such tool that has gained significant attention in recent years is Parcel JS. In this article, we will explo...


17: Design Patterns: Module Design Pattern in JavaScript

https://blog.nandan.dev/design-patterns-module-design-pattern-in-javascript

Hashnode - javascript (Javascript)

Module Design Pattern is a way to encapsulate and organize code in a self-containing module that can expose certain functionalities while keeping the rest of the code private. This helps prevent variable and function name clashes, improves code maint...


18: Disable Type Checking for a File/Line in TypeScript

https://stackabuse.com/disable-type-checking-for-a-file-line-in-typescript/

Stack Abuse (Javascript)

Introduction TypeScript, a statically typed superset of JavaScript, offers features to ensure type safety in your code. However, there may be times where you want to disable this type checking. This Byte will guide you through the process of managing type checking in TypeScript, particularly disabling type checking in TypeScript


20 / 128

20: AWS Is Positioning Itself As the DIY AI Provider

https://www.webpronews.com/aws-is-positioning-itself-as-the-diy-ai-provider/

WebProNews SEO (Développement)

WebProNews AWS Is Positioning Itself As the DIY AI Provider AWS is taking a novel approach to the AI revolution, focusing on providing the tools for companies to create and use their own AI models. AWS Is Positioning Itself As the DIY AI Provider Matt Milano


21: Arthur dévoile Bench, un évaluateur de modèles d'IA open source

https://www.lemondeinformatique.fr/actualites/lire-arthur-devoile-bench-un-evaluateur-de-modeles-d-ia-open-source-91312.html

Le monde informatique (Informatique / Internet)

Il s'appelle Bench, tout simplement. Un raccourci de benchmarking ou analyse comparative en français et n'est rien de plus que cela. (...)


22: How to draw FOUNDABOUT

https://feeds.feedblitz.com/~/783684377/0/tanglepatterns~How-to-draw-FOUNDABOUT.html

TanglePatterns (Zentangle)

Video and links to online instructions for drawing the Zentangle®-original tangle: Foundabout. Video features another fanciful imaginary botanical specimen. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


23: Learning Unity

https://sarahsotomayor.hashnode.dev/learning-unity

Hashnode - Unity (unity)

First of all, how did I get here' September 2022 - 7th graduation anniversary (BS in Healthcare Administration) and 8th year working in the healthcare industry desperately wanting to transition to the field I've been wanting to work in since I was in...


24: Amazon Sponsored Product ads will now appear on Pinterest, Buzzfeed, and more

https://searchengineland.com/amazon-sponsored-product-ads-pinterest-430907

Search engine land (Référencement)

Products must meet certain criteria to be eligible. The post Amazon Sponsored Product ads will now appear on Pinterest, Buzzfeed, and more appeared first on Search Engine Land.


25: Angular: Building a To-Do Project with Essential Basics

https://filiptrivan.com/angular-building-a-to-do-project-with-essential-basics

Hashnode - javascript (Javascript)

Initializing and Integrating Tailwind CSS with Your Angular Application Introduction Tailwind CSS, known for its utility-first approach, offers a rapid and efficient way to style your applications. In this guide, we'll walk you through the process of...


26: JO Paris : voici combien vous pouvez gagner en louant sur AirBnB

https://www.lebigdata.fr/jo-paris-location-argent-airbnb

Le Big Data (dataviz)

Vous êtes propriétaire d'un logement à Paris ou en Île-de-France ' Découvrez la somme folle que vous pouvez empocher en … Cet article JO Paris : voici combien vous pouvez gagner en louant sur AirBnB a été publié sur LEBIGDATA.FR.


27: Qu'est-ce que WeChat, la "super-app" chinoise dont Elon Musk s'inspire pour façonner X '

https://www.usine-digitale.fr/article/qu-est-ce-que-wechat-la-super-app-chinoise-dont-elon-musk-s-inspire-pour-faconner-x.N2161762

L'usine-digitale (Informatique)

Application à tout faire par excellence, WeChat inspire Elon Musk dans sa stratégie de refonte du réseau social Twitter, désormais appelé X. Elle est massivement utilisée en Chine, où son développeur Tencent a lancé une myriade de fonctionnalités en ligne qui la rendent incontournable.


28: Vaste campagne de phishing pour siphonner les identifiants Zimbra

https://www.lemondeinformatique.fr/actualites/lire-vaste-campagne-de-phishing-pour-siphonner-les-identifiants-zimbra-91311.html

Le monde informatique (Informatique / Internet)

Les campagnes de phishing ont beau se multiplier comme des petits pains, ce n'est pas une raison pour baisser la garde. C'est en particulier le cas pour (...)


29: Flutter 3.13 améliore le moteur de rendu sur iOS

https://www.lemondeinformatique.fr/actualites/lire-flutter-313-ameliore-le-moteur-de-rendu-sur-ios-91310.html

Le monde informatique (Informatique / Internet)

Flutter, le framework open source de Google pour le développement d'interfaces utilisateur multiplateformes, apporte des graphismes plus rapides (...)


30 / 128

30: Bullmq - Queues and Workers

https://aashman.hashnode.dev/bullmq-queues-and-workers

Hashnode - javascript (Javascript)

What is bullmq' Bullmq is like a smart helper that ensures your app runs smoothly by managing all the time-consuming tasks without getting in your way. It's a node js library useful for making micro-service architecture. It's a queue system built on ...


31: Resolving "ModuleNotFoundError: No module named encodings" in Python

https://stackabuse.com/resolving-modulenotfounderror-no-module-named-encodings-in-python/

Stack Abuse (Javascript)

Introduction Python is a powerful and versatile programming language, but sometimes you may encounter errors that seem perplexing. One such error is the "ModuleNotFoundError: No module named encodings". This error can occur due to various reasons, and in this Byte, we will explore how to resolve it. Why did I


32: Building a React Dev Environment: Node.js & Webpack Explained

https://abhaysinghr.hashnode.dev/building-a-react-dev-environment-nodejs-webpack-explained

Hashnode - javascript (Javascript)

Setting Up a React Development Environment: Node.js & Webpack Unveiled Hello there, budding JavaScript developers! ' If you've ever dreamed of building rich and dynamic user interfaces, you've probably heard of React. It's no secret that React is on...


33: Autoscraper: Automate Web Scraping in Python

https://mathdatasimplified.com/2023/08/18/autoscraper/

Math Data Simplified (data)

If you want to automatically scrape a website in a few lines of Python code, try autoscraper. With autoscraper, you can extract elements with certain patterns by simply providing the text with that pattern. For a more precise selection of elements to extract, use Beautiful Soup. The post Autoscraper: Automate Web Scraping in Python appeared first on Data Science Simplified.


34: LinkedIn pris d'assaut par les hackers : protégez vite votre compte !

https://www.lebigdata.fr/linkedin-attaque-hackers

Le Big Data (dataviz)

LinkedIn est actuellement en proie à des attaques de hackers qui bloquent l'accès des abonnés à leur compte. Nous faisons … Cet article LinkedIn pris d’assaut par les hackers : protégez vite votre compte ! a été publié sur LEBIGDATA.FR.


35: Map, Filter & Reduce in Javascript

https://devvarun.hashnode.dev/map-filter-reduce-in-javascript

Hashnode - javascript (Javascript)

Map, Filter & Reduce are one of the most commonly used methods while using Javascript. Be it React, Node or any other Javascript-based framework, we need to use these methods. Love me or hate me but you can't ignore me kinda situation ' So let's get...


36: Exploring the Enhanced Enum Experience in Kotlin 1.9.0

https://mobileinsights.dev/exploring-the-enhanced-enum-experience-in-kotlin-190

Hashnode - Kotlin (Mobiles)

In the ever-evolving landscape of programming languages, Kotlin continues to shine as a versatile and developer-friendly choice. With each new release, Kotlin introduces enhancements that simplify code, boost performance, and enrich the developer exp...


37: Best SaaS Summer Deals

https://www.noupe.com/business-online/best-saas-summer-deals.html

Noupe (conception)

Summer has come around in full swing with perfect weather, new opportunities and positive energy – and the best thing about it' All the deals. If you just got back from your summer vacation and are now itching to get things done, we've got your back. Take a look below at the best SaaS companies... The post Best SaaS Summer Deals appeared first on noupe.


38: How to optimize for search intent: 19 practical tips

https://searchengineland.com/optimize-search-intent-tips-430857

Search engine land (Référencement)

From classifying user intent to analyzing SERPs, learn practical steps to align your content with what searchers are looking for. The post How to optimize for search intent: 19 practical tips appeared first on Search Engine Land.


39: Data Types and Data Structures

https://ajaygite.hashnode.dev/data-types-and-data-structures

Hashnode - python (python)

Data Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, data types are actu...


40 / 128

40: DJANGO: The Blueprint for Deadline-Driven Perfectionists

https://talkcoding.dev/django-the-blueprint-for-deadline-driven-perfectionists

Hashnode - python (python)

Amidst the multitude of programming languages, there's one that has held my fascination for quite a while: Python. I recall my initial encounter with Python, and my immediate thought was, "Why would anyone name a programming language after a snake un...


41: Un rendez-vous pour essayer le mode VR Resident Evil 4 Remake

https://www.realite-virtuelle.com/capcom-tgs-essai-mode-vr-resident-evil-4-remake/

realite-virtuelle.com (Réalité Virtuelle)

Capcom annonce que les participants au TGS pourront découvrir en avant-première le mode VR du […] Cet article Un rendez-vous pour essayer le mode VR Resident Evil 4 Remake a été publié sur REALITE-VIRTUELLE.COM.


42: Using boto3 create s3 bucket and describe EC2 instances

https://vaibhav08.hashnode.dev/using-boto3-create-s3-bucket-and-describe-ec2-instances

Hashnode - python (python)

Let's break down the code step by step to understand how to use boto3 to create an S3 bucket and describe EC2 instances. Step 1: Import the boto3 Library import boto3 In this step, we import the boto3 library, which is the AWS SDK for Python. It pro...


43: Basic React Coding Interview Question: Toggle and Delete List Items

https://niteshs.hashnode.dev/basic-react-coding-interview-question-toggle-and-delete-list-items

Hashnode - javascript (Javascript)

In this blog post, we'll explore a basic coding interview question that tests your understanding of React components and state management. We'll break down the question step by step and provide a simple solution in easy-to-understand language. The Qu...


44: La surcharge de travail liée à l'organisation hybride pousse à la démission

https://www.lemondeinformatique.fr/actualites/lire-la-surcharge-de-travail-liee-a-l-organisation-hybride-pousse-a-la-demission-91309.html

Le monde informatique (Informatique / Internet)

Confrontés à des conditions de travail défavorables, un quart des professionnels IT songerait à quitter leur emploi actuel (...)


45: Bruxelles ouvre une enquête sur le rachat d'Autotalks par Qualcomm

https://www.usine-digitale.fr/article/bruxelles-ouvre-une-enquete-sur-le-rachat-d-autotalks-par-qualcomm.N2161707

L'usine-digitale (Informatique)

La Commission européenne redoute que cette opération ne réduise la concurrence sur le marché des puces V2X permettant aux véhicules de communiquer entre eux.


46: Generating Random Hex Colors in Python

https://stackabuse.com/generating-random-hex-colors-in-python/

Stack Abuse (Javascript)

Introduction Let's say you're building a visualization tool and need to generate a few colors - how would you do that' Or maybe you have a base color and need to generate one that's similar. These are just a few use-cases in which you'd need to figure out how to


47: Firewall Ultra nous fait une surprise avant sa sortie !

https://www.realite-virtuelle.com/jeu-firewall-ultra-mode-pve/

realite-virtuelle.com (Réalité Virtuelle)

Firewall Ultra, le fameux jeu de tir exclusif au PSVR arrivera la semaine prochaine. Et […] Cet article Firewall Ultra nous fait une surprise avant sa sortie ! a été publié sur REALITE-VIRTUELLE.COM.


48: Build custom scrolling modals in React Native with Modalize

http://blog.logrocket.com/build-custom-scrolling-modals-react-native-modalize/

Log Rocket blog (Web 2)

Modals are an essential component of mobile app development. Learn how to build a custom scrolling modal with react-native-modalize. The post Build custom scrolling modals in React Native with Modalize appeared first on LogRocket Blog.


49: A guide to growth hacking

http://blog.logrocket.com/product-management/growth-hacking-definition-guide/

Log Rocket blog (Web 2)

With growth hacking, you focus on hypothesizing, prioritizing, testing, analyzing, and scaling growth strategies. The post A guide to growth hacking appeared first on LogRocket Blog.


50 / 128

50: Beyond search volume: Future-proofing keyword research for SEO

https://searchengineland.com/beyond-search-volume-future-proofing-keyword-research-seo-430853

Search engine land (Référencement)

Evolve your keyword research strategy for modern SEO. Explore the shift from search volume to quality, context, and user intent. The post Beyond search volume: Future-proofing keyword research for SEO appeared first on Search Engine Land.


51: Strings In Java

https://bindu.hashnode.dev/strings-in-java

Hashnode - javascript (Javascript)

In Java, a string is a sequence of characters that represents text. The String class in Java is used to create and manipulate strings. Strings are commonly used for various purposes such as storing user input, displaying messages, working with file p...


52: TechMarket Checkout program using Python:

https://architsehgal.dev/techmarket-checkout-program-using-python

Hashnode - python (python)

Define Categories and Products: Start by defining the categories dictionary, which holds the different product categories (Laptops, Smartphones, Accessories). Each category contains a list of products represented as dictionaries, with IDs, names, a...


53: Generating Random Hexadecimal Strings and Colors in Python

https://stackabuse.com/generating-random-hexadecimal-strings-in-python/

Stack Abuse (Javascript)

Introduction Hexadecimal strings and colors are used quite frequently in the world of programming. Whether you're generating a unique identifier or picking a random color for a UI element, being able to generate random hexadecimal strings and colors is a nice tool to have in your arsenal. In this Byte,


54: Getting stuck with Pandas Python library'

https://iqra18.hashnode.dev/getting-stuck-with-pandas-python-library

Hashnode - python (python)

If you are a beginner in data science or data analysis, you might have come across the Pandas Python library. Pandas is easy to use for data analysis. It offers the incentive to work with different kinds of data. Pandas provides a variety of tools to...


55: ChatGPT est une IA gauchiste : cette étude scientifique le prouve définitivement

https://www.lebigdata.fr/chatgpt-ia-gauchiste

Le Big Data (dataviz)

C'est la science qui le dit : ChatGPT est « systématiquement biaisé à gauche ». Découvrez la cause de cette … Cet article ChatGPT est une IA gauchiste : cette étude scientifique le prouve définitivement a été publié sur LEBIGDATA.FR.


56: How To Write a UX Case Study That Wins More Work

https://www.webdesignerdepot.com/how-to-write-a-ux-case-study-that-wins-more-work/

Webdesigner depot (Design)

Crafting a compelling UX (User Experience) case study is an art in and of itself. It's a process that demands clarity, story-telling, and an honest appraisal of your work.


57: Google stops testing links in Search Generative Experience snapshot answers

https://searchengineland.com/google-stops-testing-links-in-search-generative-experience-snapshot-answers-430892

Search engine land (Référencement)

This test began earlier this month and it seems Google has now paused showing links in these AI-generated answer results. The post Google stops testing links in Search Generative Experience snapshot answers appeared first on Search Engine Land.


58: Microsoft interrompt la production de sa caméra Azure Kinect

https://www.usine-digitale.fr/article/microsoft-interrompt-la-production-de-sa-camera-azure-kinect.N2161692

L'usine-digitale (Informatique)

C'est la deuxième mort pour la caméra, qui avait connu un petit succès commercial lors de son lancement en 2010.


59: Flutter top packages and plugins to increase app security

https://panuj330.hashnode.dev/flutter-top-packages-and-plugins-to-increase-app-security

Hashnode - Flutter (Flutter)

When it comes to increasing app security in Flutter, there are several packages and plugins available that can help you implement various security measures. Here are some popular ones: secure_application: For hiding visibility secure_application | Fl...


60 / 128

60: Boostez votre visibilité ! Intégrez maintenant vos réseaux sociaux sur Google Business Profile

https://www.abondance.com/20230818-127749-integrez-reseaux-sociaux-sur-google-business-profile.html

Abondance (Référencement)

Google permet désormais aux entreprises d'ajouter des liens vers leurs réseaux sociaux à leurs profils Google Business. L'objectif : aider les entreprises à améliorer leur visibilité sur les produits Google. Ce qu'il faut retenir :  Nouvelle fonctionnalité Google Business Profiles Les entreprises peuvent désormais ajouter leurs réseaux sociaux directement dans leur Google Business Pr [...]


61: Mastering Background Processing in Android with WorkManager : A Guide to Efficient Background Processing

https://manoj-pedvi.hashnode.dev/mastering-background-processing-in-android-with-workmanager-a-guide-to-efficient-background-processing

Hashnode - Kotlin (Mobiles)

Introduction In the world of mobile app development, performing background tasks efficiently is crucial for providing a smooth user experience. Android provides various APIs for background processing, but the recommended solution for persistent work ...


62: How your approach to content needs to change: People, process and technology

https://searchengineland.com/content-approach-change-people-process-technology-430860

Search engine land (Référencement)

The dynamics of content optimization in the age of AI and evolving user preferences, and how to balance AI assistance with human creativity. The post How your approach to content needs to change: People, process and technology appeared first on Search Engine Land.


63: 'Title: Unveiling the Twin Titans of Code: A Tale of JavaScript and Python

https://deeplearn.hashnode.dev/title-unveiling-the-twin-titans-of-code-a-tale-of-javascript-and-python

Hashnode - javascript (Javascript)

In the vast cosmos of programming languages, two stars shine the brightest: JavaScript and Python. Imagine them as twins separated at birth by syntax, yet united by the magic they bring to the world of coding. Today, let's embark on a journey to unco...


64: Les Container Queries en CSS

https://www.alsacreations.com/article/lire/1915-Les-Container-Queries-en-CSS.html

Alsacreations (Accessibilité / CSS)

CSS Container Queries (ou "requêtes de conteneur" ') permettent d'appliquer des styles à un élément en fonction des propriétés de son conteneur, généralement sa taille. Il s'agit d'un mécanisme complémentaire aux historiques Media Queries qui, eux, détectent les caractéristiques de l'ensemble de la fenêtre ou de l'écran du périphérique. Usage et intérêt Les Media Queries rep [...]


65: Collective 778

https://tympanus.net/codrops/collective/collective-778/

Codrops (Internet / Design)

Three.js 3D Bike website * WebGL Image Processing * Transhumans * Optical Toys


66: Deploying App Stack to Firecracker MicroVM Infra

https://techblog.geekyants.com/deploying-app-stack-to-firecracker-microvm-infra

Geek y Ants ()

Picture this: an innovative way to deploy your app stack that combines the best of both worlds the security of traditional VMs and the speed of container infrastructure. Were diving headfirst into the realm of Firecracker MicroVMs, and believe me, its a game-changer you wont want to miss. Rethinking Deployment: A Tale of Tradition and Transformation In the wild world of tech deployment, weve seen [...]


67: Petit poucet de Watson, Elemental Cognition lève 60 M$

https://www.lemondeinformatique.fr/actualites/lire-petit-poucet-de-watson-elemental-cognition-leve-60-m%24-91308.html

Le monde informatique (Informatique / Internet)

La start-up Elemental Cognition vient d'annoncer une levée de près de 60 M$. Si l'on ne connaît pas les noms des investisseurs (...)


68: Setting Up a HomeLab: From Bare Metal to a Fully Functional Server

https://techblog.geekyants.com/setting-up-a-homelab-from-bare-metal-to-a-fully-functional-server

Geek y Ants ()

Srinivas Gowda, Senior SE at Preqin India, discusses building a server from scratch to a fully functional one that empowers you to manage your digital universe. Have you ever wondered what it takes to create your very own personal server right in the comfort of your own home' Welcome to the exciting world of HomeLab setup, where you transform a simple piece of hardware into a powerhouse server tha [...]


69: Les serveurs Gitlab vulnérables au cryptojacking et proxyjacking

https://www.lemondeinformatique.fr/actualites/lire-les-serveurs-gitlab-vulnerables-au-cryptojacking-et-proxyjacking-91307.html

Le monde informatique (Informatique / Internet)

Des chercheurs de Sysdig mettent en garde contre une campagne d'attaque en cours contre des serveurs GitLab vulnérables entraînant le déploiement (...)


70 / 128

70: Visual breakdowns of iconic hip-hop samples

https://flowingdata.com/2023/08/18/visual-breakdowns-of-iconic-hip-hop-samples/

Flowing data (dataviz)

Hip-hop music producers often sample from previous works. They remake, restructure, and repurpose…Tags: hip-hop, music, sampling, Tracklib


71: Using AI chatbots to 10X your keyword research

https://searchengineland.com/ai-chatbots-10x-keyword-research-429526

Search engine land (Référencement)

Here's why you should bake AI into your day-to-day SEO processes and tips on how to do it from SEO expert Aleyda Solis. The post Using AI chatbots to 10X your keyword research appeared first on Search Engine Land.


72: Using For and While Loops for User Input in Python

https://stackabuse.com/using-for-and-while-loops-for-user-input-in-python/

Stack Abuse (Javascript)

Introduction Python, a high-level, interpreted programming language, is known for its simplicity and readability. One of the many features that make Python so powerful is the for and while loops. These loops provide the ability to execute a block of code repeatedly, which can be particularly useful when dealing with


73: The Power of OpenAPI: Simplifying API Design and Documentation

https://www.integralist.co.uk/posts/open-api/

integralist (Javascript / Jquery / html5)

Introduction In the rapidly evolving landscape of software development, creating robust and user-friendly APIs has become essential. One tool that has gained immense popularity for designing, documenting, and testing APIs is OpenAPI. In this comprehensive guide, we’ll explore why OpenAPI is so important, how to write an OpenAPI document, and the key sections you need to know. Whether you&rsq [...]


74: Instagram : 5 nouveautés qu'il ne fallait pas manquer cet été

https://www.blogdumoderateur.com/instagram-nouveautes-juin-juillet-aout-2023/

Blog du Moderateur ()

Découvrez les dernières nouveautés dévoilées par Instagram durant l'été 2023 : canaux de diffusion, mode silencieux, carrousels musicaux...


75: Meta s'apprête à lancer Code Llama, un modèle d'IA open source capable de générer du code

https://www.usine-digitale.fr/article/meta-s-apprete-a-lancer-code-llama-un-outil-open-source-d-ia-capable-de-generer-du-code.N2161602

L'usine-digitale (Informatique)

Le nouvel outil d'intelligence artificielle générative de Mark Zuckerberg pourrait être déployé dès la semaine prochaine. Complètement open source, celui-ci viendrait concurrencer les leaders de l'IA générative.


76: Le Royaume-Uni lance un fonds d'investissement d'un milliard de livres dans la fintech

https://www.usine-digitale.fr/article/le-royaume-uni-lance-un-fonds-d-investissement-d-un-milliard-de-livres-dans-la-fintech.N2161597

L'usine-digitale (Informatique)

Pour le Royaume-Uni, c'est le moment de soutenir les plus grosses pépites nationales afin de les aider à traverser la période de disette actuelle, et de favoriser leur introduction en bourse ultérieurement sur le territoire.


77: Les ventes de smartphones continuent leur descente aux enfers

https://www.usine-digitale.fr/article/les-ventes-de-smartphones-vont-encore-reculer-cette-annee.N2161592

L'usine-digitale (Informatique)

Selon les prévisions du cabinet Counterpoint Research, le marché des smartphones devrait encore chuter de 6% cette année. La reprise n'est désormais plus espérée, au mieux, qu'au premier trimestre 2024.


78: Des iPhone plus anciens bientôt disponibles en USB-C '

https://www.lemondeinformatique.fr/actualites/lire-des-iphone-plus-anciens-bientot-disponibles-en-usb-c-91306.html

Le monde informatique (Informatique / Internet)

Il y a eu tellement d'éléments de preuve, ces derniers temps, pour soutenir/confirmer de manière définitive le passage imminent (...)


79: MongoDB sécurise les workflows sensibles avec du chiffrement de bout en bout

https://www.lemondeinformatique.fr/actualites/lire-mongodb-securise-les-workflows-sensibles-avec-du-chiffrement-de-bout-en-bout-91294.html

Le monde informatique (Informatique / Internet)

Editeur d'une data platform pour développeurs, MongoDB a annoncé la disponibilité générale de sa technologie de chiffrement (...)


80 / 128

80: Understand callback function in JS

https://singhrohan.hashnode.dev/understand-callback-function-in-js

Hashnode - javascript (Javascript)

What is a function callback' Function callback is known as passing a function as an argument or you can say function as a perimeter It is a way of handling tasks without blocking the main execution thread Tasks that take time to execute for example r...


81: Navigating the JavaScript Maze: Tackling Confusing Concepts

https://bhargav08.hashnode.dev/navigating-the-javascript-maze-tackling-confusing-concepts

Hashnode - javascript (Javascript)

Introduction:- JavaScript is a versatile and widely-used programming language that powers the dynamic and interactive elements of the web. However, like any programming language, it has its fair share of perplexing concepts that can leave even experi...


82: Introduction à la programmation fonctionnelle en JavaScript

https://itnext.io/understanding-the-functional-programming-paradigm-ffbd1474e4e6

Humancoders ()

Une bonne introduction à la programmation fonctionnelle en JavaScript : Immutabilité, Fonctions Pures et Composition de fonctions. Commentaires L'article Introduction à la programmation fonctionnelle en JavaScript a été posté dans la catégorie JavaScript de Human Coders News


83: Make the best of Jupyter Notebooks!

https://srikavya.hashnode.dev/jupyter-notebooks-ide-for-documenting-and-coding

Hashnode - python (python)

https://www.anaconda.com/download Anaconda software helps you create an environment for many different versions of Python and its versions. This is the best you could get to store your Python and data science material. Installing IDE on Windows, Lin...


84: Vendre vos données contre un salaire passif ' C'est ce que vous propose cette startup !

https://www.lebigdata.fr/vendre-donnees-salaire-passif

Le Big Data (dataviz)

Il est désormais possible de vendre ses données contre un salaire passif. Caden ambitionne de révolutionner l'économie de la donnée … Cet article Vendre vos données contre un salaire passif ' C’est ce que vous propose cette startup ! a été publié sur LEBIGDATA.FR.


85: Les levées de fonds de la French Tech ces dernières semaines

https://www.usine-digitale.fr/article/les-levees-de-fonds-de-la-french-tech-ces-dernieres-semaines.N2161547

L'usine-digitale (Informatique)

Les start-up de la French Tech ont levé plus de 5 millions d'euros ces deux dernières semaines, d'après le décompte hebdomadaire d'eCap Partner pour L'Usine Digitale.


86: 0 part de marché pour Bing : un flop pour Bing Chat '

https://www.abondance.com/20230818-127389-0-part-marche-bing.html

Abondance (Référencement)

Le nouveau Bing n'a réussi à prendre aucune part de marché à Google après six mois, malgré le lancement en fanfare de Bing Chat. Sa part de marché reste inchangée aux Etats-Unis et dans le monde. Un coup dur pour Microsoft' Les chiffres de part de marché de Bing Bing Chat a été lancé il […] L'article "0 part de marché pour Bing : un flop pour Bing Chat '" a été publié sur le [...]


87: A Comprehensive Guide For Creating Silky Smooth Animations Using Flutter.

https://yatendrakumar.hashnode.dev/a-comprehensive-guide-for-creating-silky-smooth-animations-using-flutter

Hashnode - Flutter (Flutter)

When it comes to mobile development, the user experience is paramount. One of the most crucial aspects of this experience is the fluidity of animations. Flutter, Google's UI toolkit, has taken the app development world by storm, partly because of its...


88: Kotlin Code Smell 30 - Avoiding Concrete Class Subclassification Pitfalls

https://yonatankarp.com/kotlin-code-smell-30-avoiding-concrete-class-subclassification-pitfalls

Hashnode - Kotlin (Mobiles)

Problem Bad Models Coupling Liskov Substitution Violation Method overriding Mapper fault Solution Subclasses should be specializations. Refactor Hierarchies. Favor Composition. Leaf classes should be concrete. Not-leaf classes should be abstract. ...


89: Kotlin Code Smell 30 - Concrete Classes Subclassified

https://yonatankarp.com/kotlin-code-smell-30-concrete-classes-subclassified

Hashnode - Kotlin (Mobiles)

Problem Bad Models Coupling Liskov Substitution Violation Method overriding Mapper fault Solution Subclasses should be specializations. Refactor Hierarchies. Favor Composition. Leaf classes should be concrete. Not-leaf classes should be abstract. ...


90 / 128

90: Vidéo : Bug des distributeurs bancaires, pluie de billets pour tout le monde !

https://www.lebigdata.fr/bug-distributeurs-bancaires

Le Big Data (dataviz)

C'était la frénésie mardi en Irlande à cause d'un bug des distributeurs bancaires. Les usagers en ont beaucoup profité, mais … Cet article Vidéo : Bug des distributeurs bancaires, pluie de billets pour tout le monde ! a été publié sur LEBIGDATA.FR.


91: Pourquoi Wikipédia est si bien référencé sur Google '

https://www.blogdumoderateur.com/pourquoi-wikipedia-bien-reference-google/

Blog du Moderateur ()

Grâce à une combinaison de bonnes pratiques, Wikipédia est devenu un des sites les plus performants en termes de SEO.


92: Comment la DSI est devenue une ligne métier pour Eastman

https://www.lemondeinformatique.fr/actualites/lire-comment-la-dsi-est-devenue-une-ligne-metier-pour-eastman-91304.html

Le monde informatique (Informatique / Internet)

Lorsque Aldo Noseda est devenu DSI du fabricant de produits chimiques Eastman il y a cinq ans, il a immédiatement commencé à travailler, (...)


93: L'IA se répand comme une trainée de poudre dans les entreprises

https://www.lemondeinformatique.fr/actualites/lire-l-ia-se-repand-comme-une-trainee-de-poudre-dans-les-entreprises-91303.html

Le monde informatique (Informatique / Internet)

Pour le Gartner, dès que les entreprises ont déployé un premier cas d'usage de l'IA, elles ont tendance à systématiquement (...)


94: Réaction à un incident de cybersécurité : où en est-on

https://www.lemondeinformatique.fr/actualites/lire-reaction-a-un-incident-de-cybersecurite-ou-en-est-on-91256.html

Le monde informatique (Informatique / Internet)

Pour faire face aux attaques informatiques, le degré de réactivité des équipes est essentiel et la formation des employés (...)


95: 4 clés pour réduire la facture du SaaS

https://www.lemondeinformatique.fr/actualites/lire-4-cles-pour-reduire-la-facture-du-saas-91292.html

Le monde informatique (Informatique / Internet)

Le SaaS a connu une croissance explosive au cours des dernières années, car les fournisseurs, les leaders d'opinion et les responsables informatiques (...)


96: Navigating the Wonders of NumPy: Your Ticket to Effortless Numerical Computing

https://tanishqcoding.hashnode.dev/navigating-the-wonders-of-numpy-your-ticket-to-effortless-numerical-computing

Hashnode - python (python)

Introduction In the realm of Python sorcery, where machine learning reigns supreme, there exists a formidable enchantment known as NumPy. This magical library, revered by the data wizards, is the very heart of numerical computation for Python. So, le...


97: Unraveling NumPy: The Marvels of Numeric Mastery in Python

https://tanishqcoding.hashnode.dev/unraveling-numpy-the-marvels-of-numeric-mastery-in-python

Hashnode - python (python)

Introduction In the vast landscape of Python's programming possibilities, there's a hidden gem that shines brilliantly for all things numeric ' NumPy. Think of it as the ultimate toolkit for wielding numbers with finesse and flexibility. In this voya...


98: Variables and Data Types in JavaScript: Understanding variables and data types in JS.

https://mohd-junaid.hashnode.dev/variables-and-data-types-in-javascript-understanding-variables-and-data-types-in-js

Hashnode - javascript (Javascript)

Demystifying Variables and Data Types in JavaScript: Your Guide to Data Mastery Hello, curious minds of the digital realm! Today, we embark on an enlightening quest to unravel the mysteries of variables and data types in JavaScript. Get ready to delv...


99: Mon iPhone se décharge vite : comment vérifier l'état de la batterie

https://www.blogdumoderateur.com/iphone-decharge-vite-verifier-etat-batterie/

Blog du Moderateur ()

Une fonctionnalité permet de jauger l'état de la batterie de votre iPhone et savoir quand la remplacer.


100 / 128

100: La Chine a découvert le coupable de l'attaque sur Wuhan : les Etats-Unis

https://www.lebigdata.fr/wuhan-attaque-etats-unis

Le Big Data (dataviz)

La Chine, spécifiquement la ville de Wuhan, attire une attention considérable suite à un incident de cybersécurité préoccupant lié aux … Cet article La Chine a découvert le coupable de l’attaque sur Wuhan : les Etats-Unis a été publié sur LEBIGDATA.FR.


101: JavaScript - Primitive Data Types - Part 1

https://mahavir.hashnode.dev/javascript-primitive-data-types-part-1

Hashnode - javascript (Javascript)

Introduction Namaste, In this blog post I will discuss the following topics Primitive data types in JavaScript Equality behaviour Complete source code Primitive Data Types In JavaScript A primitive data type is a fundamental type that is used to...


102: Building a Dynamic Shopping Cart with React: A Practical Step-by-Step Guide.

https://abimbola.hashnode.dev/building-a-dynamic-shopping-cart-with-react-a-practical-step-by-step-guide

Hashnode - javascript (Javascript)

One of the main features of practically every website you visit is an online shopping cart. Every company, regardless of size, has things they wish to sell, making the shopping cart one of the most popular and important features for a web developer t...


103: JavaScript - typeof operator

https://mahavir.hashnode.dev/javascript-typeof-operator

Hashnode - javascript (Javascript)

Introduction Namaste, In this blog I will discuss the following topics What is typeof operator' Using typeof operator Complete source code What is typeof Operator' The typeof operator is used for finding out the type of an operand (variable/obje...


104: Comment télécharger une vidéo YouTube

https://www.blogdumoderateur.com/comment-telecharger-video-youtube/

Blog du Moderateur ()

Selon certaines conditions, il est possible de télécharger des vidéos hébergées sur YouTube. Découvrez comment le faire en toute légalité.


105: Comment protéger ses données sensibles stockées sur son ordinateur '

https://www.lebigdata.fr/comment-proteger-ses-donnees-sensibles-stockees-sur-son-ordinateur

Le Big Data (dataviz)

Nous stockons tous des données sensibles sur nos appareils électroniques (ordinateur, smartphone, tablette). Mais nous ne prenons pas toujours les … Cet article Comment protéger ses données sensibles stockées sur son ordinateur ' a été publié sur LEBIGDATA.FR.


106: Getting Started with Javascript: A Beginner's Guide.

https://talentseeker.hashnode.dev/getting-started-with-javascript-a-beginners-guide

Hashnode - javascript (Javascript)

I'm sure you've heard the saying "Learn Javascript before learning React". Well, let's try to understand what Javascript is all about. INTRODUCTION Web development is an exciting and creative field that allows you to build interactive and dynamic web...


107: Top 3 mistakes to avoid when using React

https://yourquorum1.hashnode.dev/top-3-mistakes-to-avoid-when-using-react

Hashnode - javascript (Javascript)

Original Article Published At YourQuorum Respond is a superb JavaScript library for building UIs. Utilizing Respond, you can make delightful applications easily and can involve TinyMCE as your Respond WYSIWYG manager. Nonetheless, similar as whatever...


108: Build a Countdown app with Vue.js using Composition API

https://geekiebarbs.hashnode.dev/build-a-countdown-app-with-vuejs-using-composition-api

Hashnode - vuejs (Javascript)

Recently I started learning Vue.js, and to my luck, it was being taught at the Sailscast community workshop. In the workshop, we were asked to build a countdown watch as a take-home assignment. Recognizing the value of documenting my journey, I decid...


109: String in Python - 1

https://sajjadrahman.hashnode.dev/string-in-python-1

Hashnode - python (python)

In Python, a string is a sequence of characters enclosed within either single ('') or double ("") quotation marks. It's a fundamental data type used to represent textual data. Strings can contain letters, numbers, symbols, and even spaces. // How str...


110 / 128

110: Human-AI Collaboration: Building Synergy Between People and Machines

https://www.noupe.com/business-online/human-ai-collaboration-building-synergy-between-people-and-machines.html

Noupe (conception)

In the ever-evolving landscape of technology, artificial intelligence (AI) has evolved as a transformative force, reshaping industries, economies, and societies. However, rather than replacing human capabilities, AI’s true potential lies in collaboration with humans. The concept of human-AI collaboration represents a powerful paradigm shift, where machines and people work together to achieve [...]


111: Unleash the Power of Dynamic Page Titles and Meta Data with React-Helmet

https://henryagudocs.hashnode.dev/unleash-the-power-of-dynamic-page-titles-and-meta-data-with-react-helmet

Hashnode - javascript (Javascript)

Unleash the Power of Dynamic Page Titles and Meta Data with React-Helmet. Introduction As a React developer, have you ever wondered how you can give different titles to your web pages' I have some exciting news for you: React-helmet is your right cho...


112: Une stratégie SEO réussie : l'exemple de Vroomly

https://www.abondance.com/20230818-126562-une-strategie-seo-reussie-lexemple-de-vroomly.html

Abondance (Référencement)

Il y a quelques jours, Nicolas Audemar de chez Sistrix s'est penché sur une ascension particulièrement remarquée dans le monde du SEO : celle du site Vroomly, un comparatif de garages, qui a enregistré des performances qui ont de quoi faire pâlir bien des professionnels du secteur ! Ce qu'il faut retenir : Une ascension fulgurante […] L'article "Une stratégie SEO réussie : l'exe [...]


113: Introduction of the Journey

https://sajjadrahman.hashnode.dev/introduction-of-the-journey

Hashnode - python (python)

Welcome to my blog, where the worlds of Python programming and MLOps collide! If you're passionate about diving deep into the realms of coding and the intricacies of Machine Learning Operations (MLOps), you've come to the right place. Embark on a jou...


114: Understanding JavaScript Type Coercion and Conversion

https://thejrpranav09.hashnode.dev/understanding-javascript-type-coercion-and-conversion

Hashnode - javascript (Javascript)

Welcome back to our JavaScript series! In this article, we're delving into the world of type coercion and type conversion. '' JavaScript, being a dynamically-typed language, offers flexibility and convenience in many aspects of programming. One of ...


115: Week 9,10 - GSOC 2023

https://rohanbabbar.hashnode.dev/week-9-10-gsoc-2023

Hashnode - python (python)

This blog post briefly describes the progress on the project achieved during the 9th and 10th weeks of GSOC. Work Done Added a decorator called reshaped that will handle additional communication under the hood if the shapes provided by the users are...


116: Late-Initialized Variables and Lazy Initialization in Kotlin

https://emmanuel07.hashnode.dev/late-initialized-variables-and-lazy-initialization-in-kotlin

Hashnode - Kotlin (Mobiles)

Introduction Welcome to one step closer to your success, Today, deep dive into two concepts that might seem confusing at first, but don't worry we will go through the concepts of late-initialized variables and lazy initialization in Kotlin. By the en...


117: What's actually hard about solving leetcode style questions

https://hexesandhacks.com/whats-actually-hard-about-solving-leetcode-style-questions

Hashnode - javascript (Javascript)

Today I was working through the following problem: Given an array of unsorted numbers, find all unique triplets in it that add up to zero. Example 1: Output: [[-3, 1, 2], [-2, 0, 2], [-2, 1, 1], [-1, 0, 1]] Explanation: There are four unique triplets...


118: How to Store Image in MySQL Database using Python

https://computercodingclass.com/how-to-store-image-in-mysql-database-using-python

Hashnode - python (python)

In this program, we used mysql.connector() driver to connect python with mysql server. In mysql, we store image in a table. For this our data type was Blob(Binary Large Object). #python #mysql #database #coding https://youtu.be/mxuoLn58IpU


119: Navigating challenges on my tech journey

https://techstars.hashnode.dev/navigating-challenges-on-my-tech-journey

Hashnode - python (python)

In 2017, following the completion of my secondary education, I stood at a crossroads. As an aspiring degree student, I was determined to pursue either Computer Science or Electrical Electronic Engineering at the university. My fascination with Comput...


120 / 128

120: Flutter day37

https://shreshtxa.hashnode.dev/flutter-day37

Hashnode - Flutter (Flutter)

Today I'll integrate my rasa chatbot into my Flutter app and then make the required changes or even train the bot more if needed. Also, I have a new assignment to complete, I have to build a movie recommendation app by tomorrow. Tried integrating the...


121: NumPy Gotchas and Best Practices: A Cheatsheet for Writing Robust Code

https://ayeshasiddiqha.hashnode.dev/numpy-gotchas-and-best-practices-a-cheatsheet-for-writing-robust-code

Hashnode - python (python)

Introduction: NumPy, the foundation of numerical computing in Python, enables data scientists and engineers to rapidly perform complicated array operations. However, much like any strong tool, there are possible dangers and best practices that may im...


122: Understanding the difference between Map and ForEach method.

https://devlawrence.hashnode.dev/understanding-the-difference-between-map-and-foreach-method

Hashnode - javascript (Javascript)

Introduction Have you ever wondered about the difference between map and forEach when dealing with arrays in JavaScript' If your answer is Yes then Let's take a stroll through these methods! '''' map Method: Transform and Collect Think of the map me...


123: Crack the Code: Reading XML Files the Python Way

https://blog.karuntech.com/crack-the-code-reading-xml-files-the-python-way

Hashnode - python (python)

To read an XML file in Python, you can use the ElementTree module, which is part of the standard library. The ElementTree module allows you to parse XML data easily and navigate through its elements. Here's a step-by-step guide on how to read an XML ...


124: Angular - Introduction to Angular Components

https://filiptrivan.com/angular-introduction-to-angular-components

Hashnode - javascript (Javascript)

Creating Angular components is a fundamental skill that enables you to build modular and reusable parts of your application. Crafting Angular Components: A Step-by-Step Guide Angular components are the building blocks of modern web applications, allo...


125: "Getting Started with JavaScript: A Beginner's Guide"

https://iverdev.com/getting-started-with-javascript-a-beginners-guide

Hashnode - javascript (Javascript)

JavaScript is a versatile and essential programming language that powers interactivity and dynamic content on the web. Whether you're new to programming or looking to expand your skills, learning JavaScript can open up a world of possibilities. In th...


126: How to use headless Chrome in serverless functions with a 50MB limit (blogPost)

https://www.stefanjudis.com/blog/how-to-use-headless-chrome-in-serverless-functions/

Stefan Judis (Développement)

I collect online web development tools on Tiny Helpers, and some parts of the site are automatic tool screenshots. The site is deployed on Vercel, and screenshots are taken by a serverless function endpoint that spins up headless Chrome to take a picture. Here's an exa [...]


127: How to remove all event listeners from a DOM element (snippet)

https://www.stefanjudis.com/snippets/how-to-remove-all-event-listeners-from-a-dom-element/

Stefan Judis (Développement)

Removing event listeners from DOM elements is pretty annoying because you must have the registered event handler function at hand. function handleEvent() { /* ... */ } // add an event listener document.querySelector('button') .addEventListener('click', handleEvent); // to remove an event listener, the event type ('click') // and the function ('handleEvent') have to match // the `addEventList [...]




La veille     Haut de page     Lendemain



Note : Webriche.fr est un agrégateur de flux RSS. C'est à dire un outil automatique qui regroupe l'accès à des informations, dont il n'est ni le rédacteur, ni l'éditeur.
Pour toutes questions, merci de contacter Richard Carlier.

Présentation

Ceci est un site qui explore certains mécanismes du Web 2.0, histoire de jouer avec tout ça...
Oui, une sorte de mashup 2.0 appliqué à la veille informationnelle... Hum, rien de neuf ?

Expérimental, c'est un site collaboratif à usage d'une seule personne. Ou presque.

Richard Carlier

Des mots,
toujours des mots...

Collaboration Partage Pagerank Donnees Echange RSS Standards Web Design CSS Participation Accessibilite Mashup Convergence Standardisation Utilisateurs Web 2.0